Review content and goals
Prioritize based on the users behavior
The following behaviors illustrate how people are typically using their mobile device and why:
Prioritize based on the users behavior
The following behaviors illustrate how people are typically using their mobile device and why:
The flickr app has 4 major actions
1 column works best!
An approach to web design and development where websites and applications respond to the width of the screen size and the device the site or app is being viewed on
CSS rule that allows you to set "breakpoints" to adjust the design to the width of the screen and the type of device that the site/app is being viewed on
@media
@media (max-width: 750px) {
}
When developing a responsive design, you also need to add a viewport meta tag to your <head> tag. This tells the browser on how to control the scaling.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
iPhone 4 (portrait): 320px w x 480px h
iPhone 5 (portrait): 320px x 568
iPhone6 (portrait): 375px x 667px
Samsung Galaxy S5: 360px x 640px
LG G4: 360px x 640px
LG Nexus 5: 360px 640px
of a few popular devices
Templates vs Frameworks
Template: Set of HTML/ CSS and functionality rules to serve as a starting point to help create an application or site. Difficult to customize
Framework: a collection of tools and/or libraries used to help create an application or site. Frameworks can have templates
Bootstrap and Foundation Similarities:
Foundation