Responsive Web Design Sheri German, Instructor Montgomery College.

Slides:



Advertisements
Similar presentations
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 7 Key Concepts 1 Copyright © Terry Felke-Morris.
Advertisements

What is jQuery Mobile? How to use it? Doncho Minkov Telerik Corporation Technical Trainer.
Responsive Web Design (RWD) Building a single web site for the desktop, tablet and smartphone An Infopeople Webinar November 13, 2013 Jason Clark Head.
RESPONSIVE WEB DESIGN NYU Webmaster Meetup, October 3 rd, 2014.
Being Responsibly Responsive Jason
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 7 Key Concepts 1 Copyright © Terry Felke-Morris.
Chapter 8 More on Links, Layout, and Mobile Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Lloyd-Jamie Bennett – P Stylianos Michael – P
Responsive Wed Design : An Emerging Technology Archana Jain.
Developing Content for Mobile Devices Larry D. Lee Web Developer for K4Health.
Responsive Web Design Design websites so that they can adapt to different devices seamlessly. Image by Muhammed RafizeldiMuhammed Rafizeldi.
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).
CISC 474: Advanced Web Technologies HTML5 & CSS3, & Responsive Design.
LEARN THE QUICK AND EASY WAY! VISUAL QUICKSTART GUIDE HTML and CSS 8th Edition Chapter 12: Building Responsive Webpages.
Bones – HTML5 Wordpress Theme Development
TUTORIAL 8: Enhancing a Web Site with Advanced CSS
Getting Started with Adobe Dreamweaver CS6. Unit Objectives Define web design software Start Adobe Dreamweaver CS6 View the Dreamweaver workspace Work.
CIT 256 Mobile Web Development Dr. Beryl Hoffman.
Intro to RESPONSIVE DESIGN. Why? What?
Kathy E. Responsive Design and Twitter Bootstrap.
Lesson 15: Mobile Design and Layout Introduction to Adobe Dreamweaver CS6 Adobe Certified Associate: Web Communication using Adobe Dreamweaver CS6.
Chapter 8 More on Links, Layout, and Mobile Copyright © 2013 Terry Ann Morris, Ed.D revised by Bill Pegram, 9/24/
WDV 331 Dreamweaver Applications Designing Websites for Mobile Devices Dreamweaver CS6 Chapter 11.
DEVELOPING FOR MOBILE Jackie Calapristi. AGENDA  Why you should go mobile  Mobile Design Options  Responsive Design  Tips & Tools to Help You Build.
San Diego 2014 SharePoint Saturday San Diego November 15, 2014 UCSD Extension SharePoint Saturday San Diego November 15, 2014 UCSD Extension.
COMP 135 Web Site Design Intermediate Week 8. Responsive Web Design Responsive Design Adaptive Design.
Week 8 – Part 3 More on Links, Layout, and Mobile Key Concepts 1.
Copyright 2012 Adobe Systems Incorporated. All rights reserved. ® Copyright 2010 Adobe Systems Incorporated. All rights reserved. ® Copyright 2012 Adobe.
Developer TECH REFRESH 15 Junho 2015 #pttechrefres h Web Going Foward.
Making iServices Subscriber More Mobile Friendly `
Crazy New CSS Tools MIS 424 MIS 424 Professor Sandvig Professor Sandvig.
+ Responsive Design Communication Strategy for Mobile, Desktop Los Alamos National Laboratory Ask a question at #interlab.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 7 Key Concepts 1 Copyright © Terry Felke-Morris.
Responsive Design Design that Adapts to Different Devices SoftUni Team Technical Trainers Software University
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.
Positioning Objects with CSS and Tables
 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.
Copyright © 2013 MyGraphicsLab / Pearson Education DREAMWEAVER INTERFACE MYGRAPHICSLAB: ADOBE DREAMWEAVER CS6.
Basic Elements of Responsive Web Design Jason Bengtson, MLIS, AHIP Emerging Technologies/R&D Librarian UNM Health Sciences Library and Informatics Center.
Fundamentals of Web DevelopmentRandy Connolly and Ricardo Hoar Textbook to be published by Pearson Ed in early Bootstrap.
NM290 Mobile Web Design Responsive Web Design Progressive Enhancement Adaptive Web Design Resources for color palettes Create a document for your color.
Less – Design That is More… BY SPEC INDIA. Less – Design  Adaptive Cross Platform CSS grid system  Responsive & Mobile First Projects  Uses Standards-based.
Getting Started with Responsive Web Design By Brian Rinaldi.
How HTML responsiveness translates to PDF
Dreamweaver – Setting up a Site and Page Layouts
HTML5 Level II Session V Chapter 8 - How to Use Responsive Web Design (RWD)
Front-End Framework for Responsive Web Sites
Responsive Design and Twitter Bootstrap
Responsive Web Design (RWD)
Responsive Web Pages.
Introduction to Bootstrap Bootstrap සදහා හැදින්වීම
© 2016, Mike Murach & Associates, Inc.
RESPONSIVE WEB DESIGN.
CS3220 Web and Internet Programming Introduction to Bootstrap
IS1500: Introduction to Web Development
Responsive Design in WordPress
Responsive Design.
Responsive Web Design (RWD)
Responsive Web Design (RWD)
Session VI Chapter 8 - How to Use Responsive Web Design (RWD)
Chapter 8 - How to Use Responsive Web Design (RWD)
Responsive Grid Layout with Bootstrap
Responsive Web Design (RWD)
WEB DESIGN FOR MULTIPLE SCREENS
CS3220 Web and Internet Programming Introduction to Bootstrap
Web Client Side Technologies Raneem Qaddoura
17 RESPONSIVE WEB DESIGN.
Presentation transcript:

Responsive Web Design Sheri German, Instructor Montgomery College

Responsive Web Design (RWD) Coined by Ethan Marcotte through his awareness of what was taking place in the discipline of architecture. "Responsive architecture" – such as flexible walls bending as more people enter a room Responsive web design adapts to the device design ($9 for eBook) design

RWD in a Nutshell CSS3 Media Queries Flexible images and media Grid system that keeps its proportions no matter the window viewing width

What is a CSS3 Media Query? Place a style sheet in context of a set of conditions Expand on simple CSS media such print style sheets and screen The most commonly used media feature is width. Others include color, orientation (portrait and landscape) and resolution. You can find a list of media features at

Creating CSS3 Media screen and (max-width: 480px) {.sidebar1 { float: none; } } NOTE: You can also create external style sheets for specific media and link or import them. Best practices currently suggest that using directive limits the number of http requests – a good thing for mobile!

Note: CSS3 MQ Breakpoints In Dreamweaver the visual CS3 Media Query interface sets the breakpoints for devices widths Current best practices suggest that the breakpoints be content driven rather than device driven

How to Create Flexible Images? A simple solution: img, object, embed, video { max-width: 100%;} /* IE 6 does not support max-width so default to width 100% */.ie6 img { width:100%;}

The RWD Formula for Proportional Grids Not just fluid pages, but layouts in proportional grids The formula: Target / Context = Result Example: Comp of 960px with a sidebar of 330px 330 (the target) / 960 (the context) = (the result) Move the decimal to the left two places: % is the flexible width of the sidebar

Visual RWD: Fluid Grid Layouts Dreamweaver CS6 introduced the Fluid Grid Layout feature, a system for designing responsive websites. Fluid Grid Layout contains phone, tablet, and desktop layouts and typography presets, all based on a single fluid grid. This feature helps you create flexible, fluid grid layouts for pages using a column grid. You design the layouts visually, and Dreamweaver displays them in Live View. Dreamweaver also generates the source code for the layouts using CSS3 and HTML5. The Fluid Grid Layouts have matured in Dreamweaver CC.

The Fluid Grid Layout Framework Frameworks give you starting points based on best practices Often include templates, css documents, and scripts They go from basic to elaborate Adobe Fluid Grid Layouts are lightweight and basic Based on "Responsive Web Design" by Ethan Marcotte and the Golden Grid System by Joni Korpi

FGL Dependent Files Boilerplate.css starts you off with some best practice normalization of CSSproperties and values Responsive.js a polyfill script that enables CSS3 Media Query support in browsers that don’t natively support it grid-layout-dreamweaver.html includes an overview of the Fluid Grid Layout framework grid-layout-dreamweaver.html DEMO OF THE FLUID GRID LAYOUT: See instructions in folder for this session

Where Do We Go From Here? Dreamweaver’s Fluid Grid Layout is a relatively simple framework There are many robust and feature filled RWD frameworks You can develop sites with these frameworks from within Dreamweaver

Other Responsive Resources Twitter Bootstrap framework for responsive sites Reveal.js for responsive presentations Trunity for online digital textbooks WordPress Twentyeleven, Twentytwelve, and Twentythirteen for HTML5 responsive templates Edge Reflow for responsive prototypes – create your own breakpoints

Twitter Bootstrap in Dw CC download Bootstrap Customize A 12-column responsive grid, dozens of components, JavaScript plugins, typography, form controls, and a web-based Customizer Free Extensionhttp:// e-bootstraphttp:// e-bootstrap

Reveal.js for Responsive HTML5 Presentations At Github Demo Graphical online interface for mobile or desktop

Trunity Online Learning HTML5 pages An App for phones and tablets Interlink books in the system for interconnected information