-webkit-tap-highlight-color这个属性是用于设定元素在移动设备(如Adnroid、iOS)上被触发点击事件时,响应的背景框的颜色。例如在Adnroid版本的微信中,点击a标签时将会出现一个橙色的小框表示点击的响应。此时,如果对元素设置了tap-highlight-color值...
分类:
Web程序 时间:
2015-06-23 13:08:51
阅读次数:
241
本节介绍tap的3个弄不太林清并且容易混淆的属性:cancelsTouchesInView/delaysTouchesBegan/delaysTouchesEnded...
分类:
移动开发 时间:
2015-06-17 15:23:18
阅读次数:
5327
ios输入框阴影input{ -webkit-appearance: none;}点击按钮 阴影a,button,input { -webkit-tap-highlight-color: transparent; -moz-tap-highlight-color:transparent;...
分类:
移动开发 时间:
2015-06-17 15:16:20
阅读次数:
214
1.判断在页面是鼠标的click事件还是手机移动端的tap事件 var _click = "ontouchend" in document ? "tap" : "click"; 2.产生随机数组 Math.RandomNumbers = function (rn, rcount, bn, bcount) {
var ret = [...
分类:
编程语言 时间:
2015-06-16 13:14:22
阅读次数:
108
$.fn.tap = function(fn){ var collection = this, isTouch = "ontouchend" in document.createElement("div"), tstart = isTouch ? "touchsta...
分类:
Web程序 时间:
2015-06-15 23:27:53
阅读次数:
674
介绍IOS常用的6中手势(UIGestureRecognizer):
UITapGestureRecognizer *_tap; //点击
UIPanGestureRecognizer *_pan; //拖拽
UIPinchGestureRecognizer *_pinch; //捏合
UIRotationGestureRecognizer *_rotation; //旋转
UISwipeGestureRecognizer *_swipe; //轻扫
UILongPressGes...
分类:
移动开发 时间:
2015-06-13 17:15:49
阅读次数:
156
使用zepto库,有如下dom1 2 3 点我有惊喜4 5 View Code以上div内的节点是后续生成的,通过on绑定事件:1 $('#J_parent').on('tap', 'span', function(e){2 ...
分类:
其他好文 时间:
2015-06-12 19:19:49
阅读次数:
130
学习书籍: 1--C#5.0之后推荐使用TPL(Task Parallel Libray 任务并行库) 和PLINQ(Parallel LINQ, 并行Linq). 其次是TAP(Task-based Asynchronous Pattern, 基于任务的异步模式). --用AggregateExc...
触屏的click因为有双击判断所以有200ms的延迟,zepto里的touch.js兼容不好所以tap也没法直接用。gibhub上有个fastclick太大了。自己用touched写个简单的模拟tap事件,并在内部加上e.preventDefault();阻止系统默认行为。 /* 模拟Tab事件 ....
分类:
其他好文 时间:
2015-06-07 20:07:33
阅读次数:
194