随笔分类 - html
html语意话
摘要:<div></div> div { width: 100px; height: 100px; } @media (width <= 400px) { /* 屏幕宽度 小于等于400px 时 */ div { background-color: red; } } @media (400px <= wi
阅读全文
摘要:通常用于google搜索 See also: video 探索搜索库
阅读全文
摘要:<form action="/verify-otp" method="POST"> <input type="text" inputmode="numeric" autocomplete="one-time-code" pattern="\d{6}" required> </form> naviga
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Docum
阅读全文
摘要:"原文" "Native lazy loading for the web" Example
阅读全文
摘要:"原文" "download ffmpeg" gif to video 转化后文件大小大大降低 用视频替换GIF img 浏览器不会猜测哪个 重要。例如,如果您首先指定MP4视频,并且浏览器支持WebM,则浏览器将跳过WebM 首先使用WebM,请先指定它!
阅读全文
摘要:使用文档链接 图标库 最简单的使用方法 引入 <link href="https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Ico
阅读全文
摘要:` regedit` 打开注册表,然后 自定义协议 自定义协议注册表.reg 打开后导入 设置好后浏览器访问
阅读全文
摘要:he把字符转化为实体字符 Clipboard_API 访问剪贴板 pinyin 将汉字转化为拼音 pinyinjs 汉字与拼音互转的小巧web工具库 localforage 浏览器缓存数据库 handsontable 电子表格的数据网格编辑器 Excel Wordnik API 请求定义,例句,拼写
阅读全文
摘要:google文档 "https://developers.google.cn/web/fundamentals/web components/customelements" 兼容性 "https://caniuse.com/ search=custom" shadow DOM "https://de
阅读全文
摘要:"https://developers.google.cn/web/fundamentals/design and ux/input/forms/" Constraint Validation API "https://dev.w3.org/html5/spec preview/constraint
阅读全文
摘要:搜索优化 "https://developers.google.cn/web/fundamentals/discovery/search optimization/"
阅读全文
摘要:google打造全屏体验 "https://developers.google.cn/web/fundamentals/native hardware/fullscreen/" 以前github上的 "https://github.com/januwA/over/blob/master/h5%E5%
阅读全文
摘要:响应用户界面 "https://developers.google.cn/web/fundamentals/design and ux/responsive/" CSS 媒体查询用于自适应设计 "https://developers.google.cn/web/fundamentals/design
阅读全文
摘要:动画 "https://developers.google.cn/web/fundamentals/design and ux/animations/" element.classList 来进行css 动画 transitionend 事件,可以侦听元素css事件 使用 JavaScript 和
阅读全文
摘要:使用 tabindex原文 "https://developers.google.cn/web/fundamentals/accessibility/focus/using tabindex" 在表单上使用该特性可提供体验。 Tab 键顺序将以大于 0 的最小值为起点,从小到大排序 对焦点进行样式化
阅读全文
摘要:了解无障碍功能及其范围和影响可令您成为更出色的网络开发者 "https://developers.google.cn/web/fundamentals/accessibility/" ARIA 简介 "https://developers.google.cn/web/fundamentals/acc
阅读全文
posted @ 2018-01-29 10:40
Ajanuw
摘要:MDN 文档 首先你需要让用户上传图片 <input type="file" accept="image/*" id="upfile" /> 默认会让用户在 相册 或则 摄像头 中选择,如果加上 capture="camera" 则默认打开摄像头 当上传图片时,先在本地预览图片 document.q
阅读全文