随笔分类 -  移动端相关

摘要:0.ios里fixed定位的问题 首先我们来看一个结构: 其实就是最基本的上中下布局而已,问题是header和footer需要分别fixed到头部和底部。 遇到的都知道在ios的safari里面不支持position:fixed, 其实也不算是不支持,只是在软键盘弹出来的时候使用fixed的元素就开 阅读全文
posted @ 2019-05-06 11:56 samirah 阅读(225) 评论(0) 推荐(0)
摘要:let resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize' let recalc = function () { document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px'... 阅读全文
posted @ 2018-07-18 18:11 samirah 阅读(617) 评论(0) 推荐(0)
摘要:由于移动端是触摸事件,所以要用到H5的属性touchstart/touchmove/touched,但是PC端只支持鼠标事件,所以此时可以这样转换 阅读全文
posted @ 2018-07-17 17:21 samirah 阅读(1127) 评论(0) 推荐(0)