11 2016 档案

摘要:网页可见区域宽:document.body.clientWidth 网页可见区域高:document.body.clientHeight 网页可见区域宽:document.body.offsetWidth (包括边线的宽) 网页可见区域高:document.body.offsetHeight (包括 阅读全文
posted @ 2016-11-25 14:47 夏天的冰淇淋 阅读(500) 评论(0) 推荐(0)
摘要:1 document.body.clientWidth ==> BODY对象宽度 2 document.body.clientHeight ==> BODY对象高度 3 document.documentElement.clientWidth ==> 可见区域宽度 4 document.documentElement.clientHeight ==> 可见区域高度 5 ... 阅读全文
posted @ 2016-11-01 13:18 夏天的冰淇淋 阅读(5798) 评论(0) 推荐(0)
摘要:去掉点击链接和文本框对象的半透明覆盖(iOS)或者虚框(Android) -webkit-tap-hightlight-color:rgba(0,0,0,0); 禁用长按页面时弹出菜单(iOS下有效) -webkit-touch-callout:none; 静止页面文字选择: -webkit-use 阅读全文
posted @ 2016-11-01 13:15 夏天的冰淇淋 阅读(386) 评论(0) 推荐(0)
摘要:style="-webkit-tap-highlight-color:transparent;" 阅读全文
posted @ 2016-11-01 10:36 夏天的冰淇淋 阅读(1775) 评论(0) 推荐(0)