2016年11月9日

摘要: var arg = navigator.platform; if(arg == "iPhone"){ $(".backA").hide(); } 阅读全文
posted @ 2016-11-09 15:03 meixiaomin 阅读(188) 评论(0) 推荐(0) 编辑
 
摘要: $("#actimg").qrcode({ render: "canvas", //设置渲染方式,有table和canvas,使用canvas方式渲染性能相对来说比较好 text: "http://dolphinonline.52souhui.com/noAcitivity.html", //扫描了 阅读全文
posted @ 2016-11-09 15:02 meixiaomin 阅读(393) 评论(0) 推荐(0) 编辑
 
摘要: window.document.getElementById("moveDIV").addEventListener("touchmove", function (event) { event.preventDefault(); if (event.targetTouches.length == 1 阅读全文
posted @ 2016-11-09 14:38 meixiaomin 阅读(419) 评论(0) 推荐(0) 编辑
 
摘要: hammer.js是一个多点触摸手势库,能够为网页加入Tap、DoubleTap、Swipe、Hold、Pinch、Drag等多点触摸事件,免去自己监听底层touchstart、touchmove、touchend事件并且写一大堆判断逻辑的痛苦。hammer.js不但支持触摸屏设备的浏览器,在桌面浏 阅读全文
posted @ 2016-11-09 14:36 meixiaomin 阅读(153) 评论(0) 推荐(0) 编辑
 
摘要: 移动端业务开发,iOS 下经常会有 fixed 元素和输入框(input 元素)同时存在的情况。 但是 fixed元素在有软键盘唤起的情况下,会出现许多莫名其妙的问题。 这篇文章里就提供一个简单的有输入框情况下的 fixed 布局方案。 iOS下的 Fixed + Input BUG现象 让我们先举 阅读全文
posted @ 2016-11-09 14:36 meixiaomin 阅读(458) 评论(0) 推荐(0) 编辑
 
摘要: 添加空的 事件ontouchstart 例 <body ontouchstart> 阅读全文
posted @ 2016-11-09 14:33 meixiaomin 阅读(124) 评论(0) 推荐(0) 编辑
 
摘要: css .gundong#demo {overflow: hidden;width: 90%;maxwidth: 640px;height: 29px;line-height: 29px;color: #fe8d00;font-size: 14px;margin-left: 34px;} #up_z 阅读全文
posted @ 2016-11-09 14:31 meixiaomin 阅读(201) 评论(0) 推荐(0) 编辑
 
摘要: var doc = document,win = window;var $ScrollBotto; if($(win).scrollTop() > 0) $ScrollBottom = $(doc).height() - $(win).height() + $(win).scrollTop(); e 阅读全文
posted @ 2016-11-09 14:12 meixiaomin 阅读(156) 评论(0) 推荐(0) 编辑