Advertisement
Ciszek

Untitled

Apr 29th, 2021
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. Do konsoli:
  2. var styles = `body{animation-name: fexample;animation-duration: 10s;animation-iteration-count: infinite;}@keyframes fexample {0% {color: red;}40% {color: yellow;}80% {color: green;}100% {color: RED;}}`;var styleSheet = document.createElement("style");styleSheet.type = "text/css";styleSheet.innerText = styles;document.head.appendChild(styleSheet)
  3.  
  4. Do custom css:
  5. body{
  6. animation-name: fexample;
  7. animation-duration: 10s;
  8. animation-iteration-count: infinite;
  9. }
  10. @keyframes fexample {
  11. 0% {color: red;}
  12. 40% {color: yellow;}
  13. 80% {color: green;}
  14. 100% {color: RED;}
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement