demo.html 606 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script type='text/javascript' src='WeatherIcon.js'></script>
  5. </head>
  6. <!-- HEADER -->
  7. <body>
  8. <canvas id='icon1'></canvas>
  9. <canvas id='icon2'></canvas>
  10. <canvas id='icon3'></canvas>
  11. </body>
  12. </html>
  13. <script type='text/javascript'>
  14. WeatherIcon.add('icon1' , WeatherIcon.SUN , { mode:WeatherIcon.DAY , stroke:true , shadow:true , animated:true } );
  15. WeatherIcon.add('icon2' , WeatherIcon.LIGHTRAINSUN , { mode:WeatherIcon.NIGHT , stroke:true , shadow:true , animated:true } );
  16. WeatherIcon.add('icon3' , WeatherIcon.LIGHTRAINTHUNDERSUN ); // no parameters
  17. </script>