标签:web type order touch mat :focus phone ase tar
-webkit-appearance:none
<meta content="telephone=no" name="format-detection" /> <meta content="email=no" name="format-detection" />
-webkit-user-select:none
box-sizing:border-box
touchcancel事件 是当某种touch事件非正常结束时触发,属于系统事件。
click事件因为要等待双击确认,会有300ms延时,在移动端体验不好。开发者大多会使用封装的tap事件来代替click事件,所谓的tap事件由 touchstart 事件 + touchmove 判断 + touchend 事件封装组成。
对于一些小图片icon之类的,可以将图片用base64编码,来减少网络请求。
<!-- 选择照片 --> <input type=file accept="image/*"> <!-- 选择视频 --> <input type=file accept="video/*">
ios体验良好,但在一些低端Android机型可能有意想不到效果。
input:focus::-webkit-input-placeholder{ opacity: 0; }
在网页加载的过程中,以css背景图存在的图片background-image会等到结构加载完成(网页的内容全部显示以后)才开始加载,而html中的标签img是网页结构(内容)的一部分会在加载结构的过程中加载,换句话讲,网页会先加载标签img的内容,再加载背景图片background-image,如果你用引入了一个很大的图片,那么在这个图片下载完成之前,img后的内容都不会显示。而如果用css来引入同样的图片,网页结构和内容加载完成之后,才开始加载背景图片,不会影响你浏览网页内容。
标签:web type order touch mat :focus phone ase tar
原文地址:https://www.cnblogs.com/mengzhongfeixue/p/11917796.html