Advertisement
izuemis

scale in ver bottom

Nov 18th, 2022
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. .scale-in-ver-bottom {
  2. -webkit-animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  3. animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  4. }
  5.  
  6. /* ----------------------------------------------
  7. * Generated by Animista on 2022-11-19 12:33:4
  8. * Licensed under FreeBSD License.
  9. * See http://animista.net/license for more info.
  10. * w: http://animista.net, t: @cssanimista
  11. * ---------------------------------------------- */
  12.  
  13. /**
  14. * ----------------------------------------
  15. * animation scale-in-ver-bottom
  16. * ----------------------------------------
  17. */
  18. @-webkit-keyframes scale-in-ver-bottom {
  19. 0% {
  20. -webkit-transform: scaleY(0);
  21. transform: scaleY(0);
  22. -webkit-transform-origin: 0% 100%;
  23. transform-origin: 0% 100%;
  24. opacity: 1;
  25. }
  26. 100% {
  27. -webkit-transform: scaleY(1);
  28. transform: scaleY(1);
  29. -webkit-transform-origin: 0% 100%;
  30. transform-origin: 0% 100%;
  31. opacity: 1;
  32. }
  33. }
  34. @keyframes scale-in-ver-bottom {
  35. 0% {
  36. -webkit-transform: scaleY(0);
  37. transform: scaleY(0);
  38. -webkit-transform-origin: 0% 100%;
  39. transform-origin: 0% 100%;
  40. opacity: 1;
  41. }
  42. 100% {
  43. -webkit-transform: scaleY(1);
  44. transform: scaleY(1);
  45. -webkit-transform-origin: 0% 100%;
  46. transform-origin: 0% 100%;
  47. opacity: 1;
  48. }
  49. }
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement