Guest User

Roblox database infection

a guest
Mar 27th, 2017
2,061
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <style>
  2. div {
  3. width: 100px;
  4. height: 100px;
  5. background-color: red;
  6. position: relative;
  7. -webkit-animation-name: example; /* Safari 4.0 - 8.0 */
  8. -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  9. -webkit-animation-iteration-count: 3; /* Safari 4.0 - 8.0 */
  10. animation-name: example;
  11. animation-duration: 4s;
  12. animation-iteration-count: 30000;
  13. animation-direction: alternate;
  14. }
  15.  
  16. /* Safari 4.0 - 8.0 */
  17. @-webkit-keyframes example {
  18. 0% {background-color:red; left:0px; top:0px;}
  19. 25% {background-color:yellow; left:200px; top:0px;}
  20. 50% {background-color:blue; left:200px; top:200px;}
  21. 75% {background-color:green; left:0px; top:200px;}
  22. 100% {background-color:red; left:0px; top:0px;}
  23. }
  24.  
  25. /* Standard syntax */
  26. @keyframes example {
  27. 0% {background-color:red; left:0px; top:0px;}
  28. 25% {background-color:yellow; left:200px; top:0px;}
  29. 50% {background-color:blue; left:200px; top:200px;}
  30. 75% {background-color:green; left:0px; top:200px;}
  31. 100% {background-color:red; left:0px; top:0px;}
  32. }
  33. </style>
Add Comment
Please, Sign In to add comment