Source Code:
(back to article)
<!DOCTYPE html> <html> <head> <title>Title of the Document</title> <style> #digitId { width: .6em; overflow: hidden; font: 36px monospace; cursor: pointer; } #stripe { display: inline-block } #stripe.animate { transform: translate(-90%); transition-property: transform; transition-duration: 6s; transition-timing-function: linear } </style> </head> <body> Click below to animate: <div id="digitId"> <div id="stripe">123456789</div> </div> <script> stripe.onclick = function() { stripe.classList.add('animate'); }; </script> </body> </html>
Result:
Report an issue