styleGlobalMap.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .global-map {
  2. stroke: black;
  3. stroke-width: 3px;
  4. fill: none;
  5. }
  6. .southAmerica{
  7. stroke-dasharray: 990;
  8. -webkit-animation: southAmerica 3s linear forwards;
  9. fill: black;
  10. fill-opacity: 0;
  11. }
  12. @-webkit-keyframes southAmerica {
  13. 0%{
  14. stroke-dashoffset: 977;
  15. } 50% {
  16. stroke-dashoffset: 0;
  17. fill-opacity: 0;
  18. } 100% {
  19. fill-opacity: 1;
  20. }
  21. }
  22. .northAmerica{
  23. stroke-dasharray: 2117;
  24. -webkit-animation: northAmerica 3s linear forwards;
  25. fill: black;
  26. fill-opacity: 0;
  27. }
  28. @-webkit-keyframes northAmerica {
  29. 0%{
  30. stroke-dashoffset: 2112;
  31. } 50% {
  32. stroke-dashoffset: 0;
  33. fill-opacity: 0;
  34. } 100% {
  35. fill-opacity: 1;
  36. }
  37. }
  38. .africa{
  39. stroke-dasharray: 1079;
  40. -webkit-animation: africa 3s linear forwards;
  41. fill: black;
  42. fill-opacity: 0;
  43. }
  44. @-webkit-keyframes africa {
  45. 0%{
  46. stroke-dashoffset: 1079;
  47. } 50% {
  48. stroke-dashoffset: 0;
  49. fill-opacity: 0;
  50. } 100% {
  51. fill-opacity: 1;
  52. }
  53. }
  54. .europa{
  55. stroke-dasharray: 1438;
  56. -webkit-animation: europa 3s linear forwards;
  57. fill: black;
  58. fill-opacity: 0;
  59. }
  60. @-webkit-keyframes europa {
  61. 0%{
  62. stroke-dashoffset: 1432;
  63. } 50% {
  64. stroke-dashoffset: 0;
  65. fill-opacity: 0;
  66. } 100% {
  67. fill-opacity: 1;
  68. }
  69. }
  70. .asia{
  71. stroke-dasharray: 3350;
  72. -webkit-animation: asia 3s linear forwards;
  73. fill: black;
  74. fill-opacity: 0;
  75. }
  76. @-webkit-keyframes asia {
  77. 0%{
  78. stroke-dashoffset: 3350;
  79. } 50% {
  80. stroke-dashoffset: 0;
  81. fill-opacity: 0;
  82. } 100% {
  83. fill-opacity: 1;
  84. }
  85. }
  86. .australia{
  87. stroke-dasharray: 650;
  88. -webkit-animation: australia 3s linear forwards;
  89. fill: black;
  90. fill-opacity: 0;
  91. }
  92. @-webkit-keyframes australia {
  93. 0% {
  94. stroke-dashoffset: 650;
  95. } 50% {
  96. stroke-dashoffset: 0;
  97. fill-opacity: 0;
  98. } 100% {
  99. fill-opacity: 1;
  100. }
  101. }