javascript add animation code example
Example 1: js add animation to element
document.getElementById('test').style.animation = 'fading 2s infinite'
Example 2: javascript animate elements
document.getElementById("tunnel").animate([
// keyframes
{ transform: 'translateY(0px)' },
{ transform: 'translateY(-300px)' }
], {
// timing options
duration: 1000,
iterations: Infinity
});
Example 3: js add animation to element
let rotate360 = [
{ transform: 'rotate(360deg)' }
];
Example 4: js keyframe
var ondersteundFlag = $ . sleutelframe . isSupported ( ) ;
Example 5: js keyframe
< script src = ' /path/to/jquery.keyframes [.min ] .js ' > </ script >