Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. .parcel .icons {
  2. position: absolute;
  3. top: -100px;
  4. left: 0;
  5. width: 100%;
  6. }
  7.  
  8. .parcel picture:last-child img {
  9. position: absolute;
  10. top: 0;
  11. left: 0;
  12. }
  13.  
  14. .icon {
  15. width: 42px;
  16. height: 65px;
  17. background-size: cover;
  18. position: absolute;
  19. left: 0;
  20. animation: animate 3s ease-in-out;
  21. opacity: 0;
  22. }
  23.  
  24. @keyframes animate {
  25. from {
  26. transform: translate3d(0, 0, 0);
  27. opacity: 0;
  28. }
  29.  
  30. 25% {
  31. opacity: 1;
  32. }
  33.  
  34. 50% {
  35. opacity: 1;
  36. }
  37.  
  38. to {
  39. transform: translate3d(0, 450%, 0) scale(0.9);
  40. opacity: 0;
  41. }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement