Skip to content

Commit 95b9250

Browse files
committed
update html5 training
1 parent 5d9457e commit 95b9250

22 files changed

+888
-58
lines changed

content/.DS_Store

-8 KB
Binary file not shown.

content/html5/animation.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## 动画效果
22

3+
---
4+
35

46
### transition(过渡)
57

@@ -120,3 +122,5 @@ transition: width 1s linear, height 1s linear 1s;
120122

121123
* translate3d(10px, 0, 0)
122124
* rotateX() 或 rotateY();
125+
126+
---

content/html5/case-study.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
## 实践
22

3-
* MEAN开发
3+
---
4+
5+
### MEAN开发
6+
7+
* Mongodb
8+
* Express
49
* Node
510
* Angular
11+
12+
---
13+
14+
[移动端Demo](http://skyweaver213.github.io/slide/widget/slide1/slide.html)

content/html5/css3.md

+66
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* 圆角
77
* 阴影
88
* 背景缩放
9+
* Flexbox布局
10+
* 媒体查询和响应式设计
911

1012
---
1113

@@ -68,3 +70,67 @@
6870

6971
<iframe height='836' scrolling='no' src='http://codepen.io/herihehe/embed/aLwGt/?height=836&theme-id=0&default-tab=result' frameborder='no' allowtransparency='true' allowfullscreen='true' style='width: 100%;'>See the Pen <a href='http://codepen.io/herihehe/pen/aLwGt/'>CSS Background Size</a> by Heri Setiawan (<a href='http://codepen.io/herihehe'>@herihehe</a>) on <a href='http://codepen.io'>CodePen</a>.
7072
</iframe>
73+
74+
---
75+
76+
### Flexbox可控制容器内的子元素:
77+
78+
* 水平或垂直排成一行
79+
* 控制子元素对齐方式
80+
* 控制子元素的宽度/高度
81+
* 控制子元素显示顺序
82+
* 控制子元素是否折行
83+
84+
---
85+
86+
Flexbox是W3C布局方面标准中的*终极武器*
87+
88+
---
89+
90+
![axis](img/css3/axis.png)
91+
92+
---
93+
94+
[Flexbox Demo](http://dabblet.com/gist/95e5b65622aeae4d031d)
95+
96+
---
97+
98+
### 响应式设计是什么?
99+
100+
一种能在不同屏幕大小的设备上都能提供优秀的浏览体验的网页设计方案
101+
102+
---
103+
104+
105+
### media query
106+
107+
针对不同的屏幕,应用不同的样式
108+
109+
```markup
110+
<link rel="stylesheet" href="m.css"
111+
media="screen and (max-width: 480px)">
112+
```
113+
114+
```css
115+
@media screen and (min-width: 480px) {
116+
.selector { … }
117+
}
118+
```
119+
120+
---
121+
122+
### 可以查询的media
123+
124+
* width
125+
* height
126+
* device-width
127+
* device-height
128+
* device-pixel-ratio
129+
* orientation
130+
131+
---
132+
133+
134+
@state: green
135+
136+
<p style="font-size:6em"><i class="fa fa-comments"></i></p>

content/html5/file-api.md

+56-24
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,68 @@
1010

1111
---
1212

13-
### 获取文件对象
13+
### 通过文件选择框获取文件对象
1414

15-
```markup
16-
<input type="file" id="files" name="files[]" multiple />
17-
<output id="list"></output>
18-
<script>
19-
function handleFileSelect(evt) {
20-
var files = evt.target.files;
15+
* 监听`<input type="file">``change`事件
16+
* 通过 input.files 属性获取文件对象列表
2117

22-
var output = [];
23-
for (var i = 0, f; f = files[i]; i++) {
24-
output.push('<li><strong>', escape(f.name), '</strong> (', f.type || 'n/a', ') - ',
25-
f.size, ' bytes, last modified: ',
26-
f.lastModifiedDate.toLocaleDateString(), '</li>');
27-
}
28-
document.getElementById('list').innerHTML = '<ul>' + output.join('') + '</ul>';
29-
}
30-
document.getElementById('files').addEventListener('change', handleFileSelect, false);
31-
</script>
32-
```
18+
---
19+
20+
### [Demo](http://jsbin.com/jarice/edit?js,output)
21+
22+
---
23+
24+
### 通过拖拽获取文件对象
25+
26+
* 选定一个可拖放的区域
27+
* 给这个元素绑定dragenter、dragover事件并组织默认行为
28+
* 绑定drop事件,通过 e.dataTransfer.files 获取文件对象
29+
30+
---
31+
32+
### [Demo](http://jsbin.com/yogamu/4/edit?html,js,output)
33+
34+
---
35+
36+
### 读取文件内容
37+
38+
* fileReader.readAsBinaryString(Blob|File)
39+
* fileReader.readAsText(Blob|File, opt_encoding)
40+
* fileReader.readAsDataURL(Blob|File)
41+
* fileReader.readAsArrayBuffer(Blob|File)
42+
43+
---
44+
45+
### Blob
46+
47+
* Binary large object
48+
* 二进制文件容器
49+
* 可以修改
50+
51+
---
52+
53+
### [Data URL Demo](http://jsbin.com/zosine/edit?html,js,console,output)
54+
55+
---
56+
57+
### [Read Text Demo](http://jsbin.com/zecabi/2/edit?html,js,output)
3358

3459
---
3560

36-
### 读取文件
61+
### 文件上传
3762

38-
* FileReader.readAsBinaryString(Blob|File)
39-
* FileReader.readAsText(Blob|File, opt_encoding)
40-
* FileReader.readAsDataURL(Blob|File)
41-
* FileReader.readAsArrayBuffer(Blob|File)
63+
* 使用FormData和XMLHttpRequest
64+
* 不使用FormData(上传前进行图片压缩)
65+
* fileReader.readAsBinaryString()
66+
* xmlHttpRequest.sendAsBinary()
4267

4368
---
4469

45-
### 示例:图片处理
70+
### [示例:图片处理](http://makeitsolutions.com/labs/jic/)
71+
72+
---
73+
74+
75+
@state: green
76+
77+
<p style="font-size:6em"><i class="fa fa-comments"></i></p>

content/html5/getting-started.md

-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@
5555
* 练习环境
5656
* [Chrome](http://www.google.com/chrome/)或[Firefox](https://www.mozilla.org/)浏览器
5757
* [Atom](https://atom.io/)或[Sublime Text](http://www.sublimetext.com/)编辑器
58-
* 在线提交
59-
* 地址:http://jsbin.com
60-
* //TODO
6158

6259
---
6360

content/html5/html5-vs-native.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
## HTML5 vs Native
2+
3+
---
4+
5+
<style>
6+
.reveal table {font-size: 0.8em}
7+
.reveal table td,.reveal table th {padding: 0.5em}
8+
.reveal table td:first-child {white-space:nowrap}
9+
</style>
10+
11+
| | HTML5 | 原生应用 |
12+
|--------------|----------------------|----------------------|
13+
| 更新 | 只需要服务器部署新版本,比较方便 | 需要发布新版客户端,需要商店审核,新版覆盖需要较长时间 |
14+
| 动画 | 可以实现基本的动画效果,在低配置机器上不流畅 | 动画效果可以很炫,很流畅 |
15+
| 加载速度 | 较慢。尤其是首次,可以充分利用缓存机制做优化 | 较快 |
16+
| 开发成本 | 低。Web标准技术已经非常适合开发应用 | 高,人员、时间 |
17+
| 访问硬件能力 | 仅限部分API | 所有设备权限 |
18+
| 适用场景 | 内容内应用 | 重交互类应用 |
19+
20+
---
21+
22+
### Hybrid 应用
23+
24+
* 在原生应用中嵌入 HTML5 页面
25+
* WebView
26+
27+
---
28+
29+
### 已有框架
30+
31+
* PhoneGap
32+
* Apache Cordova
33+
* Appcelerator Titanium
34+
* AppCan
35+
36+
---
37+
38+
### 客户端和 HTML5 通信
39+
40+
* 客户端调用HTML5接口
41+
* javascript: 伪协议
42+
* HTML5中调用客户端功能
43+
* Android: 截获页面上的prompt, console等调用
44+
* Android: addJavascriptInterface
45+
* iOS: 自定义协议拦截

content/html5/web-fonts.md

+69-13
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,33 @@
1-
## Web font
1+
## Web fonts
22

33
---
44

5-
### Web Font
5+
### Web Fonts
66

7-
* CSS中引入自定义字体
7+
* 在页面上使用服务器字体
8+
* 满足设计师对特殊字体使用的需求
9+
* 与使用图片展示特殊字体的方案对比
10+
* 文件更小
11+
* 易于维护
812

913
---
1014

15+
<link href='https://fonts.googleapis.com/css?family=Black+Ops+One|Frijole|Rock+Salt' rel='stylesheet' type='text/css'>
16+
17+
<p style="font-family:'Black Ops One';font-size: 2em">Grumpy wizards make toxic brew for the evil Queen and Jack.</p>
18+
19+
---
20+
21+
<p style="font-family:Frijole;font-size: 2em">Grumpy wizards make toxic brew for the evil Queen and Jack.</p>
22+
23+
---
24+
25+
<p style="font-family:'Rock Salt';font-size: 2em">Grumpy wizards make toxic brew for the evil Queen and Jack.</p>
26+
27+
---
28+
29+
### 引入Web Font
30+
1131
```css
1232
@font-face {
1333
font-family: 'fancyFont';
@@ -27,20 +47,29 @@
2747
### 中文字体
2848

2949
* 中文字体太大,十几到几十兆
30-
* 版权意识
3150

3251
---
3352

3453
### 字体裁切工具
3554

36-
* fontmin
37-
* fontspider
55+
* [fontmin](http://ecomfe.github.io/fontmin/)
56+
* [fontspider](http://font-spider.org/)
57+
58+
---
59+
60+
### Demo
61+
62+
---
63+
64+
### UTF-8 字符
65+
66+
<p style="font-size:2em">&#9829; &#10026; &#8734; &#9993; &#9888; &#9992; &#10047; &#9775;</p>
3867

3968
---
4069

4170
### 图标字体
4271

43-
* 将页面上的图标做成字体
72+
* 将图标做成字体在页面上使用
4473
* 优点
4574
* 随意调整大小、颜色、阴影、透明度等
4675
* 尺寸小
@@ -49,15 +78,42 @@
4978

5079
### 使用图标库
5180

52-
* fontawesome
53-
* iconmoon
54-
* 阿里图标库
81+
* [Fontawesome](http://fortawesome.github.io/Font-Awesome/icons/)
82+
* [iconmoon](https://icomoon.io/app)
83+
* [阿里图标库](http://www.iconfont.cn/)
5584

5685
---
5786

58-
### 自定义图标字体
87+
### 自己动手制作Font icons
5988

6089
* 导出SVG文件
6190
* 使用工具生成
62-
* fontello
63-
* customfont
91+
* [fontello](http://fontello.com/)
92+
* [customfont](http://fontcustom.com/)
93+
94+
---
95+
96+
### 浏览器支持
97+
98+
* IE 4+
99+
* Firefox
100+
* Chrome
101+
* Android
102+
* Safari
103+
104+
---
105+
106+
### 注意事项
107+
108+
* 渲染问题
109+
* Chrome 阻塞渲染 + 超时
110+
* 其它浏览器:页面闪动
111+
* 解决办法:base64后inline
112+
* 锯齿(Windows Chrome下)
113+
* 版权
114+
115+
---
116+
117+
@state: green
118+
119+
<p style="font-size:6em"><i class="fa fa-comments"></i></p>

0 commit comments

Comments
 (0)