Advertisement
Guest User

Untitled

a guest
May 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. .pullUp{
  2. visibility: visible ;
  3. animation-name: pullUp;
  4. -webkit-animation-name: pullUp;
  5.  
  6. animation-duration: 0.3s;
  7. -webkit-animation-duration: 0.3s;
  8.  
  9. animation-timing-function: ease-out;
  10. -webkit-animation-timing-function: ease-out;
  11.  
  12. transform-origin: 50% 100%;
  13. -ms-transform-origin: 50% 100%;
  14. -webkit-transform-origin: 50% 100%;
  15. }
  16.  
  17. @keyframes pullUp {
  18. 0% {
  19. transform: scaleY(0.1);
  20. }
  21. 40% {
  22. transform: scaleY(1.02);
  23. }
  24. 60% {
  25. transform: scaleY(0.98);
  26. }
  27. 80% {
  28. transform: scaleY(1.01);
  29. }
  30. 100% {
  31. transform: scaleY(0.98);
  32. }
  33. 80% {
  34. transform: scaleY(1.01);
  35. }
  36. 100% {
  37. transform: scaleY(1);
  38. }
  39. }
  40.  
  41.  
  42. .slideDown{
  43. animation-name: slideDown;
  44. -webkit-animation-name: slideDown;
  45.  
  46. animation-duration: 0.2s;
  47. -webkit-animation-duration: 0.2s;
  48.  
  49. animation-timing-function: ease;
  50. -webkit-animation-timing-function: ease;
  51. transition-property:0.2s;
  52. -webkit-transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715);
  53. transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715);
  54. transform: translateY(+30px);
  55. visibility: visible !important;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement