This article shares the specific code of js to achieve the effect of the carousel map for your reference. The specific content is as follows 1. HTML part <div id="box"> <ul> <li class="show"><img src="img/1.jpg" alt=""></li> <li><img src="img/2.jpg" alt=""></li> <li><img src="img/3.jpg" alt=""></li> <li><img src="img/4.jpg" alt=""></li> <li><img src="img/5.jpg" alt=""></li> <li><img src="img/6.jpg" alt=""></li> </ul> <img src="img/l.png" alt="" id="lef"> <img src="img/r.png" alt="" id="rig"> <ol> <li class="focus" data-i = "0"></li> <li data-i = "1"></li> <li data-i = "2"></li> <li data-i = "3"></li> <li data-i = "4"></li> <li data-i = "5"></li> </ol> </div> 2. js part <script> var liList = document.querySelectorAll("#box ul li") var olList = document.querySelectorAll("#box ol li") var rig = document.getElementById("rig") var lef = document.getElementById("lef") var index = 0 function setLi(){ for(var i = 0;i <liList.length;i++){ liList[i].className = "" olList[i].className = "" } liList[index].className = "show" olList[index].className = "focus" } //Rightrig.onclick = function(){ if(index !== 5){ index++ } if(index === 5){ index = 0 } setLi() } //Left lef.onclick = function(){ if(index !== 0){ index-- } if(index === 0){ index = 5 } setLi() } //Point for(var i = 0;i < olList.length;i++){ olList[i].onclick = function(){ index = this.getAttribute("data-i") setLi() } } // Timing var autoPlay = setInterval( function(){ rig.click() },3000) //Move the mouse over to stop playing var box = document.querySelector("div") box.onmouseenter = function(){ clearInterval(autoPlay) } // Move the mouse away and continue playing box.onmouseleave = function(){ autoPlay = setInterval( function(){ rig.click() },3000) } </script> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to implement second-level scheduled tasks with Linux Crontab Shell script
>>: mysql obtains statistical data within a specified time period
What is routing? Routing refers to the activity o...
<br />This is not only an era of information...
Preface I have an old laptop with Win7. In order ...
Table of contents Parsing .vue files Extract docu...
A simple cool effect achieved with CSS3 animation...
Table of contents 1. Container lifecycle manageme...
Table of contents 1.1. Network access between con...
123WORDPRESS.COM--HTML超文本标记语言速查手册<!-- --> !D...
Table of contents Preface Computed properties Int...
Don't be surprised if you see some kind of und...
Table of contents 1. Introduction to gojs 2. Gojs...
Table of contents 01-Event Bubbling 1.1- Introduc...
The best thing you can do for your data and compu...
No way, no way, it turns out that there are peopl...
Problem: The website published through IIS is pla...