淘宝轮播图

无人久伴 提交于 2020-02-06 05:24:09
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>淘宝轮播图</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        li{
            list-style: none;
        }
        .tb-promo{
            /* 子绝父相 */
            position: relative;
            height: 280px;
            width: 520px;
            background-color: pink;
            /* 盒子居中对齐 */
            margin: 100px auto;
        }
        /* 强制规定图片的大小和盒子的大小相同 */
        .tb-promo img{
            width: 520px;
            height: 280px;
        }
        .prev,
        .next{
            /* 箭头是压住盒子的 所以?浮动?不容易做--不占有位置所以用绝对定位 */
            position: absolute;
            top:50%;
            margin-top: -15px;
            /* 加了绝对定位的盒子可以直接设置高度和宽度 */
            width: 20px;
            height: 30px;
            background:rgba(0,0,0,.3);
            /* 文字水平居中,垂直居中 */
            text-align: center;
            line-height: 30px;
            color: #fff;
            /* 去掉下划线 */
            text-decoration: none;
        }
        .prev{
            left:0;
            border-top-right-radius: 15px;
            border-bottom-right-radius: 15px;
        }
        .next{
            right: 0;
            border-top-left-radius: 15px;
            border-bottom-left-radius: 15px;
        }
        .promo-nav{
            /* 绝对定位 */
            position: absolute;
            bottom: 15px;
            left:50%;
            margin-left: -35px;
            width: 70px;
            height: 13px;
            background-color: rgba(255,255,255,.3);
            border-radius: 7px;
        }
        .promo-nav li{
            float: left;
            width: 8px;
            height: 8px;
            background-color: #fff;
            border-radius: 50%;
            margin: 3px;
        }
        .promo-nav .selected{
            background-color: #ff5000;
        }
    </style>
</head>
<body>
    <div class="tb-promo">
        <!-- 图片 -->
        <img src="images/tb.jpg" alt="">
        <!-- 左侧符号 -->
        <a href="#" class="prev">&lt;</a>
        <!-- 右侧符号 -->
        <a href="#" class="next">&gt;</a>
        <!-- 下面的小圆点 -->
        <ul class="promo-nav">
            <li class="selected"></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
        </ul>
    </div>
</body>
</html>

在这里插入图片描述

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!