hooray icon fonts!

38
ICON FONTS ICON FONTS ICON FONTS HOORAY HOORAY HOORAY james williamson | lynda.com

Upload: jameswillweb

Post on 17-Aug-2014

1.300 views

Category:

Devices & Hardware


4 download

DESCRIPTION

Icon fonts are becoming an increasingly popular way to delivery iconography for websites. They reduce HTTP requests, provide a resolution-independent way to scale icons, and are often smaller than sprites. In this session we'll explore what icon fonts are, the pros and cons of using them, best practices for creating them, and deployment options for mobile devices.

TRANSCRIPT

Page 1: Hooray Icon Fonts!

ICON FONTSICON FONTSICON FONTSHOORAYHOORAYHOORAY

james williamson | lynda.com

Page 2: Hooray Icon Fonts!

Hello.

I’m James Williamson

@jameswillweb on the Twitter

| senior author

Page 3: Hooray Icon Fonts!

Let’s talk about icons

“Icons are little miracle workers. They circumvent language obstacles, give

concise warnings and directions, convey our moods and show which buttons to press.”

-John Hicks

Page 4: Hooray Icon Fonts!

Icons give us a shared language

Page 5: Hooray Icon Fonts!

This is extremely valuable in the mobile/responsive context

Page 6: Hooray Icon Fonts!

As screen real estate shrinks, icons give us a way to clearly communicate ideas,

actions, and instructions to our users with a minimal footprint.

Page 7: Hooray Icon Fonts!

How do we display icons?

ImagesHigh overhead, painful to maintain, resolution dependent

CSS SpritesLower overhead, difficult to create, resolution dependent

SVGScalable, style-able, decent support, higher overhead

We need more responsive solutions

Page 8: Hooray Icon Fonts!

A more responsive solution

We need icons that scale independently of resolution

We need icons that can be styled through CSS

We need icons that are small in file size

We need icons that can be downloaded in a single file to reduce server requests

We need ICON FONTS!

Page 9: Hooray Icon Fonts!

ICON FONTS!HOORAY

Page 10: Hooray Icon Fonts!

(Actually, this is not exactly a new idea)

Page 11: Hooray Icon Fonts!

Using fonts for icons in our UI

Pros:ScalableSingle file requestStyles with CSSWell-supported

Cons:MonochromaticTricky to makeAccessibility issuesCan be tricky to control

Page 12: Hooray Icon Fonts!

Icon font options

Go grab one of the dozens of high-quality, open-source icon fonts available online

Purchase a commercial icon font

Use an icon-font hosting service like Pictos

Build your own

Page 13: Hooray Icon Fonts!

Using existing icon fonts

Plenty of high-quality, open-source icons available

Many include @font-face kits and code samples

You may not be able to find every icon you need

Dependent upon the icon’s style

Must be careful to avoid bloat

Page 14: Hooray Icon Fonts!

Building your own

Services like the Noun Project, Icomoon & Pictos allow you to build custom icon fonts

Some allow you to choose the icons you want while others allow you to upload your own artwork

For greater control, you can use programs like Illustrator, Inkscape, Glyphs, FontForge, and FontLab to build your own icon font

Page 15: Hooray Icon Fonts!

Using icon fonts

There are multiple ways to display icon fonts based on coding standards, font construction, and accessibility considerations

Despite the differences in implementations, best practices are starting to emerge regarding icon font syntax...

Page 16: Hooray Icon Fonts!

Demo

Basic icon font usage

Page 17: Hooray Icon Fonts!

Icons mapped to Basic Latin

HTML<p><span  class=”icon”>q</span>  Brad  Frost  loves  QR  Codes!</p>

CSS*.icon  {        font-­‐family:  “Your  Icon  Font”;}

Result: Brad Frost loves QR Codes!

* @font-face is assumed

Page 18: Hooray Icon Fonts!

Icons mapped to Basic Latin

Pros:

Easy to use

No complex CSS

Single rule drives all icons

Cons:

Accessibility

Confuses the robots

Falls back to a letter that has no business being there

Page 19: Hooray Icon Fonts!

Demo

Using generated content

Page 20: Hooray Icon Fonts!

Unicode mapping & generated content

HTML<p  class=”icon-­‐heart”>I  love  icons!</p>

CSS*.icon-­‐heart:before  {        font-­‐family:  “Your  Icon  Font”;        content:  “\2661”;        display:  inline-­‐block;}

Result: I love icons!

* @font-face is assumed

Page 21: Hooray Icon Fonts!

Pros:

Leaves content untouched

You can use common unicode values for symbols as fallbacks

PUA unicode values will fallback to an empty glyph

Cons:

Unicode mapping can be hard to remember

Unless you create your own, unicode mapping might not meet your requirements

Making it class-based bloats CSS

Unicode mapping & generated content

Page 22: Hooray Icon Fonts!

Demo

Using the data-icon attribute

Page 23: Hooray Icon Fonts!

Using the data-icon attribute

HTML<p  data-­‐icon=”&#x2661;”>I  love  icons!</p>

CSS**[data-­‐icon]:before  {        font-­‐family:  “Your  Icon  Font”;        content:  attr(data-­‐icon);        display:  inline-­‐block;}

Result: I love icons!

* @font-face is assumed

Page 24: Hooray Icon Fonts!

Pros:

Nice and semantic

No need to use extra classes

Cons:

Not as human readable

Using the data-icon attribute

Page 25: Hooray Icon Fonts!

...hold up though!

Using generated content with data-icon still leaves us with accessibility issues.

Generated content will still be read by screen readers.

Which could be awkward.

Page 26: Hooray Icon Fonts!

Demo

The still even-more awesome way to accessibly use generated content & data-icon

Page 27: Hooray Icon Fonts!

Using the aria-hidden attribute

HTML<p><span  data-­‐icon=”&#xE001;”  aria-­‐hidden=”true”>  </span>I  love  icons!</p>

CSS**[data-­‐icon]:before  {        font-­‐family:  “Your  Icon  Font”;        content:  attr(data-­‐icon);        display:  inline-­‐block;        speak:  none;}

Result: I love icons!

* @font-face is assumed

Page 28: Hooray Icon Fonts!

Pros:

Semantically clean

Well supported

Creates purely visual content

Cons:

Requires extra markup

Using the aria-hidden attribute

Page 29: Hooray Icon Fonts!

A quick word about PUA

Unicode includes several Private Use values that are not reserved for specific languages or characters

The Basic Multilingual Plane includes 6,400 code points and is widely used for icon font encoding

PUA encoded glyphs will fallback to an empty glyph if the font fails or if @font-face is not supported

BMP encoding runs from E000 - F8FF

Apple places their logo at F8FF

Page 30: Hooray Icon Fonts!

Using ligatures for icon fonts

HTML<p><span  class=”icon”>twitter</span>  Tweet  that!</p>

CSS*.icon  {        font-­‐family:  “ligature  icons”;        text-­‐rendering:    optimizeLegibility;}

Result: Tweet that!

* @font-face is assumed

Page 31: Hooray Icon Fonts!

Pros:

Easy to use

Falls back to meaningful text

If the font is mapped correctly you can combine techniques

Cons:

Must use a ligature-mapped icon font

Extra text in content can be weird

Ligature support is uneven

Using ligatures for icon fonts

Page 32: Hooray Icon Fonts!

Tips for displaying icon fonts

Normalize them font-weight, font-style, font-variant, text-transform...

Using inline-block gives you more control also ensures ‘click-ability’

Although scalable, not every size displays great try to scale along the font’s design grid

Base64 encode your fonts avoids cross-domain Firefox issues

Page 33: Hooray Icon Fonts!

Tips for displaying icon fonts

Use text-rendering: optimizeLegibility for ligatures also enables kerning pairs

Use -webkit-font-smoothing: antialiased makes icons crisper in webkit-based browsers

Use vertical-align to control baselines on inline icons not all icon fonts will align to the baseline the same

Page 34: Hooray Icon Fonts!

Taking icon fonts further

You can style font icons using any text styling property

You can animate and transform them as well This sometimes gets a little wonky, provide fallbacks

Page 35: Hooray Icon Fonts!

Do icons have to be monochrome?

No! You can create multi colored icons using multiple glyphs

Glyphs can be overlapped using absolute positioning

You can also use zero-width characters This requires the font to be produced with zero-width characters

Page 36: Hooray Icon Fonts!

Icon Fonts are not right for every project.Before using icon fonts or an icon font

service, make sure you have a strategy in place that matches your code aesthetics.

Page 37: Hooray Icon Fonts!

Icon Font ResourcesChris Coyier’s Big List of Icon Fonts

http://css-tricks.com/flat-icons-icon-fonts/

Interactive Unicode Tablehttp://unicode-table.com

The Noun Projecthttp://thenounproject.com/

Github: Building Octiconshttps://github.com/blog/1135-the-making-of-octicons

Filament Group’s Icon Font Compatibility Tablehttps://docs.google.com/spreadsheet/ccc?key=0Ag5_yGvxpINRdHFYeUJPNnZMWUZKR2ItMEpRTXZPdUE#gid=0

Want these slides?http://www.slideshare.net/jameswillweb

Page 38: Hooray Icon Fonts!

THANK YOUjames williamson | lynda.com

[email protected]@jameswillweb on the Twitter

www.simpleprimate.com

Want these slides? http://www.slideshare.net/jameswillweb