轮播图(点击小点点让他跳转到具体某一张)
轮播图的原理前几篇说过一些 现在加上一些点点击让他轮播 具体就是自己添加一个标签,获取之后知道他是哪一张进行显示就可以了。 下面是代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> ul{ list-style: none; } .item{ height: 200px; width: 200px; font-size: 20px; text-align: center; /* margin: auto auto; */ display: none; transition: all .3s; position: relative; } .item.show{ display:block ; } .item:nth-child(1){ background-color: red; } .item:nth-child(2){ background-color: rosybrown; } .item:nth-child(3){ background-color: royalblue; } .item:nth-child(4){ background-color:aquamarine ; } .item:nth-child(5){