Small demo to show how to log what point you're at in a CSS animation in order to debug motion.
A Pen by Sarah Drasner on CodePen.
| /* bling.js */ | |
| window.$ = document.querySelectorAll.bind(document); | |
| Node.prototype.on = window.on = function (name, fn) { | |
| this.addEventListener(name, fn); | |
| } | |
| NodeList.prototype.__proto__ = Array.prototype; |
Small demo to show how to log what point you're at in a CSS animation in order to debug motion.
A Pen by Sarah Drasner on CodePen.