码迷,mamicode.com
首页 > 其他好文 > 详细

touch事件

时间:2014-06-12 20:33:45      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:style   class   tar   art   html   cti   

可封装的js代码

if (typeof YwkMobile == "undefined") var YwkMobile = {};
YwkMobile.touchStyle = function(e, t) {
$(e).bind("touchstart",
function() {
$(this).addClass(t)
}),
$(e).bind("touchmove",
function() {
$(this).removeClass(t)
}),
$(e).bind("touchend",
function() {
$(this).removeClass(t)
}),
$(e).bind("touchend",
function() {
$(this).removeClass(t)
}),
$(e).bind("touchcancel",
function() {
$(this).removeClass(t)
})
},
YwkMobile.gotoDetail = function(e, t) {
$(e).bind("click",
function() {
window.location.href = $(this).attr(t)
})
}
//

 

html中调用方法

//touch事件
$(function(){
YwkMobile.touchStyle(‘.navlist li a ,.product-list li‘,‘mtouchs‘);
});

 

css

添加类mtouchs可以写成touch事件触摸后的样式

.product-list li.mtouchs{}

是添加类mtouchs,所以中间不能有空格

 












touch事件,布布扣,bubuko.com

touch事件

标签:style   class   tar   art   html   cti   

原文地址:http://www.cnblogs.com/snowbaby-kang/p/3781670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!