移动端

1、移动端常用框架  amazeui   可以去官网下载所需要引用的插件

http://amazeui.org

2、rem布局

    适配不同屏宽的手机端,动态改变 html的font-size值

<script>
onload = function() {
document.documentElement.style.fontSize = innerWidth / 16 + 'px';
onresize = function() {
document.documentElement.style.fontSize = innerWidth / 16 + 'px';
}
}
</script>

3、移动端实例:心智的心理测评管理系统
posted @ 2017-06-19 09:54  和路雪  阅读(175)  评论(0编辑  收藏  举报