Customized Content for the Mobile Web

84
CUSTOMIZED CONTENT for the ORDER UP MOBILE WEB

description

Slides from my presentation at the 2011 @windycitygo conference

Transcript of Customized Content for the Mobile Web

Page 1: Customized Content for the Mobile Web

CUSTOMIZED CONTENTfor the

ORDER UP

MOBILE WEB

Page 2: Customized Content for the Mobile Web

CUSTOMIZED CONTENT +

RESPONSIVE DESIGN =

AWESOME MOBILE EXPERIENCE

Page 3: Customized Content for the Mobile Web

Don’t just build good sites.

BUILD AWESOMEEXPERIENCES.

Page 4: Customized Content for the Mobile Web

DESIGN BETTER

Page 5: Customized Content for the Mobile Web

How can my mobile site / appbe better?Q.

Page 6: Customized Content for the Mobile Web
Page 7: Customized Content for the Mobile Web

‣ The mobile web is growing 8 times faster than the desktop web grew in the AOL heydays

‣ Smart phone sales will pass PC sales in 2012

‣ AT&T data traffic has increased by almost 5,000% in 3 years, mostly due to the iPhone

‣ Mobile phones will overtake PCs as the most common web access devices worldwide by 2013.

‣ 600% growth in traffic to mobile websites in 2010.

‣ Facebook and Twitter access via mobile browser grows by triple digits in 2010.

‣ Average smartphone user visits up to 24 websites per day.

Source: http://www.lukew.com/resources/articles/MobileFirst_LukeW.pdf / http://www.zeldman.com/2011/03/30/a-day-apart-mobile-web-design-with-luke-wroblewski/

Page 8: Customized Content for the Mobile Web

SHOULD WE CARE?

Page 9: Customized Content for the Mobile Web
Page 10: Customized Content for the Mobile Web

What is my content?

Who am I trying to reach?

Q.

Q.

Page 11: Customized Content for the Mobile Web

Your Content Defines the DesignYOUR AUDIENCE DEFINES THE MEDIUM

Page 12: Customized Content for the Mobile Web

Does my content work in a mobile environment?

Does my audience use mobile?

Q.

Q.

Page 13: Customized Content for the Mobile Web

CUSTOMIZED CONTENT +

RESPONSIVE DESIGN =

AWESOME MOBILE EXPERIENCE

Page 14: Customized Content for the Mobile Web

WHAT’S ON THE MENU?1. Content Matters

2. Design for Mobile

3. Examples & Practical Application

Page 15: Customized Content for the Mobile Web

CONTENT1. Have a Content Strategy

2. Content is a Dish Best Served Personalized

3. Make it Easy on the User

Page 16: Customized Content for the Mobile Web

CONTENT1. Have a Content Strategy

a) Know your voice. Know your audience.

Page 17: Customized Content for the Mobile Web

CONTENT1. Have a Content Strategy

a) Know your voice. Know your audience.

b) Know the most important elements.

YOUbrand development / profitability

USERsatisfaction / happiness

Page 18: Customized Content for the Mobile Web

CONTENT1. Have a Content Strategy

a) Know your voice. Know your audience.

b) Know the most important elements.

c) Craft user stories.

Page 19: Customized Content for the Mobile Web
Page 20: Customized Content for the Mobile Web

CONTENT2. Content is a Dish Best Served Personalized

a) We don’t need more information. We need better filters.

Page 21: Customized Content for the Mobile Web

CONTENT2. Content is a Dish Best Served Personalized

a) We don’t need more information. We need better filters.

b) How can you personalize your content?- location- social demographics- registration information

Page 22: Customized Content for the Mobile Web
Page 23: Customized Content for the Mobile Web
Page 24: Customized Content for the Mobile Web
Page 25: Customized Content for the Mobile Web

CONTENT3. Make it Easy on the User

a) Perform user actions for them.

Page 26: Customized Content for the Mobile Web

CONTENT3. Make it Easy on the User

a) Perform user actions for them.

b) Get an ID

1024x768

320x480

Page 27: Customized Content for the Mobile Web

CONTENT3. Make it Easy on the User

a) Perform user actions for them.

b) Get an ID

c) Make the content the action point.

Page 28: Customized Content for the Mobile Web
Page 29: Customized Content for the Mobile Web
Page 30: Customized Content for the Mobile Web

CONTENT1. Have a Content Strategy

2. Content is a Dish Best Served Personalized

3. Make it Easy on the User

Page 31: Customized Content for the Mobile Web

CUSTOMIZED CONTENT +

RESPONSIVE DESIGN =

AWESOME MOBILE EXPERIENCE

Page 32: Customized Content for the Mobile Web

DESIGNProgressive Enhancement

Page 33: Customized Content for the Mobile Web

DESIGNProgressive Dehancement

Page 34: Customized Content for the Mobile Web

THE MOBILE EXPERIENCESHOULD BE A GREAT EXPERIENCE

Page 35: Customized Content for the Mobile Web

DESIGN1. Responsive Web Design

2. Separate Mobile Sites

3. Mobile First

Page 36: Customized Content for the Mobile Web

DESIGN1. Responsive Web Design

a) What is it?

Page 37: Customized Content for the Mobile Web
Page 38: Customized Content for the Mobile Web

DESIGN1. Responsive Web Design

a) What is it?

FLEXIBLE DESIGN

Page 39: Customized Content for the Mobile Web

DESIGN1. Responsive Web Design

a) What is it?

b) 3 Rules

Page 40: Customized Content for the Mobile Web

DESIGNEthan Marcotte’s 3 Rules

1. The site must be built with a flexible grid foundation.

http://www.alistapart.com/articles/responsive-web-design/

Page 41: Customized Content for the Mobile Web
Page 42: Customized Content for the Mobile Web

FLEXIBLEnot

FIXED

Page 43: Customized Content for the Mobile Web
Page 44: Customized Content for the Mobile Web
Page 45: Customized Content for the Mobile Web
Page 46: Customized Content for the Mobile Web

DESIGNFlexible Layouts

em

percentages

floats

font-size: 1.5em; /* 24px / 16px = 1.5em */

width: 65%;

float: left;

Page 47: Customized Content for the Mobile Web

DESIGNEthan Marcotte’s 3 Rules

1. The site must be built with a flexible grid foundation.

2. Images that are incorporated into the design must be flexible themselves.

Page 48: Customized Content for the Mobile Web
Page 49: Customized Content for the Mobile Web

img {max-width: 100%;

}

SOLUTION?

Page 50: Customized Content for the Mobile Web

img, object {max-width: 100%;

}

VIDEO

Page 51: Customized Content for the Mobile Web

img {max-width: 100%;}

#do-theevent {width:65%}

Page 52: Customized Content for the Mobile Web
Page 53: Customized Content for the Mobile Web

DESIGNEthan Marcotte’s 3 Rules

1. The site must be built with a flexible grid foundation.

2. Images that are incorporated into the design must be flexible themselves.

3. Different views must be enabled in different contexts via media queries

Page 54: Customized Content for the Mobile Web

<link rel="stylesheet" type="text/css" href="core.css" media="screen" />

<link rel="stylesheet" type="text/css" href="print.css" media="print" />

CSS MEDIA QUERIES

Page 55: Customized Content for the Mobile Web

<link rel="stylesheet" type="text/css" media="screen and (max-device-width: 480px)" href="iphone.css" />

<link rel="stylesheet" type="text/css" media="screen and (max-device-width: 1024px)" href="ipad.css" />

CSS MEDIA QUERIES

Page 56: Customized Content for the Mobile Web

WHAT?

- Clear Floats- Resize Text- Increase / Decrease Width & Height- Change Navigation

Page 57: Customized Content for the Mobile Web
Page 58: Customized Content for the Mobile Web
Page 59: Customized Content for the Mobile Web

<link rel="stylesheet" type="text/css" media="screen and (orientation: portrait)" href="ipad-portrait.css" />

<link rel="stylesheet" type="text/css" media="screen and (orientation: landscape)" href="ipad-landscape.css" />

iPAD?

Page 60: Customized Content for the Mobile Web

<link rel="stylesheet" type="text/css" media="only screen and (-webkit-min-device-pixel-ratio:2" href="iphone4.css" />

iPHONE 4?

Page 61: Customized Content for the Mobile Web
Page 62: Customized Content for the Mobile Web
Page 63: Customized Content for the Mobile Web

DESIGN1. Responsive Web Design

2. Separate Mobile Sites

Page 64: Customized Content for the Mobile Web

DESIGN2. Separate Mobile Sites

a) Sometimes RWD isn’t enough.

Page 65: Customized Content for the Mobile Web

NATIVE APPor

WEB APP?

Page 66: Customized Content for the Mobile Web

DESIGN2. Separate Mobile Sites

a) Sometimes RWD isn’t enough.

b) Feature shrink

Page 67: Customized Content for the Mobile Web
Page 68: Customized Content for the Mobile Web
Page 69: Customized Content for the Mobile Web

DESIGN2. Separate Mobile Sites

a) Sometimes RWD isn’t enough.

b) Feature shrink

c) Domain redirect

m.olivegarden.com

- server side- client side

Page 70: Customized Content for the Mobile Web
Page 71: Customized Content for the Mobile Web

DESIGN1. Responsive Web Design

2. Separate Mobile Sites

3. Mobile First

Page 72: Customized Content for the Mobile Web

DESIGN3. Mobile First

a) Luke Wroblewski (www.lukew.com)

Page 73: Customized Content for the Mobile Web

DESIGN3. Mobile First

a) Luke Wroblewski (www.lukew.com)

b) Simplify

Page 74: Customized Content for the Mobile Web
Page 75: Customized Content for the Mobile Web
Page 76: Customized Content for the Mobile Web

DESIGN3. Mobile First

a) Luke Wroblewski (www.lukew.com)

b) Simplify

c) Focus

Page 77: Customized Content for the Mobile Web
Page 78: Customized Content for the Mobile Web

DESIGN3. Mobile First

a) Luke Wroblewski (www.lukew.com)

b) Simplify

c) Focus

d) Think like a user

Page 79: Customized Content for the Mobile Web

FUTURE OF DESIGN?

Page 80: Customized Content for the Mobile Web
Page 81: Customized Content for the Mobile Web
Page 82: Customized Content for the Mobile Web

???

Page 83: Customized Content for the Mobile Web

CUSTOMIZED CONTENT +

RESPONSIVE DESIGN =

AWESOME MOBILE EXPERIENCE

Page 84: Customized Content for the Mobile Web

CHEERS!@jasonvanlue