title | date | description | tags | ||
---|---|---|---|---|---|
HTML 小知识 |
2018-06-22 02:24:13 -0700 |
HTML 知识总结 |
|
<head>
<link rel="apple-touch-icon" href="/custom_icon.png" >
<!-- 不同尺寸 -->
<link rel="apple-touch-icon" size="76x76" href="/custom_icon.png" >
<link rel="apple-touch-icon" size="120x120" href="/custom_icon.png" >
<link rel="apple-touch-icon" size="152x152" href="/custom_icon.png" >
</head>
MDN 地址:https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/Input/file
<!-- 选择图片 -->
<input type="file" accept="image/*" >
<!-- 选择视频 -->
<input type="file" accept="video/*" >
<!-- 选择音频 -->
<input type="file" accept="audio/*" >
<!-- 直接打开相机拍照 -->
<input type="file" accept="image/*" capture="camera" >
<!-- 直接打开相机录像 -->
<input type="file" accept="video/*" capture="camera" >
- 字体不小于 16px
- 禁止页面缩放