snowy-3-day.svg 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- (c) ammap.com | SVG weather icons -->
  3. <svg width="56" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
  4. <defs>
  5. <filter id="blur" x="-.24684" y="-.26897" width="1.4937" height="1.6759">
  6. <feGaussianBlur in="SourceAlpha" stdDeviation="3" />
  7. <feOffset dx="0" dy="4" result="offsetblur" />
  8. <feComponentTransfer>
  9. <feFuncA slope="0.05" type="linear" />
  10. </feComponentTransfer>
  11. <feMerge>
  12. <feMergeNode />
  13. <feMergeNode in="SourceGraphic" />
  14. </feMerge>
  15. </filter>
  16. <style type="text/css">
  17. <![CDATA[
  18. /*
  19. ** CLOUDS
  20. */
  21. @keyframes am-weather-cloud-2 {
  22. 0% {
  23. -webkit-transform: translate(0px, 0px);
  24. -moz-transform: translate(0px, 0px);
  25. -ms-transform: translate(0px, 0px);
  26. transform: translate(0px, 0px);
  27. }
  28. 50% {
  29. -webkit-transform: translate(2px, 0px);
  30. -moz-transform: translate(2px, 0px);
  31. -ms-transform: translate(2px, 0px);
  32. transform: translate(2px, 0px);
  33. }
  34. 100% {
  35. -webkit-transform: translate(0px, 0px);
  36. -moz-transform: translate(0px, 0px);
  37. -ms-transform: translate(0px, 0px);
  38. transform: translate(0px, 0px);
  39. }
  40. }
  41. .am-weather-cloud-2 {
  42. -webkit-animation-name: am-weather-cloud-2;
  43. -moz-animation-name: am-weather-cloud-2;
  44. animation-name: am-weather-cloud-2;
  45. -webkit-animation-duration: 3s;
  46. -moz-animation-duration: 3s;
  47. animation-duration: 3s;
  48. -webkit-animation-timing-function: linear;
  49. -moz-animation-timing-function: linear;
  50. animation-timing-function: linear;
  51. -webkit-animation-iteration-count: infinite;
  52. -moz-animation-iteration-count: infinite;
  53. animation-iteration-count: infinite;
  54. }
  55. /*
  56. ** SUN
  57. */
  58. @keyframes am-weather-sun {
  59. 0% {
  60. -webkit-transform: rotate(0deg);
  61. -moz-transform: rotate(0deg);
  62. -ms-transform: rotate(0deg);
  63. transform: rotate(0deg);
  64. }
  65. 100% {
  66. -webkit-transform: rotate(360deg);
  67. -moz-transform: rotate(360deg);
  68. -ms-transform: rotate(360deg);
  69. transform: rotate(360deg);
  70. }
  71. }
  72. .am-weather-sun {
  73. -webkit-animation-name: am-weather-sun;
  74. -moz-animation-name: am-weather-sun;
  75. -ms-animation-name: am-weather-sun;
  76. animation-name: am-weather-sun;
  77. -webkit-animation-duration: 9s;
  78. -moz-animation-duration: 9s;
  79. -ms-animation-duration: 9s;
  80. animation-duration: 9s;
  81. -webkit-animation-timing-function: linear;
  82. -moz-animation-timing-function: linear;
  83. -ms-animation-timing-function: linear;
  84. animation-timing-function: linear;
  85. -webkit-animation-iteration-count: infinite;
  86. -moz-animation-iteration-count: infinite;
  87. -ms-animation-iteration-count: infinite;
  88. animation-iteration-count: infinite;
  89. }
  90. @keyframes am-weather-sun-shiny {
  91. 0% {
  92. stroke-dasharray: 3px 10px;
  93. stroke-dashoffset: 0px;
  94. }
  95. 50% {
  96. stroke-dasharray: 0.1px 10px;
  97. stroke-dashoffset: -1px;
  98. }
  99. 100% {
  100. stroke-dasharray: 3px 10px;
  101. stroke-dashoffset: 0px;
  102. }
  103. }
  104. .am-weather-sun-shiny line {
  105. -webkit-animation-name: am-weather-sun-shiny;
  106. -moz-animation-name: am-weather-sun-shiny;
  107. -ms-animation-name: am-weather-sun-shiny;
  108. animation-name: am-weather-sun-shiny;
  109. -webkit-animation-duration: 2s;
  110. -moz-animation-duration: 2s;
  111. -ms-animation-duration: 2s;
  112. animation-duration: 2s;
  113. -webkit-animation-timing-function: linear;
  114. -moz-animation-timing-function: linear;
  115. -ms-animation-timing-function: linear;
  116. animation-timing-function: linear;
  117. -webkit-animation-iteration-count: infinite;
  118. -moz-animation-iteration-count: infinite;
  119. -ms-animation-iteration-count: infinite;
  120. animation-iteration-count: infinite;
  121. }
  122. /*
  123. ** SNOW
  124. */
  125. @keyframes am-weather-snow {
  126. 0% {
  127. -webkit-transform: translateX(0) translateY(0);
  128. -moz-transform: translateX(0) translateY(0);
  129. -ms-transform: translateX(0) translateY(0);
  130. transform: translateX(0) translateY(0);
  131. }
  132. 33.33% {
  133. -webkit-transform: translateX(-1.2px) translateY(2px);
  134. -moz-transform: translateX(-1.2px) translateY(2px);
  135. -ms-transform: translateX(-1.2px) translateY(2px);
  136. transform: translateX(-1.2px) translateY(2px);
  137. }
  138. 66.66% {
  139. -webkit-transform: translateX(1.4px) translateY(4px);
  140. -moz-transform: translateX(1.4px) translateY(4px);
  141. -ms-transform: translateX(1.4px) translateY(4px);
  142. transform: translateX(1.4px) translateY(4px);
  143. opacity: 1;
  144. }
  145. 100% {
  146. -webkit-transform: translateX(-1.6px) translateY(6px);
  147. -moz-transform: translateX(-1.6px) translateY(6px);
  148. -ms-transform: translateX(-1.6px) translateY(6px);
  149. transform: translateX(-1.6px) translateY(6px);
  150. opacity: 0;
  151. }
  152. }
  153. @keyframes am-weather-snow-reverse {
  154. 0% {
  155. -webkit-transform: translateX(0) translateY(0);
  156. -moz-transform: translateX(0) translateY(0);
  157. -ms-transform: translateX(0) translateY(0);
  158. transform: translateX(0) translateY(0);
  159. }
  160. 33.33% {
  161. -webkit-transform: translateX(1.2px) translateY(2px);
  162. -moz-transform: translateX(1.2px) translateY(2px);
  163. -ms-transform: translateX(1.2px) translateY(2px);
  164. transform: translateX(1.2px) translateY(2px);
  165. }
  166. 66.66% {
  167. -webkit-transform: translateX(-1.4px) translateY(4px);
  168. -moz-transform: translateX(-1.4px) translateY(4px);
  169. -ms-transform: translateX(-1.4px) translateY(4px);
  170. transform: translateX(-1.4px) translateY(4px);
  171. opacity: 1;
  172. }
  173. 100% {
  174. -webkit-transform: translateX(1.6px) translateY(6px);
  175. -moz-transform: translateX(1.6px) translateY(6px);
  176. -ms-transform: translateX(1.6px) translateY(6px);
  177. transform: translateX(1.6px) translateY(6px);
  178. opacity: 0;
  179. }
  180. }
  181. .am-weather-snow-1 {
  182. -webkit-animation-name: am-weather-snow;
  183. -moz-animation-name: am-weather-snow;
  184. -ms-animation-name: am-weather-snow;
  185. animation-name: am-weather-snow;
  186. -webkit-animation-duration: 2s;
  187. -moz-animation-duration: 2s;
  188. -ms-animation-duration: 2s;
  189. animation-duration: 2s;
  190. -webkit-animation-timing-function: linear;
  191. -moz-animation-timing-function: linear;
  192. -ms-animation-timing-function: linear;
  193. animation-timing-function: linear;
  194. -webkit-animation-iteration-count: infinite;
  195. -moz-animation-iteration-count: infinite;
  196. -ms-animation-iteration-count: infinite;
  197. animation-iteration-count: infinite;
  198. }
  199. .am-weather-snow-2 {
  200. -webkit-animation-name: am-weather-snow;
  201. -moz-animation-name: am-weather-snow;
  202. -ms-animation-name: am-weather-snow;
  203. animation-name: am-weather-snow;
  204. -webkit-animation-delay: 1.2s;
  205. -moz-animation-delay: 1.2s;
  206. -ms-animation-delay: 1.2s;
  207. animation-delay: 1.2s;
  208. -webkit-animation-duration: 2s;
  209. -moz-animation-duration: 2s;
  210. -ms-animation-duration: 2s;
  211. animation-duration: 2s;
  212. -webkit-animation-timing-function: linear;
  213. -moz-animation-timing-function: linear;
  214. -ms-animation-timing-function: linear;
  215. animation-timing-function: linear;
  216. -webkit-animation-iteration-count: infinite;
  217. -moz-animation-iteration-count: infinite;
  218. -ms-animation-iteration-count: infinite;
  219. animation-iteration-count: infinite;
  220. }
  221. .am-weather-snow-3 {
  222. -webkit-animation-name: am-weather-snow-reverse;
  223. -moz-animation-name: am-weather-snow-reverse;
  224. -ms-animation-name: am-weather-snow-reverse;
  225. animation-name: am-weather-snow-reverse;
  226. -webkit-animation-duration: 2s;
  227. -moz-animation-duration: 2s;
  228. -ms-animation-duration: 2s;
  229. animation-duration: 2s;
  230. -webkit-animation-timing-function: linear;
  231. -moz-animation-timing-function: linear;
  232. -ms-animation-timing-function: linear;
  233. animation-timing-function: linear;
  234. -webkit-animation-iteration-count: infinite;
  235. -moz-animation-iteration-count: infinite;
  236. -ms-animation-iteration-count: infinite;
  237. animation-iteration-count: infinite;
  238. }
  239. ]]>
  240. </style>
  241. </defs>
  242. <g transform="translate(16,-2)" filter="url(#blur)">
  243. <g transform="translate(0,16)">
  244. <g class="am-weather-sun"
  245. style="-moz-animation-duration:9s;-moz-animation-iteration-count:infinite;-moz-animation-name:am-weather-sun;-moz-animation-timing-function:linear;-ms-animation-duration:9s;-ms-animation-iteration-count:infinite;-ms-animation-name:am-weather-sun;-ms-animation-timing-function:linear;-webkit-animation-duration:9s;-webkit-animation-iteration-count:infinite;-webkit-animation-name:am-weather-sun;-webkit-animation-timing-function:linear">
  246. <line transform="translate(0,9)" y2="3" fill="none" stroke="#ffa500" stroke-linecap="round"
  247. stroke-width="2" />
  248. <g transform="rotate(45)">
  249. <line transform="translate(0,9)" y2="3" fill="none" stroke="#ffa500" stroke-linecap="round"
  250. stroke-width="2" />
  251. </g>
  252. <g transform="rotate(90)">
  253. <line transform="translate(0,9)" y2="3" fill="none" stroke="#ffa500" stroke-linecap="round"
  254. stroke-width="2" />
  255. </g>
  256. <g transform="rotate(135)">
  257. <line transform="translate(0,9)" y2="3" fill="none" stroke="#ffa500" stroke-linecap="round"
  258. stroke-width="2" />
  259. </g>
  260. <g transform="scale(-1)">
  261. <line transform="translate(0,9)" y2="3" fill="none" stroke="#ffa500" stroke-linecap="round"
  262. stroke-width="2" />
  263. </g>
  264. <g transform="rotate(225)">
  265. <line transform="translate(0,9)" y2="3" fill="none" stroke="#ffa500" stroke-linecap="round"
  266. stroke-width="2" />
  267. </g>
  268. <g transform="rotate(-90)">
  269. <line transform="translate(0,9)" y2="3" fill="none" stroke="#ffa500" stroke-linecap="round"
  270. stroke-width="2" />
  271. </g>
  272. <g transform="rotate(-45)">
  273. <line transform="translate(0,9)" y2="3" fill="none" stroke="#ffa500" stroke-linecap="round"
  274. stroke-width="2" />
  275. </g>
  276. </g>
  277. <circle r="5" fill="#ffa500" stroke="#ffa500" stroke-width="2" />
  278. </g>
  279. <g class="am-weather-cloud-2"
  280. style="-moz-animation-duration:3s;-moz-animation-iteration-count:infinite;-moz-animation-name:am-weather-cloud-2;-moz-animation-timing-function:linear;-webkit-animation-duration:3s;-webkit-animation-iteration-count:infinite;-webkit-animation-name:am-weather-cloud-2;-webkit-animation-timing-function:linear">
  281. <path transform="translate(-20,-11)"
  282. d="m47.7 35.4c0-4.6-3.7-8.2-8.2-8.2-1 0-1.9 0.2-2.8 0.5-0.3-3.4-3.1-6.2-6.6-6.2-3.7 0-6.7 3-6.7 6.7 0 0.8 0.2 1.6 0.4 2.3-0.3-0.1-0.7-0.1-1-0.1-3.7 0-6.7 3-6.7 6.7 0 3.6 2.9 6.6 6.5 6.7h17.2c4.4-0.5 7.9-4 7.9-8.4z"
  283. fill="#57a0ee" stroke="#fff" stroke-linejoin="round" stroke-width="1.2" />
  284. </g>
  285. <g class="am-weather-snow-1"
  286. style="-moz-animation-duration:2s;-moz-animation-iteration-count:infinite;-moz-animation-name:am-weather-snow;-moz-animation-timing-function:linear;-ms-animation-duration:2s;-ms-animation-iteration-count:infinite;-ms-animation-name:am-weather-snow;-ms-animation-timing-function:linear;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;-webkit-animation-name:am-weather-snow;-webkit-animation-timing-function:linear">
  287. <g transform="translate(3,28)" fill="none" stroke="#57a0ee" stroke-linecap="round">
  288. <line transform="translate(0,9)" y1="-2.5" y2="2.5" stroke-width="1.2" />
  289. <line transform="rotate(45,-10.864,4.5)" y1="-2.5" y2="2.5" />
  290. <line transform="rotate(90,-4.5,4.5)" y1="-2.5" y2="2.5" />
  291. <line transform="rotate(135,-1.864,4.5)" y1="-2.5" y2="2.5" />
  292. </g>
  293. </g>
  294. <g class="am-weather-snow-2"
  295. style="-moz-animation-delay:1.2s;-moz-animation-duration:2s;-moz-animation-iteration-count:infinite;-moz-animation-name:am-weather-snow;-moz-animation-timing-function:linear;-ms-animation-delay:1.2s;-ms-animation-duration:2s;-ms-animation-iteration-count:infinite;-ms-animation-name:am-weather-snow;-ms-animation-timing-function:linear;-webkit-animation-delay:1.2s;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;-webkit-animation-name:am-weather-snow;-webkit-animation-timing-function:linear">
  296. <g transform="translate(11,28)" fill="none" stroke="#57a0ee" stroke-linecap="round">
  297. <line transform="translate(0,9)" y1="-2.5" y2="2.5" stroke-width="1.2" />
  298. <line transform="rotate(45,-10.864,4.5)" y1="-2.5" y2="2.5" />
  299. <line transform="rotate(90,-4.5,4.5)" y1="-2.5" y2="2.5" />
  300. <line transform="rotate(135,-1.864,4.5)" y1="-2.5" y2="2.5" />
  301. </g>
  302. </g>
  303. <g class="am-weather-snow-3"
  304. style="-moz-animation-duration:2s;-moz-animation-iteration-count:infinite;-moz-animation-name:am-weather-snow-reverse;-moz-animation-timing-function:linear;-ms-animation-duration:2s;-ms-animation-iteration-count:infinite;-ms-animation-name:am-weather-snow-reverse;-ms-animation-timing-function:linear;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;-webkit-animation-name:am-weather-snow-reverse;-webkit-animation-timing-function:linear">
  305. <g transform="translate(20,28)" fill="none" stroke="#57a0ee" stroke-linecap="round">
  306. <line transform="translate(0,9)" y1="-2.5" y2="2.5" stroke-width="1.2" />
  307. <line transform="rotate(45,-10.864,4.5)" y1="-2.5" y2="2.5" />
  308. <line transform="rotate(90,-4.5,4.5)" y1="-2.5" y2="2.5" />
  309. <line transform="rotate(135,-1.864,4.5)" y1="-2.5" y2="2.5" />
  310. </g>
  311. </g>
  312. </g>
  313. </svg>