add animation to element with javascript code example
Example 1: js add animation to element
let rotate360 = [
{ transform: 'rotate(360deg)' }
];
Example 2: js add animation to element
var animation = element.animate(keyframes, options);
let rotate360 = [
{ transform: 'rotate(360deg)' }
];
var animation = element.animate(keyframes, options);