-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
568 additions
and
125 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
.spidered-marker { | ||
width: 1px; | ||
height: 1px; | ||
overflow: display; | ||
will-change: transform; | ||
} | ||
|
||
.spidered-marker:hover { cursor: pointer } | ||
|
||
.spidered-marker .icon-div { | ||
position: relative; | ||
z-index: 1; | ||
} | ||
|
||
.spidered-marker .line-div { | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
width: 2px; | ||
background-color: #343434; | ||
opacity: 0.45; | ||
transform-origin: bottom; | ||
z-index: 0; | ||
height: 0; | ||
} | ||
|
||
.spidered-marker:hover .line-div { opacity: 1 } | ||
|
||
/* Animations specific styles */ | ||
|
||
.spidered-marker.animate { | ||
-webkit-transition: margin 0.15s linear; | ||
-moz-transition: margin 0.15s linear; | ||
-ms-transition: margin 0.15s linear; | ||
-o-transition: margin 0.15s linear; | ||
transition: margin 0.15s linear; | ||
} | ||
|
||
.spidered-marker.initial, | ||
.spidered-marker.exit { | ||
margin-left: 0 !important; | ||
margin-top: 0 !important; | ||
height: 0; | ||
} | ||
|
||
.spidered-marker.animate .line-div { | ||
-webkit-transition: all 0.15s linear; | ||
-moz-transition: all 0.15s linear; | ||
-ms-transition: all 0.15s linear; | ||
-o-transition: all 0.15s linear; | ||
transition: all 0.15s linear; | ||
|
||
-webkit-transition-delay: inherit; | ||
-moz-transition-delay: inherit; | ||
-ms-transition-delay: inherit; | ||
-o-transition-delay: inherit; | ||
transition-delay: inherit; | ||
} | ||
|
||
.spidered-marker.animate.initial .line-div, | ||
.spidered-marker.animate.exit .line-div { height: 0 !important } |
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,19 +1,49 @@ | ||
<!DOCTYPE html> | ||
|
||
<html lang='en'> | ||
<head> | ||
<title></title> | ||
<title> | ||
</title> | ||
<meta charset='utf-8'> | ||
<meta name='viewport' content='width=device-width, initial-scale=1'> | ||
<link href='https://api.mapbox.com/mapbox-assembly/mbx/v0.18.0/assembly.min.css' rel='stylesheet'> | ||
<link href='https://api.mapbox.com/mapbox-assembly/mbx/v0.18.0/assembly.min.css' rel='stylesheet' type="text/css"> | ||
</head> | ||
|
||
<body> | ||
<div id='app'></div> | ||
<div id='panel'> | ||
<div id='coordinates' class='ui-coordinates'> | ||
<div id='date-selector-container'> | ||
<form id='date-selector'></form> | ||
<div id='app'> | ||
</div> | ||
|
||
|
||
<div id='see-list-button'> | ||
<div class='button-container'> | ||
<a href='#' id='open-list' class='button overlay-item'>See List</a> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class='map-overlay'> | ||
<a href="javascript:void(0)" class="closebtn">×</a> | ||
|
||
<fieldset> | ||
<input class='overlay-item' id='feature-filter' type='text' placeholder='Search results'> | ||
</fieldset> | ||
|
||
|
||
<div class='button-container'> | ||
<a href='#' id='filter-button' class='button overlay-item'>Filter by date</a> | ||
</div> | ||
|
||
|
||
<div> | ||
<div class='hidden filters' id='date-selector-container'> | ||
</div> | ||
</div> | ||
|
||
|
||
<div id='feature-listing' class='listing'> | ||
</div> | ||
</div> | ||
<script src='https://api.mapbox.com/mapbox-assembly/mbx/v0.18.0/assembly.js'></script> | ||
<script src='https://api.mapbox.com/mapbox-assembly/mbx/v0.18.0/assembly.js' type="text/javascript"> | ||
</script> | ||
</body> | ||
</html> |
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
Oops, something went wrong.