<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Document</title>
</head>
<style>
html{height:100%;}
body{width: 100%;height:100%;margin:0;overflow: hidden;}
.wrap{position: relative;overflow: hidden;}
.box{position: absolute;list-style: none;left:0;top:0;padding:0;margin:0;}
.box li{float:left;}
.box{
position: relative;
height: 2000px;
width: 100%;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: red;
}
.box1{
height: 2000px;
}
.box2{
height: 200px;
background: yellow;
}
.box3{
height: 2000px;
background: yellowgreen;
}
.box4{
height: 200px;
background: orange;
}
.box5{
height: 2000px;
background: cyan;
}
</style>
<body>
<div class="wrap">
<ul class="box">
<li><div class="box1 box2">11111</div></li>
<li><div class="box1 box3">2222</div></li>
<li><div class="box1 box4">3333</div></li>
<li><div class="box1 box5">4444</div></li>
</ul>
</div>
<script>
var aLi = document.querySelectorAll(".box li");
var box = document.querySelector('.box');
var wrap = document.querySelector('.wrap');
var aLiWidth = box.offsetWidth;
console.log('aLiWidth: ' + aLiWidth)
// wrap.style.height = aLi[0].offsetHeight + 'px';
// 设置盒子的宽度
box.style.width = aLi.length*100 + '%';
for(var i=0;i<aLi.length;i++){
aLi[i].style.width = 1/aLi.length * 100 + '%';
};
// 初始化手指坐标点
var startPoint = 0;
var startEle = 0;
var sollTop = document.body.scrollTop
//手指按下
wrap.addEventListener("touchstart",function(e){
startPointX = e.changedTouches[0].pageX;
startPointY = e.changedTouches[0].pageY;
startEleX = box.offsetLeft;
sollTop = document.body.scrollTop;
console.log("sollTop:" + sollTop);
// startEleY = sollTop;
});
//手指滑动
wrap.addEventListener("touchmove",function(e){
var currPointX = e.changedTouches[0].pageX;
var disX = currPointX - startPointX;
var currPointY = e.changedTouches[0].pageY;
var disY = startPointY - currPointY;
if(Math.abs(disY) > Math.abs(disX)){
// 偏移量加上滚动条原有高度
sollTop = sollTop + disY;
// document.body.scrollTop = sollTop;
window.scrollTo(0,sollTop);
console.log(sollTop);
}else{
var left = startEleX + disX;
box.style.left = left + 'px';
console.log(left);
}
// console.log("sollTop:"+ sollTop +"disY:" +disY);
});
//当手指抬起的时候,判断图片滚动离左右的距离,当
wrap.addEventListener("touchend",function(e){
var left = box.offsetLeft;
sollTop = document.documentElement.scrollTop;
// 判断正在滚动的图片距离左右图片的远近,以及是否为最后一张或者第一张
var currNum = Math.round(-left/aLiWidth);
currNum = currNum>=(aLi.length-1) ? aLi.length-1 : currNum;
currNum = currNum<=0 ? 0 : currNum;
box.style.left = -currNum*wrap.offsetWidth + 'px';
// console.log(currNum);
})
</script>
</body>
</html>
前端手写实现移动端轮播图
最新推荐文章于 2024-04-21 12:55:42 发布