jquery轮播

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>无缝轮播</title>
</head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<style>
    /* 全局样式设置 */
    * {
        margin: 0;
        padding: 0;
    }

    h1 {
        text-align: center;
        /*line-height: 100px;*/
    }

    a {
        text-decoration: none;
    }

    /* 设置轮播图样式 */
    /* 图片显示样式 */
    .banner_slider {
        position: relative;
        background-color: green;
        margin: 0 auto;
        width: 500px;
        height: 380px;
        overflow: hidden;
    }

    .banner_slider_pics {
        width: 3000px;
        height: 100%;
        margin: 0 auto;
        position: relative;
        left: -500px;
    }

    .banner_slider_pics>a {
        width: 500px;
        height: 380px;
        display: block;
        float: left;
        text-align: center;
    }

    .banner_slider_pics>a>img {
        width: 100%;
        height: 380px;
    }

    /* 上一张,下一张按钮样式 */
    .banner_slider_arrow {
        width: 500px;
        height: 40px;
        position: absolute;
        left: 0;
        bottom: 50%;
        margin-bottom: -20px;
    }

    .arrow_item {
        font-size: 25px;
        font-weight: bold;
        color: #fff;
        background-color: rgba(0, 0, 0, .6);
        opacity: .6;
    }

    .arrow_item:hover {
        opacity: .8;
    }

    .prev {
        position: absolute;
        left: 10px;
        padding: 10px 7px 10px 7px;
    }

    .next {
        position: absolute;
        right: 10px;
        padding: 10px 7px 10px 7px;
    }

    /* 圆点按钮 */
    .banner_slider_dots {
        width: 100%;
        height: 30px;
        line-height: 30px;
        position: absolute;
        bottom: 10px;
        text-align: center;
    }

    .dots_item {
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: #999;
        border-radius: 50%;
        border: 3px solid #fff;
        margin-right: 10px;
    }

    .dots_active {
        background-color: #fff;
        border-color: orange;
    }
</style>
<script>
    window.onload = function () {
        var banner_slider = $('#banner_slider'),
            pics = $('#banner_slider_pics'),
            items = $('#banner_slider_pics a'),
            pic_width = items.eq(0).width(),
            dots = $('#banner_slider_dots a'),
            btn_prev = $('#arrow_prev'),
            btn_next = $('#arrow_next'),
            current = 0,
            timmer = null,
            size = dots.size();
        // 定义一个鼠标滑过判断事件
        banner_slider.hover(function () {
            clearInterval(timmer);
        }, function () {
            timmer = setInterval(slider, 3000);
        });
        function slider() {
            current++;
            doSlider();
        }
        function doSlider() {
            // 圆点按钮轮播
            dots.removeClass('dots_active').eq(current % size).addClass('dots_active');
            // 图片轮播
            pics.stop().animate({
                left: -(current + 1) * pic_width
            }, 100, function () {
                if (current == size) {
                    current = 0;
                    pics.css('left', -(current + 1) * pic_width + 'px');
                } else if (current == -1) {
                    current = size - 1;
                    pics.css('left', -(size) * pic_width + 'px');
                }
            });
        }
        timmer = setInterval(slider, 3000);
        // 点击上一张按钮切换图片
        btn_prev.click(function () {
            current--;
            doSlider();
        });
        // 点击下一张按钮切换图片	
        btn_next.click(function () {
            current++;
            doSlider();
        });
        // 点击圆点切换图片
        dots.click(function () {
            current = $(this).index();
            doSlider();
        });
    }
</script>

<body>
    <h1>无缝轮播</h1>
    <!-- 有缝轮播 -->
    <div class="banner_slider" id="banner_slider">
        <!-- 图片 -->
        <div class="banner_slider_pics" id="banner_slider_pics">
            <a href="#4">-1<img src="http://www.jq22.com/img/cs/500x500-2.png"></a>
            <a href="#1">0<img src="http://www.jq22.com/img/cs/500x500-1.png"></a>
            <a href="#2">1<img src="http://www.jq22.com/img/cs/500x300-1.png"></a>
            <a href="#3">2<img src="http://www.jq22.com/img/cs/300x500-1.png"></a>
            <a href="#4">3<img src="http://www.jq22.com/img/cs/500x500-2.png"></a>
            <a href="#1">4<img src="http://www.jq22.com/img/cs/500x500-1.png"></a>
        </div>
        <!-- 按钮 -->
        <div class="banner_slider_arrow">
            <a href="#5" class="arrow_item prev" id="arrow_prev">&lt;</a>
            <a href="#6" class="arrow_item next" id="arrow_next">&gt;</a>
        </div>
        <!-- 索引圆点 -->
        <div class="banner_slider_dots" id="banner_slider_dots">
            <a href="#7" class="dots_item dots_active"></a>
            <a href="#8" class="dots_item"></a>
            <a href="#9" class="dots_item"></a>
            <a href="#10" class="dots_item"></a>
        </div>
    </div>
</body>

</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值