Your browser doesn't support the features required by impress.js, so you are presented with a simplified version of this presentation.

For the best experience please use the latest Chrome, Safari or Firefox browser. Upcoming version 10 of Internet Explorer should also handle it.

Short introduction to
Mobile First Responsive Web Design

Bernard Lange
@gustaff_weldon

Device landscape

Mobile First

Responsive Web Design

Image showing site adapted to different resolutions

Responsive Layouts

Problems

Responsive Images

images adapting to container width

img { max-width: 100%; }

small images as default, replaced with JS

<img src="mobile-image.jpg"
     data-full-src="desktop-image.jpg">

Problems:

Solutions discussed

<picture alt="angry pirate">
   <source src=hires.png media="min-width:800px">
   <source src=midres.png media="network-speed:3g">
   <source src=lores.png>
   <!-- fallback for browsers without support -->
   <img src=midres.png alt="angry pirate">
</picture>
RWD and MF

Tools

Takeaways

Questions?

Thank you

Bernard Lange
@gustaff_weldon

Use a spacebar or arrow keys to navigate