Skip to content

Instantly share code, notes, and snippets.

@sunmughan
Created March 28, 2019 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunmughan/2a6183469888dd8aafd1101ca0afc9a5 to your computer and use it in GitHub Desktop.
Save sunmughan/2a6183469888dd8aafd1101ca0afc9a5 to your computer and use it in GitHub Desktop.
Monsterrat Effect
<svg viewBox="0 0 960 300">
<symbol id="s-text">
<text text-anchor="middle" x="50%" y="80%">Titan Hacks</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>
<style>
@import url(https://fonts.googleapis.com/css?family=Montserrat);
html, body{
height: 100%;
font-weight: 800;
}
body{
background: #ffffff;
font-family: Arial;
}
svg {
display: block;
font: 10.5em 'Montserrat';
width: auto;
height: auto;
margin: 0 auto;
margin-top: -50px;
}
.text-copy {
fill: none;
stroke: none;
stroke-dasharray: 6% 29%;
stroke-width: 5px;
stroke-dashoffset: 0%;
animation: stroke-offset 5.5s infinite linear;
}
.text-copy:nth-child(1){
stroke: #4D163D;
animation-delay: -1;
}
.text-copy:nth-child(2){
stroke: #840037;
animation-delay: -2s;
}
.text-copy:nth-child(3){
stroke: #BD0034;
animation-delay: -3s;
}
.text-copy:nth-child(4){
stroke: #BD0034;
animation-delay: -4s;
}
.text-copy:nth-child(5){
stroke: #FDB731;
animation-delay: -5s;
}
@keyframes stroke-offset{
100% {stroke-dashoffset: -35%;}
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment