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