12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- list-style: none;
- text-decoration: none;
- box-sizing: border-box;
- }
- #container {
- width: 590px;
- height: 470px;
- margin: 100px auto;
- position: relative;
- }
- #imgBox img{
- /* opacity 透明度
- 占位
- 点击事件仍会触发
- */
- opacity: 0;
- transition: opacity 1s linear;
- position: absolute;
- }
- #imgBox .active {
- opacity: 1;
- }
- .list {
- overflow: hidden;
- position: absolute;
- bottom: 10px;
- right: 10px;
- }
- .list li {
- float: left;
- width: 20px;
- height: 20px;
- background: #00f;
- color: #fff;
- font-size: 14px;
- text-align: center;
- line-height: 20px;
- border-radius: 50%;
- margin-right: 10px;
- }
- .list .selected {
- background: #ff0;
- color: #f00;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <div id="imgBox">
- <img class="active" src="../image/1.jpg" alt="">
- <img src="../image/2.jpg" alt="">
- <img src="../image/3.jpg" alt="">
- <img src="../image/4.jpg" alt="">
- <img src="../image/5.jpg" alt="">
- </div>
- <ul class="list">
- <li class="selected">1</li>
- <li>2</li>
- <li>3</li>
- <li>4</li>
- <li>5</li>
- </ul>
- </div>
- <script src="../js/1.淡入淡出轮播图.js"></script>
- </body>
- </html>
|