CSS animation propertiies code example
Example 1: animation properties css
function party(){
document.body.style.animation = 'party 2.5s infinite linear';
}
Example 2: animation properties css
<html>
<body id="bd">
<button onclick="party()">Press Me!</button>
</body>
</html>