weather.component.html 486 B

123456789101112131415
  1. <div class="weather-container">
  2. <div class="weather-icon">
  3. <img
  4. [ngClass]="iconClass"
  5. src="https://assets.msn.cn/weathermapdata/1/static/weather/Icons/taskbar_v10/Condition_Card/MostlyCloudyDayV2.svg"
  6. alt="Mostly Cloudy Weather"
  7. (mouseenter)="onMouseEnter()"
  8. (mouseleave)="onMouseLeave()"
  9. />
  10. </div>
  11. <div class="weather-info">
  12. <span class="temperature">{{ temp }}°C</span>
  13. <span class="position">{{ position }}</span>
  14. </div>
  15. </div>