Advanced Styling with Responsive Design

此笔记为Coursera同名课程笔记。

Week1

什么是响应式设计?

响应式设计:

  • It is designing your sites with multiple screen sizes/resolutions in mind.
  • Sites should "work" under any platform, any browser size, any orientation.The user should have the power.

需要考虑的概念 Concepts to consider

  • Media queries - decting the viewport size 检测
  • Flexible grid-based layout for the relative sizeing
  • Flexible images

这里是一个响应式设计网站的范例。

测试网站是否响应式的方法:

  1. 调整浏览器大小。
  2. 使用ami.responsivedesign.is帮助判断。
  3. 使用 Chrome/Firefox Dev Tools。

让网页适应页面大小的三种选项

  1. Responsive Web Design(RWD) - fluid measurements, flexible grids, and varying CSS rules.同一套代码,通过检测meta name=viewport实现。能优化搜索引擎分数。
  2. Adaptive Design - returns one of multiple versions of a page based on the type of device.根据不同设备返回不同代码。
  3. Seperate Mobile Site - a seperate page URL for the mobile site.

Why RWD? 响应式页面设计的优点?

  • Easier to share your data with a single URL. 容易分享。
  • Easier to search engine to index the page. 搜索引擎优化。
  • Fewer files = less maintenance. 容易维护。

延伸阅读:Fluid Measurements 动态单位(em、rem、px...)

  1. Responsive Web Design: Using Fonts Responsibly by Annarita Tranfici
  2. Web Design Basics: Rem vs. Em vs. PX - Sizing Elements in CSS by Matthew Davis
  3. What's the Deal with Em and Rem?
  4. Font Size Idea: px at the Root, rem for Components, em for Text Elements by Chris Coyier
  5. 综合指南: 何时使用 Em 与 Rem

Fluid Measurements

  • Your content should fit the size contraints of the viewport. 要有普适性,不能只适应特定的大小。
  • Horizontal scrolling is bad. 避免水平滚动。

Absolute measurements

  • px

    • 1px 代表显示屏上的一个像素
  • mm, cm, in
    • 用于打印
  • pt
    • 1 point = 1/72 of an inch.
  • pc
    • 1 pica = 12 points.

Relative measurements

  • %

    • percentage values that are always relative to another value.
  • em
    • font size of the element.
  • rem
    • font size of the root element.
  • vw
    • 1% of viewport width.
  • vh
    • 1% of viewport height.

1em = 12pt = 16px = 100%

1in = 2.54cm = 25.4mm = 72pt = 12pc

Week 2

Media Queries

  • Media queries allow the style to depend upon the meida properties.
  • CSS 2.1 used media types.(Just "screen" and "print" option).

CSS3

  • CSS 3 increased the capabilities. Style can depend on many features.

    • width, height, orientation, resolution, ...
  • Boolean operators can also be applied to increase power.(and/or)

The two query components

  1. A media type(screen, print, all, ...)

  2. The actual query of a media feature and "trigger" size(width, height, orientation, resolution, ...)

    example:

    screen and (max-device-width: 480px) and (resolution: 163dpi)

How to implement media queries

  • Use the @import rule

    @import url(smallstyle.css) screen and (min-width:600px)
  • Put media query directly in the style sheet(Mostly used)

    @media screen and (min-width:500px) {...}
  • Include query in the link (not good)

Wireframes

  • Coding after your design.
  • Wireframe 可以看作布局的草稿,只关注内容和布局
  • Mobile view is the most important view in web design. 移动视图最重要!
  • 总的来说就是要提前想好你的页面要怎么根据浏览器大小变化,先设计再动手!
  • 一些 Wireframe 的规则

breakpoints

  • Size that define a change in your site layout or content.
  • Used to provide best possible experience for users based on device infomation.

MOBILE FIRST !!

  • You shouldn't see breakpoints for small screens. The default styling already convers that.
  • You should have min-width instead of max-width
  • 默认设计时,要按照移动视图来进行设计,其次再考虑更大窗口下的展现方式。

Media Queries - Part 2

Step 1: Grab infomation

The meta viewport tag tells mobile browser's viewport how to behave.

<meta name = "viewport" content="width=device-width, initial-scale=1">

BAD practice: 加入maximum-scale=1等限制用户自主选择样式的属性。

Step 2: Fluid layout

BEST practice: use fluid measurement like percentage/em/rem.

paddings and margins affected by width, not height.

Step 3: Media queries

Fluid layout that is triggered by certain sizes.

ORDERING your rules: default rule always on the top.

Week 3: Framework

Bootstrap 3.0 benefits

  • 12-column grid system

    • helps with spacing issues
    • built-in responsive design
  • Common jQuery functionalities
    • Accordion, Dorp-down menus, Carousel
  • Familiar "look and feel"
    • Many sites use Bootstrap
    • Makes your forms look "legitimate"

Bootstrap Breakpoints

  • Bootstrap hardcodes the breakpoints for different views.

    • 部分浏览器不支持小于 300px 的 breakpoint,Bootstrap 支持最小的断点为 320px;
    • xs-: minimum width 480px (For most phone)
    • sm-: minimum width 768px (Small device and tablets, and smaller window size browser)
    • md-: minimum width 992px (Beyond most of phone and tablet)
    • lg-: minimum width 1200px
  • It it possible to change default value, modify on your need. 默认值可修改,根据需求来
  • 不需要知道具体的像素值,只需记住字母对应的含义即可。

Bootstrap Layout System

  • Bootstrap layout is based on 12-column grid.

    • 3 column = 25%
    • 6 column = 50%
    • ...
  • Every grid consists of:
    • A container

      • A row

        • One or more column classes
<div class="container">
<div class="row">
<div class="col-xx-yy"> <!-- xx: viewport size: xs, sm, md, lg -->
<!-- yy: number of columns: 0..12 -->
<!-- These are often combined: --> <img src="pic.jpg" class="col-xs-12 col-sm-6 col-md-3 col-lg-2">

如果元素是块级元素,无需指定 12 column 的属性。

<div class=“col-xs-12 col-md-3”>Yellow Part</div>

等价于:

<div class=“col-md-3”>Yellow Part</div>

Positioning classes

  • On viewports md and up, there is an option for push and pull class.

    • col-XX-push-YY => move YY columns to the

      right
    • col-XX-pull-YY => move YY columns to the

      left

Responsive utility classes

  • hidden-XX content will only be hidden on the XX screen size
  • visible-XX content will only be visible on the XX screen size
  • sr-only content is hidden on all devices except screen readers

Responsive web design 学习笔记的更多相关文章

  1. (转)自适应网页设计(或称为响应式web设计)(Responsive Web Design)

    随着3G的普及,越来越多的人使用手机上网. 移动设备正超过桌面设备,成为访问互联网的最常见终端.于是,网页设计师不得不面对一个难题:如何才能在不同大小的设备上呈现同样的网页? 手机的屏幕比较小,宽度通 ...

  2. 自适应网页设计(Responsive Web Design)

    引用:http://www.ruanyifeng.com/blog/2012/05/responsive_web_design.html 随着3G的普及,越来越多的人使用手机上网. 移动设备正超过桌面 ...

  3. 【前端】移动端Web开发学习笔记【2】 & flex布局

    上一篇:移动端Web开发学习笔记[1] meta标签 width设置的是layout viewport 的宽度 initial-scale=1.0 自带 width=device-width 最佳实践 ...

  4. 【前端】移动端Web开发学习笔记【1】

    下一篇:移动端Web开发学习笔记[2] Part 1: 两篇重要的博客 有两篇翻译过来的博客值得一看: 两个viewport的故事(第一部分) 两个viewport的故事(第二部分) 这两篇博客探讨了 ...

  5. 【前端】Web前端学习笔记【2】

    [2016.02.22至今]的学习笔记. 相关博客: Web前端学习笔记[1] 1. this在 JavaScript 中主要有以下五种使用场景 在全局函数调用中,this 绑定全局对象,浏览器环境全 ...

  6. 【前端】Web前端学习笔记【1】

    ... [2015.12.02-2016.02.22]期间的学习笔记. 相关博客: Web前端学习笔记[2] 1. JS中的: (1)continue 语句 (带有或不带标签引用)只能用在循环中. ( ...

  7. ASP.NET MVC Web API 学习笔记---第一个Web API程序

    http://www.cnblogs.com/qingyuan/archive/2012/10/12/2720824.html GetListAll /api/Contact GetListBySex ...

  8. 响应式Web设计(Responsive Web design)

    中文名 响应式Web设计 提出时间 2010年5月 英    文 Responsive Web design 解    释 一个网站能够兼容多个终端 目    的 解决移动互联网的浏览 优    点 ...

  9. Web前端学习笔记(001)

    ....编号    ........类别    ............条目  ................明细....................时间 一.Web前端学习笔记         ...

随机推荐

  1. 学习Linux的准备

    学习方式: 主动学习: 动手实践:40% 讲给别人:70% 被动学习: 听课:10% 笔记:20% 写博客的要求: 写博客是对某一方面知识的总结,输出:是知识的书面化的表达方式.写博客不同于写笔记,笔 ...

  2. 分布式特点理解-Zookeeper准备

    分布式环境特点 分布性 地域,区域,机房,服务器不同导致分布性 并发性 程序运行中,并发性操作很常见,比如同一个分布式系统中的多个节点,同时访问一个共享资源(数据库,分布式存储) 无序性 进程之间的消 ...

  3. HashMap,LinkedHashMap,TreeMap的有序性

    HashMap 实际上是一个链表的数组.HashMap 的一个功能缺点是它的无序性,被存入到 HashMap 中的元素,在遍历 HashMap 时,其输出是无序的.如果希望元素保持输入的顺序,可以使用 ...

  4. 给DataFrame的列命名或重命名

    1.读取文件的时候重命名 names = new_col,可以在读取文件的时候,给出新列名. new_col = ['new1', 'new2',... , 'newn'] pd.read_csv(' ...

  5. ProGuard的作用、使用及bug分析(转载)

    ProGuard的作用.使用及bug分析 本文主要ProGuard的作用.使用及bug分析.1.ProGuard作用ProGuard通过删除无用代码,将代码中类名.方法名.属性名用晦涩难懂的名称重命名 ...

  6. Here is a test page for my new blog in cnblogs

    Tell me if I can use Fomula like LaTeX $$\sum\limits_{i = 1}^{n}a_i$$

  7. mysql报错:Cause: java.sql.SQLException: sql injection violation, syntax error: ERROR. pos 39, line 2, column 24, token CLOSE

    因为close是mysql关键字 -- ::, DEBUG (BaseJdbcLogger.java:)- ==> Preparing: , -- ::, INFO (XmlBeanDefini ...

  8. .Net笔试考题

    .NET试题 1.列举ASP.NET页面之间传递值的几种方式 2.请写出 override 与重载的区别 3.请编程实现一个冒泡排序算法 4.什么是装箱和拆箱 5.ADO.net中常用的对象有哪些?分 ...

  9. 【UOJ #46】 【清华集训2014】玄学

    题目描述 巨酱有 n 副耳机,他把它们摆成了一列,并且由 1 到n依次编号.每个耳机有一个玄学值,反映了各自的一些不可名状的独特性能.玄学值都是 0 到 m-1 间的整数.在外界的作用下(包括但不限于 ...

  10. Spark-PySpark sql各种内置函数

    _functions = { 'lit': 'Creates a :class:`Column` of literal value.', 'col': 'Returns a :class:`Colum ...