Created
June 7, 2016 23:56
-
-
Save TimothyMwangi/5ccf25bca33b467ea2c5707f3b77b20f to your computer and use it in GitHub Desktop.
Elastic stroke CSS + SVG
This file contains hidden or 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
| <svg viewBox="0 0 800 600"> | |
| <symbol id="s-text"> | |
| <text text-anchor="middle" | |
| x="50%" | |
| y="35%" | |
| class="text--line" | |
| > | |
| Elastic | |
| </text> | |
| <text text-anchor="middle" | |
| x="50%" | |
| y="68%" | |
| class="text--line2" | |
| > | |
| Stroke | |
| </text> | |
| </symbol> | |
| <g class="g-ants"> | |
| <use xlink:href="#s-text" | |
| class="text-copy"></use> | |
| <use xlink:href="#s-text" | |
| class="text-copy"></use> | |
| <use xlink:href="#s-text" | |
| class="text-copy"></use> | |
| <use xlink:href="#s-text" | |
| class="text-copy"></use> | |
| <use xlink:href="#s-text" | |
| class="text-copy"></use> | |
| </g> | |
| </svg> |
This file contains hidden or 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
| HTML, BODY { | |
| height: 100%; | |
| } | |
| $colors: #360745, #D61C59, #E7D84B, #EFEAC5, #1B8798; | |
| BODY { | |
| background: hsl(200,70,11); | |
| background-size: .12em 100%; | |
| font: 16em/1 Arial; | |
| } | |
| .text--line { | |
| font-size: .5em; | |
| } | |
| svg { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| $max: 5; | |
| $stroke-step: 7%; | |
| .text-copy { | |
| fill: none; | |
| stroke: white; | |
| stroke-dasharray: $stroke-step $stroke-step * ($max - 1); | |
| stroke-width: 3px; | |
| animation: stroke-offset 9s infinite linear; | |
| @for $item from 1 through $max { | |
| $stroke-color: nth($colors, $item); | |
| &:nth-child(#{$item}) { | |
| stroke: $stroke-color; | |
| stroke-dashoffset: $stroke-step * $item; | |
| } | |
| } | |
| } | |
| @keyframes stroke-offset { | |
| 50% { | |
| stroke-dashoffset: $stroke-step * $max; | |
| stroke-dasharray: 0 $stroke-step * $max*2.5; | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment