blob: 3170f21e60fb136e32a57d7fb93356f7ce97763d [file] [log] [blame]
// this thing is js driven on slid.es so I didn't bother switching out for css animations
var duration = 7000, steps = 3, step = 1;
setInterval( function() {
document.querySelector( '.animation' ).setAttribute( 'data-animation-step', step = ++step > steps ? 1 : step );
}, duration / steps );