weatherCalendarCard8_15.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. <template>
  2. <div class="weatherProphet8_15" :style="{'width':weatherProphet8_15Width,'height':weatherProphet8_15Height}">
  3. <div class="date" :style="{'font-size':dateSize}">{{month}}月{{day}}</div>
  4. <div class="cardContaine" :style="{'height':cardContaineHeight}">
  5. <div class="time" :style="{'line-height':timeLineHeight,'background-color':timeBackgroundColor,'font-size':timeSize,'height':timeHeight,'width':timeDayWidth}">
  6. {{week}}&nbsp;{{day}}
  7. </div>
  8. <div class="weatherIcon" :style="{'background-color':weatherIconBackgroundColor,'width':timeWidth,'height':weatherIconHeight}">
  9. <div :class="[dayWeatherClassName,dayWeatherIconTotalClass]" :style="{'margin-top':dayWeatherIconTotalClassMarginTop,'margin-left':dayWeatherIconTotalClassMarginLeft}"></div>
  10. <div :class="[nightWeatherClassName,nightWeatherIconTotalClass]" :style="{'margin-top':dayWeatherIconTotalClassMarginTop,'margin-right':dayWeatherIconTotalClassMarginRight}"></div>
  11. </div>
  12. <div class="weatherAndTemperatureAndWinddirectionAndSpeedClass">
  13. <div class="weather" :style="{'line-height':timeLineHeight,'font-size':weatherSize}">
  14. {{weatherProphetData_8_15.weather}}
  15. </div>
  16. <div class="temperature" :style="{'line-height':timeLineHeight,'font-size':temperatureSize}">
  17. <span>{{weatherProphetData_8_15.temperature1}}℃</span>/{{weatherProphetData_8_15.temperature2}}℃
  18. </div>
  19. <div class="winddirection" :style="{'line-height':timeLineHeight,'font-size':winddirectionSize}">
  20. {{weatherProphetData_8_15.winddirection1}}
  21. </div>
  22. <div class="speed" :style="{'line-height':timeLineHeight,'font-size':speedSize}">
  23. {{weatherProphetData_8_15.speed1}}km/h
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. </template>
  29. <script>
  30. import utils from '../../tools/shoyu-date/utils.filter.js';
  31. export default {
  32. data: function() {
  33. return {
  34. windowWidth:'',
  35. windowHeight:'',
  36. timeDayWidth:"",
  37. dateSize:'',
  38. timeWidth:'',
  39. timeHeight:'',
  40. timeSize:'',
  41. weatherSize:'',
  42. temperatureSize:'',
  43. weatherProphet8_15Width:'',
  44. weatherProphet8_15Height:'',
  45. dayWeatherIconTotalClassMarginLeft:'',
  46. dayWeatherIconTotalClassMarginRight:'',
  47. dayWeatherIconTotalClassMarginTop:'',
  48. winddirectionSize:'',
  49. speedSize:'',
  50. cardContaineHeight:'',
  51. timeLineHeight:'',
  52. weatherIconHeight:'',
  53. weatherProphetData_8_15: "",
  54. width: "",
  55. height: "",
  56. week: "",
  57. day: "",
  58. month:"",
  59. newDate: '',
  60. utils: utils,
  61. timestamp:"",
  62. dayWeatherIconTotalClass: "dayWeatherIconTotalClass",
  63. dayWeatherClassName: "",
  64. nightWeatherIconTotalClass: "nightWeatherIconTotalClass",
  65. nightWeatherClassName: "",
  66. classNameweatherIconBackgroundColor: "",
  67. weatherIconBackgroundColor: "",
  68. timeBackgroundColor: "",
  69. iconMarginTop: ""
  70. }
  71. },
  72. created:function(){
  73. this.windowWidth=uni.getSystemInfoSync().windowWidth;
  74. this.windowHeight=uni.getSystemInfoSync().windowHeight;
  75. if(this.windowWidth>=768){
  76. this.dateSize="24px";
  77. this.timeDayWidth="22%";
  78. this.timeWidth="15%";
  79. this.timeSize="20px";
  80. this.timeHeight="70px";
  81. this.weatherSize="20px";
  82. this.temperatureSize="20px";
  83. this.weatherProphet8_15Width="88%";
  84. this.weatherProphet8_15Height="140px";
  85. this.winddirectionSize="20px";
  86. this.speedSize="20px";
  87. this.cardContaineHeight="70px";
  88. this.timeLineHeight="70px";
  89. this.weatherIconHeight="70px";
  90. this.dayWeatherIconTotalClassMarginLeft="10px";
  91. this.dayWeatherIconTotalClassMarginTop="20px";
  92. this.dayWeatherIconTotalClassMarginRight="10px";
  93. }
  94. else{
  95. this.dateSize="14px";
  96. this.timeDayWidth="16%";
  97. this.timeWidth="22%";
  98. this.timeSize="10px";
  99. this.timeHeight="40px";
  100. this.weatherSize="10px";
  101. this.temperatureSize="10px";
  102. this.weatherProphet8_15Width="86%";
  103. this.weatherProphet8_15Height="100px";
  104. this.winddirectionSize="10px";
  105. this.speedSize="10px";
  106. this.cardContaineHeight="40px";
  107. this.timeLineHeight="40px";
  108. this.weatherIconHeight="40px";
  109. this.dayWeatherIconTotalClassMarginLeft="3px";
  110. this.dayWeatherIconTotalClassMarginTop="3px";
  111. this.dayWeatherIconTotalClassMarginRight="4px";
  112. }
  113. },
  114. methods: {
  115. getWeatherData: function(width, height, classNameweatherIconBackgroundColor, classNameDay, classNameNight,
  116. weatherProphetData_8_15) {
  117. this.width = width + "%";
  118. this.height = height + "px";
  119. this.iconMarginTop = (height - 31) / 2 + "px";
  120. this.weatherProphetData_8_15 = weatherProphetData_8_15;
  121. this.dayWeatherClassName = classNameDay;
  122. this.nightWeatherClassName = classNameNight;
  123. this.classNameweatherIconBackgroundColor = classNameweatherIconBackgroundColor;
  124. this.setTime();
  125. this.setBackgroundColor();
  126. },
  127. setTime: function() {
  128. let newWeek = new Date(this.weatherProphetData_8_15.recodedata).getDay();
  129. if (newWeek == 0) {
  130. this.week = "周日";
  131. }
  132. if (newWeek == 1) {
  133. this.week = "周一";
  134. }
  135. if (newWeek == 2) {
  136. this.week = "周二";
  137. }
  138. if (newWeek == 3) {
  139. this.week = "周三";
  140. }
  141. if (newWeek == 4) {
  142. this.week = "周四";
  143. }
  144. if (newWeek == 5) {
  145. this.week = "周五";
  146. }
  147. if (newWeek == 6) {
  148. this.week = "周六";
  149. }
  150. let newDay = new Date(this.weatherProphetData_8_15.recodedata).getDate();
  151. this.day = newDay + "日";
  152. this.timestamp = new Date(this.weatherProphetData_8_15.recodedata).getTime();
  153. this.month = this.utils.timeTodate('m',this.timestamp);
  154. },
  155. setBackgroundColor: function() {
  156. if (this.classNameweatherIconBackgroundColor == "firstGradeBlue") {
  157. this.timeBackgroundColor = "#2F5EB0";
  158. this.weatherIconBackgroundColor = "#597EC0";
  159. } else if (this.classNameweatherIconBackgroundColor == "fourGradeBlue") {
  160. this.timeBackgroundColor = "#60B9E3";
  161. this.weatherIconBackgroundColor = "#9ED2EC";
  162. } else if (this.classNameweatherIconBackgroundColor == "threeGradeBlue") {
  163. this.timeBackgroundColor = "#50A5F2";
  164. this.weatherIconBackgroundColor = "#73B7F5";
  165. } else if (this.classNameweatherIconBackgroundColor == "twoGradeBlue") {
  166. this.timeBackgroundColor = "#427CE8";
  167. this.weatherIconBackgroundColor = "#6896ED";
  168. }
  169. }
  170. }
  171. }
  172. </script>
  173. <style scoped="scoped">
  174. .date {
  175. margin-top: 10px;
  176. width: 100%;
  177. height: 25px;
  178. font-size: 14px;
  179. font-family: "microsoft yahei";
  180. color: white;
  181. }
  182. .weatherProphet8_15 {
  183. margin-left: 7%;
  184. width: 86%;
  185. float: left;
  186. }
  187. .cardContaine {
  188. line-height: 40px;
  189. height: 70px;
  190. margin-top: 2%;
  191. border-radius: 10px;
  192. background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#024F93), color-stop(1.5, #cccccc), to(#437193));
  193. background: rgba(0, 0, 0, 0.1);
  194. }
  195. .weatherAndTemperatureAndWinddirectionAndSpeedClass {
  196. width: 100%;
  197. height: 100%;
  198. }
  199. .time {
  200. width: 16%;
  201. height: 40px;
  202. line-height: 40px;
  203. text-align: center;
  204. font-size: 16px;
  205. font-family: "microsoft yahei";
  206. float: left;
  207. color: white;
  208. border-radius: 10px 0px 0px 10px;
  209. opacity:0.8
  210. }
  211. .weatherIcon {
  212. height: 40px;
  213. float: left;
  214. background: rgba(0, 0, 0, 0.1);
  215. opacity:0.8
  216. }
  217. .dayWeatherIconTotalClass {
  218. width: 32px;
  219. height: 31px;
  220. margin-left: 3px;
  221. margin-top: 3px;
  222. float: left;
  223. }
  224. .nightWeatherIconTotalClass {
  225. width: 31px;
  226. height: 31px;
  227. margin-top: 3px;
  228. margin-right: 4px;
  229. float: right;
  230. }
  231. .weather {
  232. width: 15%;
  233. height: 100%;
  234. float: left;
  235. text-align: center;
  236. color: white;
  237. font-family: "microsoft yahei";
  238. }
  239. .temperature {
  240. width: 14%;
  241. height: 100%;
  242. float: left;
  243. text-align: center;
  244. font-size: 10px;
  245. color: white;
  246. font-family: "microsoft yahei";
  247. }
  248. .temperature span {
  249. color: red;
  250. }
  251. .winddirection {
  252. width: 16%;
  253. height: 100%;
  254. float: left;
  255. text-align: center;
  256. color: white;
  257. font-family: "microsoft yahei";
  258. }
  259. .speed {
  260. width: 17%;
  261. height: 100%;
  262. float: left;
  263. color: white;
  264. text-align: center;
  265. font-family: "microsoft yahei";
  266. }
  267. /*white30第一行*/
  268. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_taiYang {
  269. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat 0px 2px;
  270. }
  271. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_taiYangYun {
  272. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -79px 2px;
  273. }
  274. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYun {
  275. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -160px 2px;
  276. }
  277. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_taiYangYunShui {
  278. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -239px 2px;
  279. }
  280. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_taiYangShanDianShui {
  281. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -318px 2px;
  282. }
  283. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_taiYangShanDianShuiShui {
  284. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -400px 2px;
  285. }
  286. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunShuiXue {
  287. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -480px 2px;
  288. }
  289. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunShui {
  290. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -560px 2px;
  291. }
  292. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunLiangShui {
  293. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -639px 2px;
  294. }
  295. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_sanHengGang {
  296. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -719px 2px;
  297. }
  298. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_liangDianLiangQuan {
  299. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -800px 2px;
  300. }
  301. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunShuiShui {
  302. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -880px 2px;
  303. }
  304. /*white30第二行*/
  305. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunSanShui {
  306. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat 0px -78px;
  307. }
  308. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunSiShui {
  309. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -79px -78px;
  310. }
  311. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunWuShui {
  312. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -160px -78px;
  313. }
  314. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunLiuShui {
  315. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -239px -78px;
  316. }
  317. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_taiYangYunXueXue {
  318. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -318px -78px;
  319. }
  320. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunXue {
  321. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -400px -78px;
  322. }
  323. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunXueXue {
  324. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -480px -78px;
  325. }
  326. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunSanXue {
  327. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -560px -78px;
  328. }
  329. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunSiXue {
  330. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -639px -78px;
  331. }
  332. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_sanHengGang {
  333. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -719px -78px;
  334. }
  335. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_sanDianSanQuan {
  336. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -800px -78px;
  337. }
  338. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunXueXue {
  339. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -880px -78px;
  340. }
  341. /* white30第三行*/
  342. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_sanHengGang {
  343. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat 0px -157px;
  344. }
  345. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_boLang {
  346. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -79px -157px;
  347. }
  348. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_sYouJianTou {
  349. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -160px -157px;
  350. }
  351. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunShuiShui {
  352. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -239px -157px;
  353. }
  354. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunSanShui {
  355. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -318px -157px;
  356. }
  357. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunSiShui {
  358. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -400px -157px;
  359. }
  360. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunWuShui {
  361. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -480px -157px;
  362. }
  363. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunLiuShui {
  364. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -560px -157px;
  365. }
  366. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunXueXue {
  367. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -639px -157px;
  368. }
  369. /* white30第四行*/
  370. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunSanXue {
  371. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat 0px -237px;
  372. }
  373. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunSiXue {
  374. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -79px -237px;
  375. }
  376. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_s {
  377. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -160px -237px;
  378. }
  379. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_sShangJianTou {
  380. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -239px -237px;
  381. }
  382. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_sYouJianTou {
  383. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -31p8x -237px;
  384. }
  385. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunShuiShui {
  386. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -400px -237px;
  387. }
  388. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunXueXue {
  389. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -480px -237px;
  390. }
  391. /*white30第五行*/
  392. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yueLiang {
  393. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat 0px -318px;
  394. }
  395. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yueLiangYun {
  396. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -79px -318px;
  397. }
  398. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYueLiangYun {
  399. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -160px -318px;
  400. }
  401. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yueLiangYunShui {
  402. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -239px -318px;
  403. }
  404. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunShanDianShui {
  405. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -318px -318px;
  406. }
  407. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yueShanDianShuiShui {
  408. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -400px -318px;
  409. }
  410. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunShuiXue {
  411. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -480px -318px;
  412. }
  413. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunShui {
  414. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -560px -318px;
  415. }
  416. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunShuiShui {
  417. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -639px -318px;
  418. }
  419. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yunYunShuiShui {
  420. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -880px -318px;
  421. }
  422. /* white30第六行*/
  423. .weatherTemperatureWindSpeedCardList_8_15_weatherTemperatureWindSpeedCard_8_15_white30_yueLiangYunXueXue {
  424. background: url(../../../static/picture/weatherTemperatureWindSpeedCard_8_15/white30.png) no-repeat -318px -396px;
  425. }
  426. </style>