Top Banner
Responsive Web Design Desktop Mobile and iPad
12

Responsive web-design - shubelal

Oct 30, 2014

Download

Design

Shub

Responsive Web Design, RWD, Web Design, HTML5, CSS3
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Responsive web-design - shubelal

Responsive Web Design

Desktop Mobile and iPad

Page 2: Responsive web-design - shubelal

Responsive Web Design

– Shubelal kumar

Page 3: Responsive web-design - shubelal

− What is Responsive Web Design?

− Why Responsive Web Design?

− Fluid vs Responsive Web Design

− Media Queries

− Flexible images in responsive web design

− Old version of IE and Responsive web design

− POC

Topics

Responsive Web Design Topics cover

Page 4: Responsive web-design - shubelal

What is Responsive Web Design?

Media queries allow the page to use different CSS style rules based on characteristics of the device the site is being displayed on, most commonly the width of the browser.

Page 5: Responsive web-design - shubelal

− One Website, Many Devices

One of the most appealing aspects of responsive web design is that a responsive website can provide a great user-experience across many devices and screen sizes. This is an important characteristic, since it is impossible to anticipate all the devices and screen sizes searchers will use to access your site. A site that works well regardless of these variables will provide a better and more consistent user-experience than a separate mobile site that is designed for a specific device and screen size.

− Easier to Manage

Having a separate desktop and mobile site requires having separate code application. Managing one site and one Application is far easier than managing two sites or more. This is a key advantage a responsive website has over a separate mobile site.

− Recommended By Google

This is because responsive design sites have one URL and the same HTML, regardless of device, which makes it easier and more efficient for Google to crawl, index, and organize content. Contrast this with a separate mobile site which has a different URL and different HTML than its desktop counterpart, requiring Google to crawl and index multiple versions of the same site.

Why Responsive Web Design?

Page 6: Responsive web-design - shubelal

Fluid vs Responsive Web Design

Page 7: Responsive web-design - shubelal

Media Queries<meta name=”viewport” content=”width:device-width”>

Page 8: Responsive web-design - shubelal

.figure {float: right;margin-bottom: 0.5em;margin-left: 2.53164557%; /* 12px / 474px */width: 48.7341772%; /* 231px / 474px */

}

img {max-width: 100%;

}

http://www.alistapart.com/articles/fluid-images/

SIZING

Flexible images in responsive web design

Page 9: Responsive web-design - shubelal

img { max-width: 100%; }

<img src="smallRes.jpg” data-fullsrc="largeRes.jpg">

SIZING

Flexible images in responsive web design

Page 10: Responsive web-design - shubelal

http://code.google.com/p/css3-mediaqueries-js/

Old version of IE and Responsive web design

Page 11: Responsive web-design - shubelal

Responsive web design− http://www.alistapart.com/articles/responsive-webdesign/− http://net.tutsplus.com/tutorials/html-csstechniques/responsive-web-design-a-visual-guide/− http://mediaqueri.es/− http://webdesignerwall.com/

HTML5− http://www.html5rocks.com

Reference

Page 12: Responsive web-design - shubelal

Thank you