http://www.iciba.com/interaction
http://www.iciba.com/slide
人机交互
用户 -> 计算机
计算机 -> 用户
以 鼠标、键盘、触控屏为主
实现方式
交互方式
能用 CSS 的时候,不要用 JavaScript
JSBin
作业:CSS-2-properties.txt
请在学习 CSS 3 之前,弄清哪些属性属于 CSS 2,并摘抄下来。
参考 http://www.w3school.com.cn/cssref/index.asp
会有 CSS 4 吗?
本课只介绍简版,非常简
参考
理解CSS3 transform中的Matrix(矩阵)
渐进增强 & 优雅降级
http://js.jirengu.com/rud/5/edit
厂商前缀
自动加前缀 https://autoprefixer.github.io/
-webkit-transform: translateY(40px); -ms-transform: translateY(40px); transform: translateY(40px);
By 方方