+ All Categories
Home > Documents > Easy Way Responsive Web Design Technology

Easy Way Responsive Web Design Technology

Date post: 22-Jul-2016
Category:
Upload: polyinfosoft-india-pvtltd
View: 216 times
Download: 3 times
Share this document with a friend
Description:
With the reference of this PPT we are going to introduce about how to create Responsive Web Design with the reference of our presentation.
15
nexgenfmpl.com 311, Somdutt Chambers – I, Bhikaji Cama Place, New Delhi – 110029
Transcript
Page 1: Easy Way Responsive Web Design Technology

nexgenfmpl.com311, Somdutt Chambers – I, Bhikaji Cama Place,

New Delhi – 110029

Page 2: Easy Way Responsive Web Design Technology

What is Responsive Web Design?

Responsive Web Design is a technology by which you can minimize page scrolling, paining and resizing. If you want to be good responsive web designer then you can adjust it on the basis of mobile device and various sorts of screen resolution.

Page 3: Easy Way Responsive Web Design Technology
Page 4: Easy Way Responsive Web Design Technology

Fonts

Ems Percentages Rems

The best way to implement a responsive font size is to use:

Is relative to parent's font size, eg. 2em = 28px if parent element's font-size is 14px.

percentages are resizable units for font size, and their CSS declarations can be inherited

is relative to the html element's font-size.

Typography is one of the most important aspects of responsive web design

Page 5: Easy Way Responsive Web Design Technology

img { max-width: 100%; height: auto; }

Fluid Images One way around this is to size images in relative units, rather than absolute pixel dimensions.

The most common relative solution is to set the max-width at the image at 100%and the data-fullsrc attribute

Page 6: Easy Way Responsive Web Design Technology

Fluid Grids

Regardless of what the device or screen size is, components in fluid designs are going to flow and adapt to the user environment.

Page 7: Easy Way Responsive Web Design Technology

Media Queries

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

Target specific screen sizes with Different styles

You can change styles depending on :

Height and width of the browser

Screen resolution

Orientation of the device

Page 8: Easy Way Responsive Web Design Technology

In a fluid website layout, also referred to as a liquid layout, the majority of the components inside have percentage widths, and thus adjust to the user’s screen resolution

Fixed-width layouts  Liquid layouts 

A fixed website layout has a wrapper that is a fixed width, and the components inside it have either percentage widths or fixed widths.

Page 9: Easy Way Responsive Web Design Technology

Elastic layouts  Hybrid layouts 

There are hybrid layouts, which combine the characteristics of two or more of the layouts discussed

 It works by sizing all elements with em‘s.

Page 10: Easy Way Responsive Web Design Technology

The advantages of grid layouts are numerous :• Gives order, originality, and harmony to the presentation of content;

• Allows users to predict where to find the information they need

• Makes it easier to add new content without having it looking disjointed or marginalized.

Custom Grid Layouts

Page 11: Easy Way Responsive Web Design Technology

<div id="wrapper">  <div id="header">Header</div>  <div id="content">Content</div>  <div id="sidebar">Sidebar</div>  <div id="footer">Footer</div></div>

Code Example:

Page 12: Easy Way Responsive Web Design Technology

Sencha.io Src?

Sencha.io Src helps you dynamically resize images for

the ever increasing number of mobile

screen sizes.

Page 13: Easy Way Responsive Web Design Technology

Here are three JavaScript solutions that can help us serve responsive websites to older browsers lacking CSS3 support: 

JavaScript Solutions

Respond.js Modernizr Adaptive.960.js

Page 14: Easy Way Responsive Web Design Technology

• 311, Somdutt Chambers – I, Bhikaji Cama Place, New Delhi – 110029

• Phone: +91 9971 955 204• E-Mail Address:

[email protected]• Web Site:

www.nexgenfmpl.com

Contact Us

Page 15: Easy Way Responsive Web Design Technology

Thank you


Recommended