原生js实现轮播图(用位移和透明度两种方法)

原生js实现轮播图

1效果:(每5秒自动换到下一个,可点击换图,通过位移实现轮播)

在这里插入图片描述
在这里插入图片描述

2源码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style>
			*{
				margin: 0;
				padding: 0;
				list-style: none;
			}
			.box{
				height: 320px;
				margin: 50px auto ;
				overflow: hidden;
				width: 690px;
				position: relative;
				border: 5px green solid;
			}
			.box ul{
					width: 7000px;
					position: absolute;
			}
			.box ul li{
				width: 690px;
	            display: inline-block;
			  
			}
			.box img{
				width: 690px;
				height: 320px;
			}
			#daohan{
				position: absolute;
				bottom: 10px;
				right: 10px;
			}
			#daohan a{
				width: 30px;
				height: 30px;
				border-radius: 50%;
				display: inline-block;
				background-color:black;
				text-decoration: none;
				color: white;
				font-size: 15px;
				text-align: center;	
				opacity: 0.5;
				position: relative;
				
						}
			#daohan a span{
				vertical-align: middle;
			}
		</style>
	
		<script>
			
			window.onload=function(){
				var ulwidth=document.getElementById("one");
				var imglist=ulwidth.getElementsByTagName("img");
				var box=document.getElementsByClassName("box")[0];
				var alla=box.getElementsByTagName("a");
				// var timer;
				var index=null;
				auto();
				for(var i=0;i<alla.length;i++){
					alla[i].num=i;
					alla[i].onclick=function(){
					index=this.num;	
					
					// ulwidth.style.left=(-705)*index+"px";打开会使得move()无效;
					
					move(ulwidth,"left",-695*index,5000,function(){
						setA();
					});
					}
				}
				function setA(){
					for(var i=0;i<alla.length;i++){
						alla[i].style.backgroundColor="black";
						alla[i].style.opacity=0.7;
						alla[i].style.color="white";
					}
					alla[index].style.backgroundColor="#ffffff";
					alla[index].style.color="#000000";
					alla[index].style.opacity=1;
				}
				function move(obj,attr,traget,speed,callback){
					clearInterval(obj.timer);
					var current=parseInt(getComputedStyle(obj,null)[attr]);
					if(current>traget){
						speed=-speed;
					}
					obj.timer=setInterval(function(){
						var oldvalue=parseInt(getComputedStyle(obj,null)[attr]);
						var newvalue=oldvalue+speed;
						if((speed<0&&newvalue<traget)||(speed>0&&newvalue>traget)){
							newvalue=traget;
						}
						obj.style[attr]=newvalue+"px";
						if(newvalue==traget){
							clearInterval(obj.timer);
							callback();
						}
					},30
					)
				}
	   function auto(){
		   setInterval(function(){
			   index++;
			   index%=9;
			   if(index==0){
				     ulwidth.style.left=0+"px";
				
			   }
			   move(ulwidth,"left",-695*index,5555,function(){
				   setA();
			   });
		   },5000);
	   }
			 }
		</script>
	</head>
	<body>
		<div class="box">
			<ul id="one">
				<li><img src="./2022zq2 (1).jpg" alt=""></li>
				<li><img src="./3.jpg" alt=""></li>
				<li><img src="./4.jpg" alt=""></li>
				<li><img src="./5.jpg" alt=""></li>
				<li><img src="./6.jpg" alt=""></li>
				<li><img src="./7.jpg" alt=""></li>
				<li><img src="./8.jpg" alt=""></li>
				<li><img src="./9.jpg" alt=""></li>
				<li><img src="./10.jpg" alt=""></li>
			</ul>
			<div id="daohan">
				<a href="#"><span>1</span></a>
				<a href="#"><span>2</span></a>
				<a href="#"><span>3</span></a>
				<a href="#"><span>4</span></a>
				<a href="#"><span>5</span></a>
				<a href="#"><span>6</span></a>
				<a href="#"><span>7</span></a>
				<a href="#"><span>8</span></a>
				<a href="#"><span>9</span></a>
			</div>
		</div>
	</body>
</html>

更新

二、另一种方法:

在这里插入图片描述

用透明度来实现:

源码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>轮播图01</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .wrap {
            width: 500px;
            height: 280px;
            margin: 100px auto;
            perspective: 500px;
            position: relative;
        }

        #wrap-ul {
            width: 500px;
            height: 280px;
            list-style: none;
            position: relative;
        }

       .wrap img {
            /* border-radius: 15%;
            这里可以修改图片的大小,最好改的时候把ul和li的一并改为相同的*/
            transition: all 1s ease 0s;
            width: 500px;
            height: 280px;
            display: inline-block;
            opacity: 0;
        }
        .cc img {
            opacity: 1;
        }
      
        #wrap-ul li {
            width: 500px;
            height: 280px;
            position: absolute;
            left: 0;
            top: 0;
        }

        .wrap span {
            width: 40px;
            height: 70px;
            background-color:black;
            color: white;
            text-align: center;
            font-size: 50px;
            position: absolute;
            left: -60px;
            top: 40%;
            z-index: 11;
            cursor: pointer;
            opacity: .4;
            transition: all 0.5s ease 0s;
        }

        .wrap span:hover {

            opacity: 1;
        }

        .wrap #right-btn1 {
            right: -60px;
            left: auto;
        }
        .wrap #alla{
			position: absolute;
			bottom: 15px;
			right: 20px;
		}
		.wrap #alla a{
			display: inline-block;
			width: 20px;
			height: 20px;
			border-radius: 50%;
			margin-left: 10px;
			background-color: ghostwhite;
			text-align: center;
			text-decoration: none;
			font-size: 10px;
			color: aqua;
		}
		
    </style>
	<script type="text/javascript">
		window.onload=function(){
			let ul=document.getElementById("wrap-ul");
			let lis=ul.getElementsByTagName("li");
			let classes=["b1","b1","cc","b1","b1","b1"];
			let Rbut1=document.getElementById('right-btn1');
			let lbut1=document.getElementById("toleft1");
			let div=document.getElementById("alla");
			let alla=div.getElementsByTagName("a");
			let flag;
			for(let i=0;i<alla.length;i++){
				alla[i].index=i;
				alla[i].onclick=function(){
					for(let i=0;i<alla.length;i++){
						alla[i].style.backgroundColor="ghostwhite";
						alla[i].style.color="aqua";
					}
					this.style.backgroundColor="aqua";
					this.style.color="white";
					
					for(let i=0;i<lis.length;i++){
						lis[i].className="b1";
						
					}
					lis[this.index].className="cc";
				
				}
			}
			function toRight(){
				let lastli=classes.pop();
				classes.unshift(lastli);
				for(let i=0;i<lis.length;i++){
					lis[i].className=classes[i];
					if(classes[i]=="cc"){
						flag=i;
					}
				}
				for(let i=0;i<alla.length;i++){
					alla[i].style.backgroundColor="ghostwhite";
					alla[i].style.color="aqua";
				}
				alla[flag].style.backgroundColor="aqua";
				alla[flag].style.color="white";
			}
			function toLeft(){
				let firstli=classes.shift();
				classes.push(firstli);
				for(let i=0;i<lis.length;i++){
					lis[i].className=classes[i];
					if(classes[i]=="cc"){
						flag=i;
					}
				}
				for(let i=0;i<alla.length;i++){
					alla[i].style.backgroundColor="ghostwhite";
					alla[i].style.color="aqua";
				}
				alla[flag].style.backgroundColor="aqua";
				alla[flag].style.color="white";
			}
			let timer=setInterval(toRight,3000);
			Rbut1.onclick=toRight;
			lbut1.onclick=toLeft;
			// Rbut1.onclick=function(){
			// 	timer=null;
			// 	timer=setInterval(toRight(),1000);
			// }
			// lbut1.onclick()=function{
			// 	timer=null;
			// 	timer=setInterval(toLeft(),1000);
			// }
			ul.onmouseover=function(){
				clearInterval(timer);
				timer=null;
			}
			ul.onmouseleave=function(){
				timer=setInterval(toRight,3000);
			}
		}
		
	</script>
</head>

<body>
    <div class="wrap">
        <ul id="wrap-ul">
            <li class="b1"><img src="./3.jpg" alt=""></li>
            <li class="b1"><img src="./4.jpg" alt=""></li>
            <li class="cc"><img src="./5.jpg" alt=""></li>
            <li class="b1"><img src="./6.jpg" alt=""></li>
            <li class="b1"><img src="./7.jpg" alt=""></li>
			<li class="b1"><img src="./8.jpg" alt=""></li>
        </ul>
		<div id="alla" class="cc"><a href="#">1</a><a href="#">2</a><a href="#">3</a>
		<a href="#">4</a><a href="#">5</a><a href="#">6</a></div>
        <span id="toleft1">&lt;</span>
        <span id="right-btn1">&gt;</span>
    </div>
</body>


</html>
  • 3
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
非常好的问题!以下是一个基本的原生 JavaScript 轮实现: HTML ```html <div class="slider"> <div class="slider-wrapper"> <div class="slider-item"></div> <div class="slider-item"></div> <div class="slider-item"></div> </div> <div class="slider-nav"> <a class="slider-prev" href="#">Prev</a> <a class="slider-next" href="#">Next</a> </div> </div> ``` CSS ```css .slider { position: relative; width: 100%; height: 300px; overflow: hidden; } .slider-wrapper { position: absolute; top: 0; left: 0; height: 100%; width: 300%; display: flex; transition: transform 0.3s ease-in-out; } .slider-item { height: 100%; width: 33.333%; } .slider-nav { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; } .slider-prev, .slider-next { margin: 0 10px; padding: 5px 10px; background-color: #ddd; border-radius: 3px; } .slider-prev:hover, .slider-next:hover { background-color: #bbb; } ``` JavaScript ```js const sliderWrapper = document.querySelector('.slider-wrapper'); const prevBtn = document.querySelector('.slider-prev'); const nextBtn = document.querySelector('.slider-next'); const sliderItems = document.querySelectorAll('.slider-item'); const itemWidth = sliderItems[0].offsetWidth; let position = 0; nextBtn.addEventListener('click', () => { position -= itemWidth; if (position < -itemWidth * (sliderItems.length - 1)) { position = 0; } moveToPosition(); }); prevBtn.addEventListener('click', () => { position += itemWidth; if (position > 0) { position = -itemWidth * (sliderItems.length - 1); } moveToPosition(); }); function moveToPosition() { sliderWrapper.style.transform = `translateX(${position}px)`; } ``` 这个例子通过改变 sliderWrapper 的 transform 属性来移动轮的位置。prevBtn 和 nextBtn 的点击事件分别减小或增加 position 值,而 moveToPosition 函数将新的 position 值应用到 sliderWrapper 上,实现的效果。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

学徒在修行

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值