最近公司需要做手机网站项目,在脚本js框架上我们采用了轻量级的js框架zepto.js,今天我们就来说下使用zepto.js实现手机网站焦点图触屏划动效果,有兴趣的朋友可以先进这个网站“http://zeptojs.com/”,本程序是一个测试程序,可以左右无限制的划动。查看地址:dome 推荐使用非IE浏览器查看效果。下面提出焦点图切换源码:
<!DOCTYPE HTML>
<html>
<head>
<title>test</title>
<meta content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport"/>
<script src="" type="text/javascript" charset="utf-8"></script>
<style>
*{padding:0px; margin:0px;}
.touchBox{
white-space:nowrap;
overflow:hidden;
}
.items{
display:inline-block;
white-space:nowrap;
overflow:hidden;
}
.item{
display:inline-block;
white-space:nowrap;
}
</style>
</head>
<body>
<div style="overflow:hidden;" id="wrap">
<div class="touchBox" id="slider">
<div class="items">
<div class="item"><img src="img/drag1.jpg"/></div>
<div class="item"><img src="img/drag2.jpg"/></div>
<div class="item"><img src="img/drag3.jpg"/></div>
<div class="item"><img src="img/drag4.jpg"/></div>
</div>
<div class="items">
<div class="item"><img src="img/drag1.jpg"/></div>
<div class="item"><img src="img/drag2.jpg"/></div>
<div class="item"><img src="img/drag3.jpg"/></div>
<div class="item"><img src="img/drag4.jpg"/></div>
</div>
<div class="items">
<div class="item"><img src="img/drag1.jpg"/></div>
<div class="item"><img src="img/drag2.jpg"/></div>
<div class="item"><img src="img/drag3.jpg"/></div>
<div class="item"><img src="img/drag4.jpg"/></div>
</div>
</div>
</div>
<div id="picNo" style="font-size:24px;color:#fff;position:absolute;right:20px;margin-top:-30px;"></div>
<div id="msg"></div>
<script>
/*去空格和换行(代码中的空格和换行会在浏览器解析时,解析成一个空格,造成位置运算有偏差)*/
var hm = $("#slider").html();
var b = hm.replace(/\n|\r/g,"").replace(/>\s*</g,'><').replace(/\s*</g,"<");
$("#slider").html( b);
/* 设置每个图片的宽度 */
var img_w = $("#wrap").width();
$(".item img").width( img_w + "px" );
var pic_num = $(".items .item").length/3; /* 每组图片的数量 */
$("#slider").css("margin-left", -1*(img_w * pic_num) +"px"); /* 默认显示中间那一组的第一个图片 */
$("#msg").text("pic.width:" + img_w);
//触摸部分
var touch = {};
var scrollSupressionThreshold = 1; /* 触发touchmove的敏感度 */
var verticalDistanceThreshold = 60; /* swipe的触发水平方向move必须大于这个距离 */
// add touch start listener
var canvas = document.getElementById("slider");
canvas.addEventListener("touchstart", touchStart, false);
canvas.addEventListener("touchmove", touchMove, false);
canvas.addEventListener("touchend", touchEnd, false);
canvas.addEventListener("touchcancel", touchCancel, false);
function touchStart(event){
var tc = event.touches[0];
touch.marginLeft = $("#slider").css("margin-left"); /* 最原始的坐标值 */
touch.x = tc.pageX;
touch.x1 = tc.pageX;
/* 清除定时 */
clearInterval(timer);
}
function touchMove(event){
if(touch.length == 0) return;
var tc = event.touches[0];
touch.x2 = tc.pageX;
if(Math.abs( touch.x1 - touch.x2 ) > scrollSupressionThreshold){
event.preventDefault();
var a = $("#slider").css("margin-left");
$("#slider").css("margin-left", (parseInt(a) + (touch.x2-touch.x1)) + "px");
touch.x1 = touch.x2;
}
}
function touchEnd(event){
var movePos = touch.x2-touch.x; /* 每次移动的距离 */
/* 判断是否换图片 */
if( Math.abs(movePos) > verticalDistanceThreshold){
/* 判断左移一张还是右移一张 */
var c = 1;
if(movePos<0){
c = -1;
}
var m_left = parseInt(touch.marginLeft) + c*img_w; /* 本次要移动到的位置 */
/* 动画切换图片 */
aninateChangePic(m_left, 100);
}else{
/* 移动的距离不够,让图片还原到移动前的位置 */
$("#slider").animate( {"margin-left":touch.marginLeft},200, 'ease', function(){ showPageNo(); } );
$("#msg").text( "reset " + touch.x);
}
touch = {};
/* 重新启动定时 */
setTimer();
}
function touchCancel(event){
touch = {};
}
/* 显示当前是第几张图 */
function showPicNo(){
/* 得到当前是第几张图 */
var a = $("#slider").css("margin-left");
var b = Math.abs(parseInt(a));
var seq = parseInt(b/img_w ) % pic_num + 1;
$("#picNo").text(seq + "/" + pic_num);
}
/* 定时换图 */
function changePicTimer(){
var a = $("#slider").css("margin-left");
var m_left = parseInt(a) - img_w; /* 本次要移动到的位置 */
/* 动画切换图片 */
aninateChangePic(m_left, 400);
}
/* 动画切换图片 */
function aninateChangePic(m_left, timeout){
/* 动画移动 */
$("#slider").animate( {"margin-left": m_left + "px"}, timeout, 'ease', function(){
/* 处理循环的问题(此处是为了处理无限左移或无限右移的问题) */
if(m_left==0 || Math.abs(m_left)>= img_w*pic_num*2 ){
$("#slider").css("margin-left", "-" + (img_w * pic_num) +"px");
$("#msg").text("reset ok!");
}
showPicNo();
});
}
/* 设置定时变换图片 */
var timer = "";
function setTimer(){
timer = setInterval("changePicTimer()", 4000);
}
setTimer();
showPicNo();
</script>
</body>
</html>
中国足彩网信息请查看IT技术专栏