通过js编写程序:点击对应按钮切换对应图片

1、效果

通过js编写程序:点击对应按钮切换对应图片_第1张图片

2、html代码




	
	
	Document
	


		
		

3、css源码

*{
	margin: 0;
	padding: 0;
	list-style: none;
}
body{
	background-color: #fe5c2b;
}
.Img{
	margin: 0 auto;
	height: 500px;
	width: 1050px;
	margin-top: 100px;
}
.Nav{
	height:100px;
	width: 1000px;
	margin-top: 45px;
	margin: 45px auto;
	overflow: hidden;
}
.Nav>li{
	float: left;
	width: 194px;
	height: 100px;
	margin-left: 5px;
	line-height: 80px;
	text-align: center;
	font-size: 20px;
	color: #c33506;
	font-weight: bold;
	background-color: #c8c8c8;
	opacity: 0.5;
	cursor: pointer;
	position: relative;
	bottom: -20px;
	transition: all .3s;
	border-radius: 5px;
}

3、js源码

	let img=document.querySelector('img')
	let ul=document.querySelector('ul')
	for(let i=0;i

有很多方法都能实现这个效果,本来想把图片存放在数组,通过数字控制图片的改变,结果图片路径一直报错就采用了这个方法。

你可能感兴趣的:(javascript,开发语言,html5)