rem简单实现移动端适配
2018-06-24 01:19:46来源:未知 阅读 ()
rem:移动web开发
-
默认字体大小是16px
-
在
<html>
中设置字体大小 -
与em的区别:
- em是在父级设置字体大小受影响
-
移动端适配
-
首先获取屏幕的宽度
-
计算当前屏幕宽度和640的比例
-
计算出font-size的值
-
改变html的font-size的值
<!DOCTYPE html> <html lang="en" style="font-size: 100px;"> <head> <meta charset="UTF-8"> <title>rem</title> <style> * { margin: 0; padding: 0; } div { width: 6.4rem; height: 6.4rem; background-color: pink; font-size: .14rem; margin: 0 auto; } p { width: 50%; height: 50%; background-color: skyblue; } </style> </head> <body> <div> <p>这是一个p</p> </div> </body> </html>
第一种:
window.onresize = function(){ var html = document.getElementsByTagName('html')[0]; var width = html.offsetWidth; console.log(width); html.style.fontSize = (width>=640?640:width)/640*100 + 'px'; };
第二种:
-
var html = document.getElementsByTagName('html')[0]; if(html){ var w = window.innerWidth; var fontSize = (w>640?640:w)/640 * 100; html.style.fontSize = fontSize + 'px'; } window.onload = function(){ window.onresize = function(){ var w = window.innerWidth; console.log(w); var fontSize = (w>640?640:w)/640 * 100; html.style.fontSize = fontSize + 'px'; } }
-
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:生成100个Div
- js防止表单重复提交实现代码 2020-03-29
- 基于JQuery的多标签实现代码 2020-03-29
- js实现翻页后保持checkbox选中状态的实现方法 2020-03-25
- NiftyCube实现圆角边框的方法 2020-03-20
- JS简单去除数组中重复项的方法 2020-03-16
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash