HTML5 Level II Session V Chapter 8 - How to Use Responsive Web Design (RWD) www.profburnett.com.

Slides:



Advertisements
Similar presentations
15 LAYOUT Controlling the position of elements Creating site layouts Designing for different sized screens.
Advertisements

ITI 133: HTML5 Desktop and Mobile Level I
Media Queries Jeffery Davis CIT media is used to define different style rules for different media types and devices. Media queries.
Responsive Web Design Sheri German, Instructor Montgomery College.
RESPONSIVE DESIGN Sources: Kadlec, T. (2012). Implementing responsive design. Berkeley, California: New Riders Publishing. MarcotteMarcotte, E. (2010).
RESPONSIVE DESIGN Sources: Kadlec, T. (2012). Implementing responsive design. Berkeley, California: New Riders Publishing. MarcotteMarcotte, E. (2010).
LEARN THE QUICK AND EASY WAY! VISUAL QUICKSTART GUIDE HTML and CSS 8th Edition Chapter 12: Building Responsive Webpages.
TUTORIAL 8: Enhancing a Web Site with Advanced CSS
Intro to RESPONSIVE DESIGN. Why? What?
Creating A Simple Web Page. Step 1- Open Dreamweaver & Create A New Page (File New) and blank.
COMP 135 Web Site Design Intermediate Week 8. Responsive Web Design Responsive Design Adaptive Design.
Unit 5 - Cascading Style Sheets (CSS) XML - Level I Basic.
INFO1300 LAB7 OCT.11TH RESPONSIVE DESIGN. WHAT IS RESPONSIVE WEB DESIGN A mix of flexible grids and layouts, images and an intelligent use of CSS media.
 An HTML, CSS, Javascript framework you can use as a basis for creating web sites  Uses CSS settings, fundamental HTML elements styled and enhanced.
Adobe Dreamweaver CC: The Professional Portfolio Project 8: BLVD Fluid Grid Site Working with fluid grids Creating CSS3 transitions.
Responsive Web Design (RWD) MIS 3502, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 2/11/2016.
CONCEPTS FOR FLUID LAYOUT Web Page Layout. Essential Questions What challenges do mobile devices present to Web designers? What are the basic concepts.
Working with Cascading Style Sheets
Web Development & Design Foundations with HTML5
Responsive Web Design (RWD)
Concepts for fluid layout
Css Units: REM, VH & VW Adrian Horsham.
Web Development & Design Foundations with HTML5
CS 0134 (term 2181) Jarrett Billingsley
RESPONSIVE WEB DESIGN.
ITI 163: Web, Mobile, and Social Media Design Introduction
HTML5 Level II Session II
CSS part 2 Outro.
ITI 133 HTML5 Desktop and Mobile Level I
Web Responsive Design.
Session I Chapter 10 - How to Work with Tables
ITI 133 HTML5 Desktop and Mobile Level I
HTML5 Level I Session III
HTML5 Level I Session I Chapter 19 - How to Deploy a Web Site on a Web Server
Course Review HTML5 Level II Course Review
Responsive Web Design (RWD)
HTML5 Level II Session III
Course Review HTML5 Level II Course Review
HTML5 Level I Session II Chapter 3 - How to Use HTML to Structure a Web Page
HTML5 Session III Chapter 5 - How to Use the CSS Box Model for Spacing, Borders, and Backgrounds Chapter 6 - How to use CSS for page.
HTML5 Level I Session III
HTML5 Level I Session III
Session I Chapter 18 - How to Design a Web Site
CMP Creating Your Personal and Small Business Web Sites
Responsive Web Design (RWD)
HTML5 Level I Session I Chapter 1 - Introduction to Web Development
Course Review ITI HTML5 Level II Course Review
HTML Level II (CyberAdvantage)
HTML – Organizing Page Content
Session VI Chapter 8 - How to Use Responsive Web Design (RWD)
HTML Level II (CyberAdvantage)
Session I – Responsive Web Design (RWD) Overview 8/31/2015
Chapter 8 - How to Use Responsive Web Design (RWD)
Responsive Web Design (RWD)
ITI 239 HTML5 Desktop and Mobile Level I
Course Review HTML5 Level II Course Review
Course Review HTML5 Level II Course Review
HTML5 Course Review Master a Skill / Learn for Life.
ITI 163: Web, Mobile, and Social Media Design Introduction
Web Page Layout Imran Rashid CTO at ManiWeber Technologies.
ITI 134: HTML5 Desktop and Mobile Level II
Master a Skill / Learn for Life
Web Development & Design Foundations with HTML5
Concepts for fluid layout
Session IV Chapter 15 - How Work with Fonts and Printing
ITI 133: HTML5 Desktop and Mobile Level I
Course Review HTML5 Level I Course Review
CSS3 Session III Chapter 16 - How to Use CSS3 Transitions, Transforms, Animation and Filters Master a Skill / Learn.
17 RESPONSIVE WEB DESIGN.
Presentation transcript:

HTML5 Level II Session V Chapter 8 - How to Use Responsive Web Design (RWD) www.profburnett.com

Class Outline Introduction to Responsive Web Design (RWD) Fluid Design CSS3 Media Queries 3/4/2014 Copyright © Carl M. Burnett

Responsive Web Design (RWD) 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. 8/31/2015 Copyright © Carl M. Burnett

Flexible Layouts Relative Viewport Lengths vw - Viewports width vh - Viewports height vmin - Minimum of the viewport’s height and width vmax - Maximum of the viewport’s height and width 8/31/2015 Copyright © Carl M. Burnett

Flexible Grid CSS HTML .container { width: 538px; } section, aside { margin: 10px; section { float: left; width: 340px; float: right; width: 158px; <div class="container"> <section>...</section> <aside>...</aside> </div> 8/31/2015 Copyright © Carl M. Burnett

Flexible Grid CSS .container { width: 538px; } section, aside { margin: 10px; section { float: left; width: 340px; float: right; width: 158px; section, aside { margin: 1.858736059%; /* 10px ÷ 538px = .018587361 */ } section { float: left; width: 63.197026%; /* 340px ÷ 538px = .63197026 */ float: right; width: 29.3680297%; /* 158px ÷ 538px = .293680297 */ 8/31/2015 Copyright © Carl M. Burnett

Media Queries Initializing Media Queries Logical Operators in Media Queries Media Features in Media Queries Ref: http://learn.shayhowe.com/advanced-html-css/responsive-web-design/#media-queries 8/31/2015 Copyright © Carl M. Burnett

Mobile First Mobile First Demo Ref: http://learn.shayhowe.com/advanced-html-css/responsive-web-design/#mobile-first 8/31/2015 Copyright © Carl M. Burnett

Viewport Viewport Height & Width Viewport Scale Viewport Resolution Combining Viewport Values Ref: http://learn.shayhowe.com/advanced-html-css/responsive-web-design/#viewport 8/31/2015 Copyright © Carl M. Burnett

Flexible Media Flexible Media Demo Flexible Embedded Media Flexible Embedded Media Demo Ref: http://learn.shayhowe.com/advanced-html-css/responsive-web-design/#flexible-media 8/31/2015 Copyright © Carl M. Burnett

Student Exercise 1 Complete Exercise 8-1 on page 315 using Dreamweaver. Upload your HTML pages and CSS files to the live site to preview. 3/4/2014 Copyright © Carl M. Burnett

That’s All Folks! Class Review Introduction to Responsive Web Design (RWD) Fluid Design CSS3 Media Queries That’s All Folks! 3/4/2014 Copyright © Carl M. Burnett