_animation.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. }
  59. @keyframes height{
  60. 0%{
  61. height: 50vh;
  62. min-height: 250px;
  63. }
  64. 100%{
  65. height: 0;
  66. min-height: 100px;
  67. }
  68. }
  69. @keyframes margin{
  70. 0%{
  71. margin-top: 25vh;
  72. transform: translateY(-50%);
  73. }
  74. 100%{
  75. margin-top: 0px;
  76. transform: translateY(0%);
  77. }
  78. }
  79. @keyframes h1{
  80. 0%{
  81. font-size: 11.2vw;
  82. }
  83. 100%{
  84. font-size: 3rem;
  85. }
  86. }
  87. @keyframes card{
  88. 0%{}
  89. 50%{
  90. transform: translateY(-40px);
  91. }
  92. 100%{
  93. transform: translateY(-50px);
  94. opacity: 0;
  95. }
  96. }
  97. @keyframes textestroke{
  98. 0%{
  99. -webkit-text-stroke : 1px;
  100. }
  101. 100%{
  102. -webkit-text-stroke : 0px;
  103. }
  104. }