CITY

HTML
<div> <span>CITY</span> </div>
SCSS
$ease: cubic-bezier(.47,.01,0,1.01); div { position: fixed; top:0; right:0; bottom:0; left:0; background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/242518/photo-1428851473740-05d09c5f70c0.jpeg) no-repeat center center / cover; } span { position: absolute; top: 50%; left: 50%; transform: translate3d(-50%,-50%,0); mix-blend-mode: screen; font-family: 'Montserrat', sans-serif; font-size: 12em; letter-spacing: 0.2em; text-transform: uppercase; text-shadow: 0px 1px white, 0px 2px white, 0px 3px white, 0px 4px white, 0px 5px white, 0px 6px white, 0px 7px white, 0px 8px white, 0px 9px white, 0px 10px white, 0px 11px white; opacity:0; animation: revolve 2s $ease forwards 0.5s; @keyframes revolve { to { opacity: 1; text-shadow: -2px 1px white, -3px 2px white, -4px 3px white, -5px 4px white, -6px 5px white, -7px 6px white, -8px 7px white, -9px 8px white, -10px 9px white, -11px 10px white, -12px 11px white; } } }
JAVASCRIPT
Expand for more options Login