jQuery||zepto:检测移动端网页左右滑动动作插件

//Code by RosenChai $.fn.swipeCatch = function(func1,func2){ var touch_start={},touch_now={},touch_end={},diff={}; var $this = $(this); $this.off().on('touchstart',function(e){ touch_start.x = e.touches[0].pageX||e.pageX; touch_start.y = e.touches[0].pageY||e.pageY; }).on('touchmove',function(e){ touch_now.x ... read more

简单loading动画

没事闲的做了一个简单的loading动画 js就几行,却出了问题。。chrome下成功,但在Firefox下怎么改都显示不出来。。 提示window.event is not defined,在网上搜到了解决办法。原来FF跟不支持IE的JS标准,chrome却跟IE混的,太没节操了。 代码不支持IE因为这个动画是CSS3的。 DEMO:Loading Demo HTML: CSS: #loading{ display:none; width:70px; position:fixed; top:50%; left:50%; margin-left:-40px; } .blockG{ background-color:#FFFFFF; border:3px solid #8896fa; float:left; height:50px; margin-left:7px; width:10px; opacity:0. ... read more