摘要:翻屏 阅读全文
手机项目常用知识小记
2015-04-08 10:10 by 边缘er, 157 阅读, 0 推荐, 收藏, 编辑
摘要:1.用pc的思路做mobile,写死页面宽度2.改变jquery mobile滑动初始值$.event.special.swipe.horizontalDistanceThreshold = 10;3.判断是否为微信内置浏览器function is_weixin(){ var ua =... 阅读全文
fixed定位
2012-08-19 20:37 by 边缘er, 1134 阅读, 0 推荐, 收藏, 编辑
摘要:function fixedBar(o){ var bar = document.getElementById(o.id), width = bar.offsetWidth, height = bar.offsetHeight, dir = o.dir, at = o.at, left = o.left, right = o.right, top = o.top, bottom = o.bottom, body = document.body, ht... 阅读全文
琐碎问题小记
2012-07-13 09:22 by 边缘er, 191 阅读, 0 推荐, 收藏, 编辑
摘要:1.所有浏览器都不报错,只有ie6报错的话,检查编码是否一致。2.notepad++的自动提示onClick的c是大写。3.设置了position:relative的元素在ie6 7下隐藏不了。4.简单的判断ie 6 7 8方法var isIE = !!window.ActiveXObject; var isIE6 = isIE && !window.XMLHttpRequest; var isIE7 = !!(!window.addEventListener && window.XMLHttpRequest && !document.query 阅读全文