Guest User

Untitled

a guest
Oct 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. @-moz-keyframes pacman1 {
  2. 0% {-moz-transform: rotate(45deg);}
  3. 100% {-moz-transform: rotate(0deg);}
  4. }
  5. @-webkit-keyframes pacman1 {
  6. 0% {-webkit-transform: rotate(45deg);}
  7. 100% {-webkit-transform: rotate(0deg);}
  8. }
  9.  
  10. @-moz-keyframes pacman2 {
  11. 0% {-moz-transform: rotate(-45deg);}
  12. 100% {-moz-transform: rotate(0deg);}
  13. }
  14. @-webkit-keyframes pacman2{
  15. 0% {-webkit-transform: rotate(-45deg);}
  16. 100% {-webkit-transform: rotate(0deg);}
  17. }
  18.  
  19. @-moz-keyframes pacman3 {
  20. 0% { box-shadow: 100px 65px 0 0 white, 160px 65px 0 0 white, 220px 65px 0 0 white, 220px 125px 0 0 white, 220px 185px 0 0 white, 220px 245px 0 0 white, 280px 245px 0 0 white, 340px 245px 0 0 white, 400px 245px 0 0 transparent; }
  21. 100% { box-shadow: 40px 65px 0 0 white, 100px 65px 0 0 white, 160px 65px 0 0 white, 220px 65px 0 0 white, 220px 125px 0 0 white, 220px 185px 0 0 white, 220px 245px 0 0 white, 280px 245px 0 0 white, 340px 245px 0 0 white; }
  22. }
  23.  
  24. @-webkit-keyframes pacman3{
  25. 0% { box-shadow: 100px 65px 0 0 white, 160px 65px 0 0 white, 220px 65px 0 0 white, 220px 125px 0 0 white, 220px 185px 0 0 white, 220px 245px 0 0 white, 280px 245px 0 0 white, 340px 245px 0 0 white, 400px 245px 0 0 transparent; }
  26. 100% { box-shadow: 40px 65px 0 0 transparent, 100px 65px 0 0 white, 160px 65px 0 0 white, 220px 65px 0 0 white, 220px 125px 0 0 white, 220px 185px 0 0 white, 220px 245px 0 0 white, 280px 245px 0 0 white, 340px 245px 0 0 white; }
  27. }
  28.  
  29.  
  30. body {
  31. background-color: black;
  32. }
  33. #pacman {
  34. margin: 20px;
  35. margin-left: 85px;
  36. width: 30px;
  37. height: 30px;
  38. border-radius: 50%;
  39. -moz-animation: pacman3 1.4s linear 0s infinite;
  40. -webkit-animation: pacman3 1.4s linear 0s infinite;
  41. }
  42. #pacman > div {
  43. content: "";
  44. display: block;
  45. position: absolute;
  46. width: 0;
  47. height: 0;
  48. margin-left: -65px;
  49. border-radius: 50%;
  50. border: 80px solid yellow;
  51. border-right-color: transparent;
  52. }
  53. #pacman > :nth-of-type(1) {
  54. -moz-animation: pacman1 0.7s linear 0s infinite alternate;
  55. -webkit-animation: pacman1 0.7s linear 0s infinite alternate;
  56. }
  57. #pacman > :nth-of-type(2) {
  58. -moz-animation: pacman2 0.7s linear 0s infinite alternate;
  59. -webkit-animation: pacman2 0.7s linear 0s infinite alternate;
  60. }
Add Comment
Please, Sign In to add comment