info.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>天气预报</title>
  5. <style>
  6. .weather_bg {
  7. background-color: #0d68bc;
  8. height: 150px;
  9. color: #fff;
  10. font-size: 12px;
  11. line-height: 1em;
  12. text-align: center;
  13. padding: 10px;
  14. }
  15. .weather_bg label {
  16. line-height: 1.5em;
  17. text-align: center;
  18. text-shadow: 1px 1px 1px #555;
  19. background: #afdb00;
  20. width: 100px;
  21. display: inline-block;
  22. margin-left: 10px;
  23. }
  24. .weather_bg .temp {
  25. font-size: 32px;
  26. margin-top: 5px;
  27. padding-left: 14px;
  28. }
  29. .weather_bg sup {
  30. font-size: 0.5em;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="weather_bg">
  36. <div>
  37. <p>
  38. {{city}}({{WD}}{{WS}})
  39. </p>
  40. <p class="temp">{{temp}}<sup>℃</sup></p>
  41. <p>
  42. 气压<label>{{AP}}</label>
  43. </p>
  44. <p>
  45. 湿度<label>{{SD}}</label>
  46. </p>
  47. </div>
  48. </div>
  49. </body>
  50. </html>