-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
移动 Web 项目前端脚手架 #7
Comments
讲道理还可以有一个0.5像素边框的东西:
这种比图片的好处就是可以有圆角2333 |
@KkkkKernc,感谢补充,后面我会加进去 |
其实我感觉人民币符号那个东西 不设字体怕是要好点 |
@KkkkKernc 恩,伪元素会继承宿主元素字体 |
niubility |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
脚手架项目
对 HTML 的设置
<!DOCTYPE html>
设置正确的浏览器渲染模式<html lang="zh-cmn-Hans">
设置页面内容的语言为简体中文;<html lang="zh-cmn-Hant">
为繁体中文;<html lang="en">
为英文。这么写的原因<meta charset="UTF-8">
设置编码格式为 UTF-8<meta name="format-detection" content="telephone=no" />
当该 HTML 页面在手机上浏览时,该标签用于指定是否将网页内容中的手机号码显示为拨号的超链接,iPhone 上默认telephone
设置为 yes<meta name="format-detection" content="email=no" />
忽略 Android 平台中对邮箱地址的识别<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
详情使用参考 MDN-在移动浏览器中使用 viewport 元标签控制布局<link rel="icon" href="**/*.*" />
设置 icon浏览器重置样式设置
reset.css
1.可重置点击链接时出现的高亮颜色及 outline
参考 -webkit-tap-highlight-color
2.text-size-adjust
参考 text-size-adjust
3.大屏幕下 body 水平居中
4.设置图片无法被选中
参考 user-select
公有样式设置
style.css
1.使用面向属性的 CSS
2.clearfix 清除浮动
3.0.5px 边框实现
4.遮罩层样式
5.人民币符号
集成手淘 rem 方案
阅读源码可以知道,如果我们设置了 viewport 元数据,那么 dpr = 1 / scale;如果手动设置 flexible,则 dpr 取决于设置值;如果两者都不设置,那么 flexible.js 会根据 IOS/Android 平台去动态生成 meta 标签并设置 dpr(此时 dpr 值可能为 1~3)及缩放比例。
建议使用修改源码后的 rem.js,设置 viewport 视口,在锁定缩放比例的同时,还可以使用
<html data-dpr="1~3">
提供的 class 过滤功能。The text was updated successfully, but these errors were encountered: