Advertisement
Guest User

part one

a guest
Jan 22nd, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. .animatedlink1 {
  2. -webkit-animation-name: scalex;
  3. -webkit-animation-duration:3s;
  4. -webkit-animation-iteration-count:infinite;
  5. -webkit-animation-timing-function:ease-in-out;
  6. -moz-animation-name: scale;
  7. -moz-animation-duration:3s;
  8. -moz-animation-iteration-count:infinite;
  9. -moz-animation-timing-function:ease-in-out;
  10. }
  11.  
  12. @-webkit-keyframes scalex{
  13. from {-webkit-transform: scale(1);
  14. }
  15. 45% {-webkit-transform: scale(0.6);
  16. }
  17. to {-webkit-transform: scale(1);
  18. }
  19. }
  20.  
  21. @-moz-keyframes scale{
  22. from {-webkit-transform: scale(1);
  23. }
  24. 45% {-webkit-transform: scale(0.6);
  25. }
  26. to {-webkit-transform: scale(1);
  27. }
  28. }
  29.  
  30. #heart {
  31. position:fixed;
  32. display:block;
  33. width:150px;
  34. top:300px;
  35. left:960px;
  36. transform: rotate(25deg);
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement