大家好,又见面了,我是你们的朋友全栈君。
简单实现了js的图片上一张下一张效果,没怎么做css美化单纯就是想记录一下js部分。
效果图:嘿嘿,wuli爽妹子镇图!!
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>幻灯片</title>
</head>
<style>
*{
margin:0;
padding:0;
}
#picBox{
margin:100px auto;
width:600px;
height:400px;
}
#pic{
width:600px;
height:400px;
}
#buttonBox{
width:150px;
margin:10px auto;
}
</style>
<body>
<div id="picBox">
<img src="s1.jpg" id="pic">
<div id="buttonBox">
<input type="button" value="上一张" onclick="pre();">
<input type="button" value="下一张" onclick="next();">
</div>
</div>
<script>
var picArr=new Array("s1.jpg","s2.jpg","s3.jpg","s4.jpg");
var index=0;
function next(){
index++;
if(index==picArr.length){
index=0;
}
document.getElementById("pic").src=picArr[index];
}
function pre(){
index--;
if(index<0){
index=picArr.length-1;
}
document.getElementById("pic").src=picArr[index];
}
</script>
</body>
</html>
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/125567.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...