Skip to content

Commit b9d4336

Browse files
committed
add html5 and css3
1 parent 48a16af commit b9d4336

File tree

2 files changed

+126
-0
lines changed

2 files changed

+126
-0
lines changed

content/html5-and-css3.md

+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# HTML 5 & CSS 3
2+
3+
### 赵文博
4+
5+
---
6+
7+
## whoami
8+
9+
* **赵文博**
10+
* 奇舞团前端工程师
11+
* 负责 360 商业产品前端
12+
<p style="font-size:120%;margin-top:0.5em">
13+
<a href="https://github.com/webzhao" target="_blank" title="Github"><i class="fa fa-github"></i></a>&nbsp;
14+
<a href="http://www.flickr.com/photos/53827079@N06/" target="_blank" title="Flickr"><i class="fa-flickr"></i></a>&nbsp;
15+
<a href="https://twitter.com/webzhao" target="_blank" title="Twitter"><i class="fa-twitter"></i></a>&nbsp;
16+
<a href="http://cn.linkedin.com/pub/wenbo-zhao/29/7b1/514" target="_blank" title="Linkedin"><i class="fa-linkedin"></i></a>&nbsp;
17+
</p>
18+
19+
---
20+
21+
### HTML 5 设计思想
22+
23+
* 兼容已有内容
24+
* 避免不必要的复杂性
25+
* 解决现实的问题
26+
* 优雅降级
27+
* 尊重事实标准
28+
* 用户 》开发者 》浏览器厂商 》标准制定者 》理论完美
29+
30+
---
31+
32+
## HTML 5
33+
34+
<style>
35+
.reveal table.html5 {
36+
margin: 0 auto;
37+
}
38+
.html5 img {
39+
width: 3em;
40+
}
41+
table.html5 td {
42+
text-align: center;
43+
padding: 1em;
44+
}
45+
</style>
46+
<table class="html5">
47+
<tr>
48+
<td><img src="img/html5/semantics.svg?1"><br>语义化标签</td>
49+
<td><img src="img/html5/integration.svg?1"><br>性能和集成</td>
50+
<td><img src="img/html5/connectivity.svg?1"><br>连通性</td>
51+
<td><img src="img/html5/offline.svg?1"><br>离线与存储</td>
52+
</tr>
53+
<tr>
54+
<td><img src="img/html5/device.svg?1"><br>设备访问</td>
55+
<td><img src="img/html5/multimedia.svg?1"><br>多媒体</td>
56+
<td><img src="img/html5/css3.svg?1"><br>CSS3样式</td>
57+
<td><img src="img/html5/3d.svg?1"><br>图形与3D效果</td>
58+
</tr>
59+
</table>
60+
61+
---
62+
63+
### 语义化
64+
65+
* 结构
66+
* section、article、nav、header、footer、aside、main
67+
* 媒体
68+
* video、audio
69+
* 表单
70+
* [新增表单验证和表单类型](http://html5doctor.com/demos/forms/forms-example.html)
71+
* 其它
72+
* figure、figcaption、data、time、progress
73+
74+
---
75+
76+
77+
78+
---
79+
80+
81+
---
82+
83+
# 跨页面通信
84+
85+
86+
87+
---
88+
89+
* [Web Workers](http://html5demos.com/worker)
90+
91+
---
92+
93+
* [拖放](http://html5demos.com/dnd-upload)
94+
* XMLHttpRequest Level 2
95+
* [History API](http://html5demos.com/history/second)
96+
* requestAnimationFrame
97+
* [全屏 API](http://davidwalsh.name/demo/fullscreen.php)
98+
99+
100+
101+
---
102+
103+
## 开始使用 HTML 5 和 CSS 3
104+
105+
---
106+
107+
### 兼容性
108+
109+
* [Can I Use]()
110+
* [MDN]()
111+
112+
---
113+
114+
### 优雅降级
115+
116+
---
117+
118+
### polyfill
119+
120+

index.html

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ <h1>Wenbo's Slides</h1>
1616
</header>
1717
<section>
1818
<ul class="decks">
19+
<li class="deck">
20+
<a href="slides.html?file=html5-and-css3">
21+
<h3 class="title">HTML 5 与 CSS 3</h3>
22+
<p class="subtitle">2016-01-12</p>
23+
</a>
24+
</li>
1925
<li class="deck">
2026
<a href="slides.html?file=front-end-learning">
2127
<h3 class="title">前端学习指南</h3>

0 commit comments

Comments
 (0)