animation properties css
function party(){
document.body.style.animation = 'party 2.5s infinite linear';
}
animation properties css
function party(){
document.body.style.animation = 'party 2.5s infinite linear';
}
animation properties css
body{
background-color: purple;
}
@keyframes party{
0% {background-color: red;}
10% {background-color: orange;}
20% {background-color: yellow;}
30% {background-color: green;}
40% {background-color: blue;}
50% {background-color: purple;}
}
@-webkit-keyframes party{
0% {background-color: red;}
10% {background-color: orange;}
20% {background-color: yellow;}
30% {background-color: green;}
40% {background-color: blue;}
50% {background-color: purple;}
}
animation properties css
function party(){
document.body.style.animation = 'party 2.5s infinite linear';
}
animation properties css
<html>
<body id="bd">
<button onclick="party()">Press Me!</button>
</body>
</html>
animation properties css
body{
background-color: purple;
}
@keyframes party{
0% {background-color: red;}
10% {background-color: orange;}
20% {background-color: yellow;}
30% {background-color: green;}
40% {background-color: blue;}
50% {background-color: purple;}
}
@-webkit-keyframes party{
0% {background-color: red;}
10% {background-color: orange;}
20% {background-color: yellow;}
30% {background-color: green;}
40% {background-color: blue;}
50% {background-color: purple;}
}
animation properties css
<html>
<body id="bd">
<button onclick="party()">Press Me!</button>
</body>
</html>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us