animation.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. @keyframes animateCircle_pop_trans {
  2. 0% {stroke: #000000; /* Initial stroke color */}
  3. 100% {stroke: #ff0000; /* Final stroke color */}
  4. }
  5. @keyframes animateCircle_pop_trans-2 {
  6. 0% {fill: #ffffff; /* Initial fill color */}
  7. 100% {fill: #00ff00; /* Final fill color */}
  8. }
  9. @keyframes animateCircle_vert_clair_erable {
  10. 0% {stroke: #000000; /* Initial stroke color */}
  11. 100% {stroke: #ff0000; /* Final stroke color */}
  12. }
  13. @keyframes animateCircle_vert_clair_erable-93 {
  14. 0% {fill: #ffffff; /* Initial fill color */}
  15. 100% {fill: #00ff00; /* Final fill color */}
  16. }
  17. @keyframes animateCircle_vert_clair_erable-9 {
  18. 0% {stroke: #000000; /* Initial stroke color */}
  19. 100% {stroke: #ff0000; /* Final stroke color */}
  20. }
  21. @keyframes animateCircle_vert_clair_erable-3 {
  22. 0% {fill: #ffffff; /* Initial fill color */}
  23. 100% {fill: #00ff00; /* Final fill color */}
  24. }
  25. @keyframes animateCircle_vert_clair_erable-3-1 {
  26. 0% {stroke: #000000; /* Initial stroke color */}
  27. 100% {stroke: #ff0000; /* Final stroke color */}
  28. }
  29. @keyframes animateCircle_vert_clair_erable-3-1-7 {
  30. 0% {fill: #ffffff; /* Initial fill color */}
  31. 100% {fill: #00ff00; /* Final fill color */}
  32. }
  33. @keyframes animateCircle_vert_erable {
  34. 0% {stroke: #000000; /* Initial stroke color */}
  35. 100% {stroke: #ff0000; /* Final stroke color */}
  36. }
  37. @keyframes animateCircle_vert_erable-4 {
  38. 0% {fill: #ffffff; /* Initial fill color */}
  39. 100% {fill: #00ff00; /* Final fill color */}
  40. }
  41. @keyframes animateCircle_vert_erable-4-6 {
  42. 0% {stroke: #000000; /* Initial stroke color */}
  43. 100% {stroke: #ff0000; /* Final stroke color */}
  44. }
  45. @keyframes animateCircle_vert_erable-4-3 {
  46. 0% {fill: #ffffff; /* Initial fill color */}
  47. 100% {fill: #00ff00; /* Final fill color */}
  48. }
  49. @keyframes animateCircle_vert_erable-2 {
  50. 0% {stroke: #000000; /* Initial stroke color */}
  51. 100% {stroke: #ff0000; /* Final stroke color */}
  52. }
  53. @keyframes translateAnimation {
  54. 0% {
  55. transform: translateX(0); /* Start translation */
  56. }
  57. 50% {
  58. transform: translateX(200);
  59. }
  60. 100% {
  61. transform: translateX(500px); /* End translation */
  62. }
  63. }
  64. @keyframes animateCircle_orange-7 {
  65. 0% {stroke: #000000; /* Initial stroke color */}
  66. 100% {stroke: #ff0000; /* Final stroke color */}
  67. }
  68. @keyframes animateCircle_orange-2 {
  69. 0% {fill: #ffffff; /* Initial fill color */}
  70. 100% {fill: #00ff00; /* Final fill color */}
  71. }
  72. @keyframes animateCircle_orange-9 {
  73. 0% {stroke: #000000; /* Initial stroke color */}
  74. 100% {stroke: #ff0000; /* Final stroke color */}
  75. }
  76. @keyframes animateCircle_orange {
  77. 0% {fill: #ffffff; /* Initial fill color */}
  78. 100% {fill: #00ff00; /* Final fill color */}
  79. }
  80. @keyframes slidein {
  81. from {
  82. transform: translateX(0%);
  83. }
  84. to {
  85. transform: translateX(100%);
  86. }
  87. }
  88. /* Add more keyframes for other paths as needed */
  89. #circle_pop_trans {
  90. animation-name: translateAnimation;
  91. animation-duration:13s;
  92. animation-repeat:infinite;
  93. animation-delay: 1s;
  94. animation-fill-mode: none; }
  95. #circle_orange-6 {
  96. animation: slidein 2s infinite alternate; /* Animate fill color */
  97. }
  98. /* Apply animations to other paths similarly */