js 간단 한 이음매 없 는 윤 방 효과 실현
5068 단어 js이음매 없 는 윤 파
*{
margin: 0;
padding: 0;
}
#box{
width: 500px;
height: 200px;
padding: 5px;
margin: 50px auto;
border: 1px solid #999999;
}
.inner{
width: 500px;
height: 200px;
overflow: hidden;
position: relative;
}
ul,ol{
list-style: none;
position: absolute;
}
ul{
width: 3000px;
height: 200px;
}
li{
float: left;
}
ol{
right: 20px;
bottom: 20px;
}
ol>li{
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
background-color: #fff;
border-radius: 50%;
margin-right: 10px;
cursor: pointer;
}
ol>li.current{
background-color: orange;
color: white;
}
.control{
display: none;
}
.control>span{
position: absolute;
top: 50%;
margin-top: -20px;
display: inline-block;
width: 25px;
height: 40px;
line-height: 40px;
background-color: rgba(0,0,0,0.3);
color: white;
font-size: 20px;
cursor: pointer;
text-align: center;
}
.right{
right: 0;
}
<div id="box">
<div class="inner">
<ul>
<li><img src="image/1.jpg" alt=""></li>
<li><img src="image/2.jpg" alt=""></li>
<li><img src="image/3.jpg" alt=""></li>
<li><img src="image/4.jpg" alt=""></li>
<li><img src="image/5.jpg" alt=""></li>
</ul>
<ol>
<li class="current">1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ol>
<div class="control">
<span class="left"><</span>
<span class="right">></span>
</div>
</div>
</div>
var box=document.getElementById("box");
var ul=box.getElementsByTagName("ul")[0];
var ol=box.getElementsByTagName("ol")[0];
var olLiArr=ol.children;
var control=box.getElementsByClassName("control")[0];
ul.appendChild(ul.children[0].cloneNode(true));
var index=0;
var circleIndex=0;
var timer=setInterval(autoPlay,2000);
//
box.onmouseover=function () {
clearInterval(timer);
control.style.display="block";
};
box.onmouseout=function () {
timer=setInterval(autoPlay,2000);
control.style.display="none";
};
//
for (var i=0;i<olLiArr.length;i++) {
olLiArr[i].index=i;
olLiArr[i].onclick=function () {
if(index===5){
ul.style.left=0;
index=0;
}
for (var i=0;i<olLiArr.length;i++){
olLiArr[i].removeAttribute("class");
}
this.setAttribute("class","current");
animate_constSpeed_x(ul,-this.index*500);
index=this.index;
circleIndex=this.index;
}
}
//
control.children[1].onclick=function () {
autoPlay();
};
control.children[0].onclick=function () {
index--;
if (index<0){
ul.style.left=-2500+"px";
index=4;
}
animate_constSpeed_x(ul,-index*500);
circleIndex--;
if (circleIndex<0){
circleIndex=4;
}
for (var i=0;i<olLiArr.length;i++) {
olLiArr[i].removeAttribute("class");
}
olLiArr[circleIndex].setAttribute("class","current");
};
//
function autoPlay() {
index++;
if (index>5){
ul.style.left=0;
index=1;
}
animate_constSpeed_x(ul,-index*500);
circleIndex++;
if (circleIndex>4){
circleIndex=0;
}
for (var i=0;i<olLiArr.length;i++) {
olLiArr[i].removeAttribute("class");
}
olLiArr[circleIndex].setAttribute("class","current");
}
//
function animate_constSpeed_x(ele,endX) {
clearInterval(ele.timer);
var step=(endX-ele.offsetLeft)>0?10:-10;
ele.timer=setInterval(function () {
ele.style.left=ele.offsetLeft+step+"px";
console.log(1);
if(Math.abs(endX-ele.offsetLeft)<=Math.abs(step)){
clearInterval(ele.timer);
ele.style.left=endX+"px";
}
},10)
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.