_animation.scss 856 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @keyframes rotation {
  2. from {
  3. -webkit-transform: rotate(0deg);
  4. }
  5. to {
  6. -webkit-transform: rotate(359deg);
  7. }
  8. }
  9. @keyframes translatep1{
  10. 0%{
  11. transform: translateY(35px);
  12. }
  13. 100%{
  14. transform: translateY(5px);
  15. visibility: hidden;
  16. }
  17. }
  18. @keyframes translatep2{
  19. 0%{
  20. transform: translateY(-20px);
  21. }
  22. 100%{
  23. transform: translateY(40px);
  24. visibility: hidden;
  25. }
  26. }
  27. @keyframes translateright{
  28. 0%{
  29. right: -50px;
  30. color: transparent;
  31. display: none;
  32. }
  33. 30%{
  34. right: 150px;
  35. color: transparent;
  36. display: block;
  37. }
  38. 100%{
  39. right: 200px;
  40. color: white;
  41. }
  42. }
  43. @keyframes translateleft{
  44. 0%{
  45. right: 200px;
  46. color: white;
  47. display: block;
  48. }
  49. 30%{
  50. right: 150px;
  51. color: transparent;
  52. }
  53. 100%{
  54. right: -200px;
  55. color: transparent;
  56. display: none;
  57. }
  58. }