weather-station.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
  6. <title>新农宝盒</title>
  7. <meta name="Keywords" content="悦游全球旅行网,悦游杂志" />
  8. <meta name="Description" content="" />
  9. <link rel="stylesheet" href="css/reset-mobile.css">
  10. <link href="css/index.css" rel="stylesheet" type="text/css" />
  11. <script src="js/zepto.min.js"></script>
  12. </head>
  13. <body class="gray">
  14. <header>
  15. 气象站 <a href="#" class="ico-back"></a>
  16. </header>
  17. <section class="wrapper">
  18. <section class="video">
  19. <img src="images/video.jpg" width="100%" alt="">
  20. <a href="#" class="btn-video"></a>
  21. </section>
  22. <section class="card">
  23. <dl>
  24. <dt><i class="ico-net"></i><span>联网信号</span></dt>
  25. <dd><span class="color-info">10</span><em>%</em></dd>
  26. <dd class="color-error"><span>断开</span></dd>
  27. </dl>
  28. <dl>
  29. <dt><i class="ico-electric"></i><span>电池电量</span></dt>
  30. <dd><span class="color-info">65</span><em>%</em></dd>
  31. <dd class="color-success"><span>充电中...</span></dd>
  32. </dl>
  33. </section>
  34. <section class="card border">
  35. <dl>
  36. <dt><i class="ico-temperature"></i><span>温度</span></dt>
  37. <dd><span class="color-info">28</span><em>°C</em></dd>
  38. <dd>
  39. <a href="#" class="ico-setting-gray"></a><b class="hline"></b><a href="#" class="ico-grid"></a>
  40. <p>2016.8.29 12:50</p>
  41. </dd>
  42. </dl>
  43. <dl>
  44. <dt><i class="ico-humidity"></i><span>湿度</span></dt>
  45. <dd><span class="color-info">65</span><em>%RH</em></dd>
  46. <dd>
  47. <a href="#" class="color-info">正常</a><b class="hline"></b><a href="#" class="ico-grid"></a>
  48. <p>2016.8.29 12:50</p>
  49. </dd>
  50. </dl>
  51. <dl>
  52. <dt><i class="ico-light"></i><span>光照</span></dt>
  53. <dd><span class="color-info">65</span><em>%RH</em></dd>
  54. <dd>
  55. <a href="#" class="ico-down"></a><b class="hline"></b><a href="#" class="ico-grid"></a>
  56. <p>2016.8.29 12:50</p>
  57. </dd>
  58. </dl>
  59. <dl>
  60. <dt><i class="ico-wind"></i><span>风速</span></dt>
  61. <dd><span class="color-info">10</span><em>m/s</em><p>三级风</p></dd>
  62. <dd>
  63. <a href="#" class="ico-setting-gray"></a><b class="hline"></b><a href="#" class="ico-grid"></a>
  64. <p>2016.8.29 12:50</p>
  65. </dd>
  66. </dl>
  67. <dl>
  68. <dt><i class="ico-wind-direction"></i><span>风向</span></dt>
  69. <dd><span class="color-info">270</span><em>m/s</em><p>西北偏南</p></dd>
  70. <dd>
  71. <a href="#" class="ico-grid"></a>
  72. <p>2016.8.29 12:50</p>
  73. </dd>
  74. </dl>
  75. <dl>
  76. <dt><i class="ico-rain"></i><span>雨量</span></dt>
  77. <dd><span class="color-info">3</span><em>mm</em><p>有雨</p></dd>
  78. <dd>
  79. <a href="#" class="ico-down"></a><b class="hline"></b><a href="#" class="ico-grid"></a>
  80. <p>2016.8.29 12:50</p>
  81. </dd>
  82. </dl>
  83. <dl>
  84. <dt><i class="ico-pm25"></i><span>PM2.5</span></dt>
  85. <dd><span class="color-info">270</span></dd>
  86. <dd>
  87. <a href="#" class="ico-up"></a><b class="hline"></b><a href="#" class="ico-grid"></a>
  88. <p>2016.8.29 12:50</p>
  89. </dd>
  90. </dl>
  91. </section>
  92. </section>
  93. <section class="layer">
  94. <article>
  95. <h3>温度限值设置<span>单位:摄氏度</span></h3>
  96. <form action="">
  97. <p><input type="text" class="form-item" placeholder="最大上限"></p>
  98. <p><input type="text" class="form-item" placeholder="最低下限"></p>
  99. <input type="button" class="form-item" value="确认">
  100. </form>
  101. </article>
  102. </section>
  103. <script src="js/common.js"></script>
  104. <script>
  105. $('.ico-setting-gray').click(function(){
  106. $('.layer').show();
  107. })
  108. </script>
  109. </body>
  110. </html>