本文实例为大家分享了js实现幻灯片轮播图的具体代码,供大家参考,具体内容如下
1.html
选取了五张图片 放入div中,然后是左右箭头,以及按钮,代码如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>轮播图</title> <link href="../css/轮播图.css" rel="stylesheet"> </head> <body> <div id="box"> <img src="/UploadFiles/2021-04-02/car-1.jpg">2.css给div设置居中
将所有图片隐藏,设置箭头和小圆点的样式
代码如下*{ margin:0; padding:0; text-decoration: none; list-style: none; } #box{ width:800px; height: 500px; margin:50px auto 0px; position: relative; } #box img{ width:800px; height: 500px; display: none; animation:fade 3s; } #box .arrow{ width:800px; height: 80px; position: absolute; top:50%; margin-top: -40px; } #box .arrow .left,.right{ display: inline-block; line-height: 80px; width: 50px; height:80px; } #box .arrow .left:hover{ background:rgba(0,0,0,0.8); } #box .arrow .right:hover{ background:rgba(0,0,0,0.8); } #box .arrow .right{ text-align: right; position: absolute; right:0; } #box .arrow a{ font-size: 50px; color: #ffffff; } #box .btn{ position: absolute; bottom: 10px; left:50%; margin-left: -98.47px; text-align: center; } #box .btn li{ text-align: center; margin:0 5px; padding: 10px; float:left; background:white; border-radius:20%; cursor: pointer; transition: background 2s ease; } #box .btn .on{ background: #000; color:white; } @keyframes fade{ from{ opacity:.4; } to{ opacity:1; } }3.js部分
js设定让当前图片显示display:block,其他图片隐藏display:none;
js代码如下
window.onload=function () { var left=document.getElementsByClassName("left")[0]; var right=document.getElementsByClassName("right")[0]; var btn=document.getElementsByClassName("btn")[0].getElementsByTagName("li"); var box=document.getElementById("box"); var slideIndex=1; var index=1; var timer; //图片切换函数 showSlides(slideIndex); function showSlides(n) { var slides=document.getElementById("box").getElementsByTagName("img"); for(var i=0;i<slides.length;i++){ slides[i].style.display="none"; btn[i].className=""; } slides[slideIndex-1].style.display="block"; btn[slideIndex-1].className="on" } //箭头切换 left.onclick=function () { if(slideIndex>1) { slideIndex--; showSlides(slideIndex); }else { slideIndex=5; showSlides(slideIndex); } } right.onclick=function () { if(slideIndex<5) { slideIndex++; showSlides(slideIndex); }else { slideIndex=1; showSlides(slideIndex); } } //btn切换 for(var i=0;i<btn.length;i++){ btn[i].onclick=function () { var myslideIndex=this.getAttribute('slideIndex'); // var myindex=parseInt(this.getAttribute("index")); slideIndex=myslideIndex; showSlides(slideIndex); } } //自动播放 function play() { timer=setInterval(function () { right.onclick(); },4000); } function stop() { clearInterval(timer); } box.onmouseout=play; box.onmouseover=stop; play(); }精彩专题分享:jQuery图片轮播 JavaScript图片轮播 Bootstrap图片轮播
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
更新日志
2024年11月18日
2024年11月18日
- 【雨果唱片】中国管弦乐《鹿回头》WAV
- APM亚流新世代《一起冒险》[FLAC/分轨][106.77MB]
- 崔健《飞狗》律冻文化[WAV+CUE][1.1G]
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】