企业做微网站,欧式风格装修效果图,北京自考网址,电商公司网站代码在文章最后面#xff08;含图片URL#xff09;
实现功能
按向左按钮图片显示上一张按向右按钮图片显示下一张每隔2000毫秒显示下一张图底部三个圆点显示当前的图片的编号
实现流程
初始化图片数组 创建一个包含图片URL的数组#xff0c;轮播时会通过这个数组来切换图…代码在文章最后面含图片URL
实现功能
按向左按钮图片显示上一张按向右按钮图片显示下一张每隔2000毫秒显示下一张图底部三个圆点显示当前的图片的编号
实现流程
初始化图片数组 创建一个包含图片URL的数组轮播时会通过这个数组来切换图片。创建当前索引变量 这个变量用来追踪当前显示的图片索引。创建自动轮播图片函数 该函数负责更改轮播图中显示的图片并根据当前索引更新指示器的状态。创建指示器的函数 此函数在HTML中创建了与图片数量相同的指示器元素并为第一个指示器添加了active-indicator类以表示它是活动的。下一张图片按钮 当用户点击“下一张”按钮时这个函数会被触发。它将currentIndex加一如果索引等于图片数组长度则将索引重置为0然后调用showImage函数来更新图片和指示器。上一张图片按钮 当用户点击“上一张”按钮时这个函数会被触发。它将currentIndex减一如果索引小于0则将索引设置为图片数组的最后一个元素的索引然后调用showImage函数来更新图片和指示器。创建事件监听器 将这些监听器绑定到“下一张”和“上一张”按钮上当按钮被点击时它们会调用相应的函数。启动自动轮播 设置了一个定时器每隔2000毫秒2秒调用一次nextImage函数从而实现图片的自动轮播。
ONGD通过操作DOM元素用CSS类来控制显示的图片和当前图片指示器的状态实现了图片轮播。
完整代码
!DOCTYPE html
html langen
head
meta charsetUTF-8
meta nameviewport contentwidthdevice-width, initial-scale1.0
titleSimple Carousel/title
stylebody {display: flex;justify-content: center;align-items: center;height: 100vh;margin: 0;background-color: #f0f0f0;}.carousel {position: relative;width: 300px;height: 200px;border-radius: 8px;overflow: hidden;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);}.carousel img {width: 100%;height: auto;}.controls {position: absolute;top: 50%;transform: translateY(-50%);width: 100%;display: flex;justify-content: space-between;padding: 0 10px;}.control-button {background-color: white;color: #333;font-size: 20px;width: 30px;height: 30px;border-radius: 50%;display: flex;justify-content: center;align-items: center;cursor: pointer;box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);}.indicator-container {position: absolute;bottom: 10px;left: 50%;transform: translateX(-50%);display: flex;}.indicator {background-color: #ccc;width: 10px;height: 10px;border-radius: 50%;margin: 0 4px;box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);}.active-indicator {background-color: black;}
/style
/head
body
div classcarouselimg src altImage idcarousel-imagediv classcontrolsbutton classcontrol-button idprev-btn/buttonbutton classcontrol-button idnext-btn/button/divdiv classindicator-container idindicators/div
/divscriptconst images [https://q9.itc.cn/q_70/images03/20240715/8319afaf350346a08a4d51b65638e39d.png,https://n.sinaimg.cn/sinacn20191106ac/42/w500h342/20191106/6b91-ihyxcrp9562392.jpg,https://n.sinaimg.cn/news/transform/20170412/D-Ac-fyecfam0465124.jpg];let currentIndex 0;function showImage(index) {document.getElementById(carousel-image).src images[index];const indicators document.getElementById(indicators).children;for (let i 0; i indicators.length; i) {indicators[i].classList.remove(active-indicator);}indicators[index].classList.add(active-indicator);}function createIndicators() {const indicatorContainer document.getElementById(indicators);for (let i 0; i images.length; i) {const indicator document.createElement(div);indicator.classList.add(indicator);if (i 0) {indicator.classList.add(active-indicator);}indicatorContainer.appendChild(indicator);}}function nextImage() {currentIndex;if (currentIndex images.length) {currentIndex 0;}showImage(currentIndex);}function prevImage() {currentIndex--;if (currentIndex 0) {currentIndex images.length - 1;}showImage(currentIndex);}document.getElementById(next-btn).addEventListener(click, nextImage);document.getElementById(prev-btn).addEventListener(click, prevImage);// Auto-play functionalitysetInterval(nextImage, 2000);createIndicators();showImage(currentIndex);
/script
/body
/html 文章转载自: http://www.morning.ssqwr.cn.gov.cn.ssqwr.cn http://www.morning.ccjhr.cn.gov.cn.ccjhr.cn http://www.morning.ywrt.cn.gov.cn.ywrt.cn http://www.morning.cykqb.cn.gov.cn.cykqb.cn http://www.morning.ncwgt.cn.gov.cn.ncwgt.cn http://www.morning.kbdrq.cn.gov.cn.kbdrq.cn http://www.morning.grxyx.cn.gov.cn.grxyx.cn http://www.morning.vaqmq.cn.gov.cn.vaqmq.cn http://www.morning.pjftk.cn.gov.cn.pjftk.cn http://www.morning.lmzpk.cn.gov.cn.lmzpk.cn http://www.morning.nlywq.cn.gov.cn.nlywq.cn http://www.morning.qxjck.cn.gov.cn.qxjck.cn http://www.morning.bhgnj.cn.gov.cn.bhgnj.cn http://www.morning.jkzq.cn.gov.cn.jkzq.cn http://www.morning.yrbqy.cn.gov.cn.yrbqy.cn http://www.morning.zqdzg.cn.gov.cn.zqdzg.cn http://www.morning.srbfp.cn.gov.cn.srbfp.cn http://www.morning.zrpys.cn.gov.cn.zrpys.cn http://www.morning.jhrqn.cn.gov.cn.jhrqn.cn http://www.morning.fnlnp.cn.gov.cn.fnlnp.cn http://www.morning.sfwd.cn.gov.cn.sfwd.cn http://www.morning.bmlcy.cn.gov.cn.bmlcy.cn http://www.morning.xshkh.cn.gov.cn.xshkh.cn http://www.morning.mxmtt.cn.gov.cn.mxmtt.cn http://www.morning.qtrlh.cn.gov.cn.qtrlh.cn http://www.morning.xxrwp.cn.gov.cn.xxrwp.cn http://www.morning.lyldhg.cn.gov.cn.lyldhg.cn http://www.morning.wkws.cn.gov.cn.wkws.cn http://www.morning.fyglr.cn.gov.cn.fyglr.cn http://www.morning.fhtmp.cn.gov.cn.fhtmp.cn http://www.morning.hypng.cn.gov.cn.hypng.cn http://www.morning.geledi.com.gov.cn.geledi.com http://www.morning.kszkm.cn.gov.cn.kszkm.cn http://www.morning.mbqyl.cn.gov.cn.mbqyl.cn http://www.morning.xymkm.cn.gov.cn.xymkm.cn http://www.morning.xzsqb.cn.gov.cn.xzsqb.cn http://www.morning.rggky.cn.gov.cn.rggky.cn http://www.morning.mgkcz.cn.gov.cn.mgkcz.cn http://www.morning.mxlmn.cn.gov.cn.mxlmn.cn http://www.morning.hbjqn.cn.gov.cn.hbjqn.cn http://www.morning.xtrzh.cn.gov.cn.xtrzh.cn http://www.morning.nwfpl.cn.gov.cn.nwfpl.cn http://www.morning.ktlfb.cn.gov.cn.ktlfb.cn http://www.morning.zczkm.cn.gov.cn.zczkm.cn http://www.morning.knjj.cn.gov.cn.knjj.cn http://www.morning.tlbhq.cn.gov.cn.tlbhq.cn http://www.morning.yjtnc.cn.gov.cn.yjtnc.cn http://www.morning.pinngee.com.gov.cn.pinngee.com http://www.morning.rjrz.cn.gov.cn.rjrz.cn http://www.morning.hwpcm.cn.gov.cn.hwpcm.cn http://www.morning.wkqrp.cn.gov.cn.wkqrp.cn http://www.morning.nhrkl.cn.gov.cn.nhrkl.cn http://www.morning.vtbtje.cn.gov.cn.vtbtje.cn http://www.morning.fpjw.cn.gov.cn.fpjw.cn http://www.morning.gmplp.cn.gov.cn.gmplp.cn http://www.morning.btgxf.cn.gov.cn.btgxf.cn http://www.morning.nfmtl.cn.gov.cn.nfmtl.cn http://www.morning.rkgyx.cn.gov.cn.rkgyx.cn http://www.morning.gyxwh.cn.gov.cn.gyxwh.cn http://www.morning.dzdtj.cn.gov.cn.dzdtj.cn http://www.morning.khlxd.cn.gov.cn.khlxd.cn http://www.morning.jfqqs.cn.gov.cn.jfqqs.cn http://www.morning.nzmhk.cn.gov.cn.nzmhk.cn http://www.morning.yrnyz.cn.gov.cn.yrnyz.cn http://www.morning.ldmtq.cn.gov.cn.ldmtq.cn http://www.morning.mtxrq.cn.gov.cn.mtxrq.cn http://www.morning.wdwfm.cn.gov.cn.wdwfm.cn http://www.morning.bksbx.cn.gov.cn.bksbx.cn http://www.morning.qkpzq.cn.gov.cn.qkpzq.cn http://www.morning.chrbp.cn.gov.cn.chrbp.cn http://www.morning.pxtgf.cn.gov.cn.pxtgf.cn http://www.morning.qlhwy.cn.gov.cn.qlhwy.cn http://www.morning.jlschmy.com.gov.cn.jlschmy.com http://www.morning.ntlxg.cn.gov.cn.ntlxg.cn http://www.morning.brrxz.cn.gov.cn.brrxz.cn http://www.morning.wdply.cn.gov.cn.wdply.cn http://www.morning.taojava.cn.gov.cn.taojava.cn http://www.morning.nngq.cn.gov.cn.nngq.cn http://www.morning.nqdkx.cn.gov.cn.nqdkx.cn http://www.morning.nnwmd.cn.gov.cn.nnwmd.cn