2016-08-09 07:34:04 -04:00

Weather Underground Icons
======
2016-08-09 08:01:59 -04:00
These icons were created by the Graphic Designer [Ashley Jager ](http://www.ajager.com/#/weather-underground/ ). She released these icons in a beautiful [Adobe Illustrator ](https://dribbble.com/shots/1879422-Weather-Underground-Icons ) file. This project simply breaks that AI file up into web friendly icons that can be used in your projects.
2016-08-09 07:34:04 -04:00
2017-11-27 04:45:40 -05:00

2016-08-09 07:45:20 -04:00
2016-08-09 07:34:04 -04:00
Demo Website
---
[http://peter.build/weather-underground-icons/ ](http://peter.build/weather-underground-icons/ )
2016-11-11 02:55:41 -05:00
Example Application
2016-11-10 22:39:00 -05:00
---
2016-11-11 02:55:41 -05:00
Here is an [Example Application ](https://peter.build/wu/ ) that uses these icons. You can access the [Github Repo ](https://github.com/manifestinteractive/weather-underground-app ) for source code.
2016-11-10 22:59:10 -05:00
2016-08-09 07:34:04 -04:00
Usage Instructions
---
[Weather Underground ](https://www.wunderground.com/ ) has an [API ](https://www.wunderground.com/weather/api/d/docs ) where you can fetch data remotely. The API returns an `icon` parameter as part of their JSON response that you can use to load custom icons.
Image Usage Instructions
---
If you just want to use the image files directly, and not use the CSS file you can just copy over the images directly from the `dist/icons` folder. See the * Icon Key * below to see which icons will be used.
CSS Usage Instructions
---
If you wish to use the use the CSS version of this project, you just need to copy this `dist` folder into your project.
Then you can use the icon keys with a `wu-` prefix to load whichever icon you want:
```html
<i class="wu wu-white wu-64 wu-chanceflurries"></i>
```
All CSS Icons will default to using SVG files. However, you can use PNG sprites by adding a `no-svg` class to the parent element that contains the weather icons. `no-svg` classnames will be added to your HTML tag automatically if you are using [Modernizr ](https://modernizr.com/ ) and the browser does not support SVG.
### Icon Class Colors:
* `wu-black` icons with `black` lines
```html
<i class="wu wu-black wu-32 wu-chanceflurries"></i>
```

* `wu-white` icons with `white` lines
```html
<i class="wu wu-white wu-32 wu-chancerain"></i>
```

2017-11-27 04:45:40 -05:00
### Icon Class Day & Night:
* Default is to use Day Icons
```html
<i class="wu wu-black wu-32 wu-clear"></i>
```

* `wu-night` to use Night Icons
```html
<i class="wu wu-white wu-32 wu-clear wu-night"></i>
```

2016-08-09 07:34:04 -04:00
### Icon Class Sizes:
* `wu-16` 16x16px icons
```html
<i class="wu wu-black wu-16 wu-chancesnow"></i>
```

* `wu-32` 32x32px icons
```html
<i class="wu wu-black wu-32 wu-chancetstorms"></i>
```

* `wu-64` 64x64px icons
```html
<i class="wu wu-black wu-64 wu-clear"></i>
```

* `wu-128` 128x128px icons
```html
<i class="wu wu-black wu-128 wu-cloudy"></i>
```

* `wu-256` 256x256px icons
```html
<i class="wu wu-black wu-256 wu-flurries"></i>
```

2017-11-27 04:45:40 -05:00
Day Icon Key
2016-08-09 07:34:04 -04:00
---
Here are the `icon` options for each weather option:
ICON | KEY | DESCRIPTION
---- | --- | -----------
2016-08-09 07:38:49 -04:00
 | chanceflurries | Chance of Flurries
 | chancerain | Chance of Rain
 | chancesleet | Chance Freezing Rain
 | chancesnow | Chance of Snow
 | chancetstorms | Chance of Thunderstorms
 | clear | Clear
 | cloudy | Cloudy
 | flurries | Flurries
 | fog | Fog
 | hazy | Haze
 | mostlycloudy | Mostly Cloudy
 | mostlysunny | Mostly Sunny
 | partlycloudy | Partly Cloudy
 | partlysunny | Partly Sunny
 | rain | Rain
 | sleet | Freezing Rain
 | snow | Snow
 | sunny | Sunny
 | tstorms | Thunderstorms
 | unknown | Unknown
2016-08-09 07:34:04 -04:00
2017-11-27 04:45:40 -05:00
Night Icon Key
2016-08-09 07:34:04 -04:00
---
2017-11-27 04:45:40 -05:00
Here are the `icon` options for each weather option:
ICON | KEY | DESCRIPTION
---- | --- | -----------
 | chanceflurries | Chance of Flurries
 | chancerain | Chance of Rain
 | chancesleet | Chance Freezing Rain
 | chancesnow | Chance of Snow
 | chancetstorms | Chance of Thunderstorms
 | clear | Clear
 | cloudy | Cloudy
 | flurries | Flurries
 | fog | Fog
 | hazy | Haze
 | mostlycloudy | Mostly Cloudy
 | mostlysunny | Mostly Sunny
 | partlycloudy | Partly Cloudy
 | partlysunny | Partly Sunny
 | rain | Rain
 | sleet | Freezing Rain
 | snow | Snow
 | sunny | Sunny
 | tstorms | Thunderstorms
 | unknown | Unknown
Day Icon Preview
---




Night Icon Preview
---



2016-08-09 07:34:04 -04:00
2017-11-27 04:45:40 -05:00
