-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Terrain view. Completed dot view.
- Loading branch information
Showing
13 changed files
with
444 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
body{font-family: Arial, sans-serif;font-size:10px;} | ||
.axis path,.axis line {fill: none;stroke:#b6b6b6;shape-rendering: crispEdges;} | ||
#audioRecordingDots{font-family: Arial, sans-serif;font-size:10px;} | ||
#audioRecordingDots .axis path,#audioRecordingDots .axis line {fill: none;stroke:#b6b6b6;shape-rendering: crispEdges;} | ||
/*.tick line{fill:none;stroke:none;}*/ | ||
.tick text{fill:#999;} | ||
g.journal.active{cursor:pointer;} | ||
text.label{font-size:12px;font-weight:bold;cursor:pointer;} | ||
text.value{font-size:12px;font-weight:bold;} | ||
#audioRecordingDots .tick text{fill:#999;} | ||
#audioRecordingDots g.journal.active{cursor:pointer;} | ||
#audioRecordingDots text.label{font-size:12px;font-weight:bold;cursor:pointer;} | ||
#audioRecordingDots text.value{font-size:12px;font-weight:bold;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<div id="audioRecordingDots" style="height:500px;width:500px;"></div> | ||
<div id="audioRecordingDots"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#audioRecordingTerrain svg { | ||
font-size: 10px; | ||
} | ||
|
||
#audioRecordingTerrain .axis { | ||
shape-rendering: crispEdges; | ||
} | ||
|
||
#audioRecordingTerrain .axis path, #audioRecordingTerrain .axis line { | ||
fill: none; | ||
stroke-width: .5px; | ||
} | ||
|
||
#audioRecordingTerrain .x.axis path { | ||
stroke: #000; | ||
} | ||
|
||
#audioRecordingTerrain .x.axis line { | ||
stroke: #fff; | ||
stroke-opacity: .5; | ||
} | ||
|
||
#audioRecordingTerrain .y.axis line { | ||
stroke: #ddd; | ||
} | ||
|
||
#audioRecordingTerrain path.line { | ||
fill: none; | ||
stroke: #000; | ||
stroke-width: .5px; | ||
} | ||
|
||
#audioRecordingTerrain rect.pane { | ||
cursor: move; | ||
fill: none; | ||
pointer-events: all; | ||
} |
Oops, something went wrong.