Created
April 2, 2018 19:50
-
-
Save jnschrag/17105fc3c60db93eb6f25cc3bd5f7cdd to your computer and use it in GitHub Desktop.
ASP Longform Animation
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
#satellite .longform-section-overlay.aos-animate + .section-content svg#Layer path { | |
stroke-dasharray: 1000; | |
stroke-dashoffset: 1000; | |
animation: dash 5s linear forwards 1; | |
} | |
@keyframes dash { | |
from { | |
stroke-dashoffset: 1000; | |
} | |
to { | |
stroke-dashoffset: 0; | |
} | |
} |
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
:root { | |
--orange: #d66e42; | |
} | |
.style-svg.world-map g path { | |
transition: all .8s ease-in-out; | |
} | |
.aos-init + .section-content .style-svg.world-map g#White_Fill path { | |
fill: transparent; | |
transition-delay: .5s; | |
} | |
.aos-animate + .section-content .style-svg.world-map g#White_Fill path { | |
fill: white; | |
} | |
.aos-init + .section-content .style-svg.world-map g#Orange_Fill path { | |
fill: transparent; | |
transition-delay: 1.25s; | |
stroke: white; | |
} | |
.aos-animate + .section-content .style-svg.world-map g#Orange_Fill path { | |
fill: var(--orange); | |
stroke: var(--orange); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment