美文网首页
13.轮播(练习)

13.轮播(练习)

作者: Unrav | 来源:发表于2017-08-19 22:51 被阅读0次

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>轮播图</title>
<script src="../0307/jquery-3.1.1.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css">
.content{
width: 520px;
height: 280px;
margin: 0 auto;
position: relative;
}
.content .pic a{
position: absolute;
top: 0;
left: 0;
display: none;
}
.content .pic a.current{
display: block;
}
.content .indicator{
position: absolute;
left: 10px;
bottom: 10px;
color: white;
}
.content .indicator span{
background-color: black;
display: inline-block;
width: 20px;
height: 20px;
text-align: center;
line-height: 20px;
margin-left: 5px;
cursor: pointer;
box-sizing: border-box;
}
.content .indicator span.active{
background-color: red;
border: 1px solid blue;
}

    .content .page{
        position: absolute;
        right: 20px;
        bottom: 10px;
        color: white;
    }
    .content .page span{
        display: inline-block;
        width: 30px;
        height: 30px;
        background-color: rgba(100,100,100,0.7);
        text-align: center;
        line-height: 30px;
        font-size: 20px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        cursor: pointer;
    }
    .content .page span:hover{
        background-color: rgba(100,100,100,0.95);
    }
    
</style>

</head>
<body>
    
    <div class="content">
        <div class="pic">
            <a class="current" href="">![](img/1.jpg)</a>
            <a href="">![](img/2.jpg)</a>
            <a href="">![](img/3.jpg)</a>
            <a href="">![](img/4.jpg)</a>
            <a href="">![](img/5.jpg)</a>
        </div>
        
        <div class="indicator">
            <span class="active">1</span>
            <span>2</span>
            <span>3</span>
            <span>4</span>
            <span>5</span>
        </div>
        
        <div class="page">
            <span class="prev"><</span>
            <span class="next">></span>
        </div>
        
    </div>
    
    
</body>

</html>
<script type="text/javascript">

$(function(){
    // 记录图片的索引,初始是第一张
    var index = 0;
    var timer = setInterval(nextImg,3000);
    
    // 下一张图
    function nextImg(){

// index++;
// index = index == $('.content .pic a').length - 1 ? 0 : index+1;
// 与上面的三目运算等价的
if(index == $('.content .pic a').length - 1)
{
index = 0;
}else
{
index++;
}

        showImg();
    }
    
    // 上一张图
    function prevImg(){

// index = index == 0 ? $('.content .pic a').length - 1 : index - 1;
// 与上面的三目运算等价的
if(index == 0)
{
index = $('.content .pic a').length - 1;
}
else{
index--;
}

        showImg();
    }
    
    // 切换图片用的函数
    function showImg(){
        // 链式调用
        $('.content .pic a')
        .eq(index).show()
        .siblings().hide();
        $('.content .indicator span')
        .eq(index).addClass('active')
        .siblings().removeClass('active');
    }
    // 上一张的点击方法
    $('.content .page .prev').click(function(){
        prevImg();
        
    });
    // 下一张的点击方法
    $('.content .page .next').click(function(){
        nextImg();
        
    });

    //  鼠标移动时改变图片
    $('.content .indicator span').hover(function(){
        clearInterval(timer);
        index = $(this).index();
        showImg();
    },function(){
        timer = setInterval(nextImg,3000);
    });
    
    //鼠标移动时停止图片滚动
    $('.content .pic a').hover(function(){
    clearInterval(timer)
},function(){
    timer = setInterval(nextImg,3000)
})
});

</script>

相关文章

  • 13.轮播(练习)

    轮播图 .content{width: 520px;height: 2...

  • 13.轮播图组件优化

    前言:上篇讲了vue里面轮播图组件的使用,还有有个小问题可以优化一下。 1、焦点问题 我们看到这里的焦点会有一个默...

  • 练习 图片轮播

  • swift 简单的轮播原理

    最近在练习swift,偶然看到一个轮播的demo,之前在oc里,轮播直接想到的就是三方SDCycleScrollV...

  • 8月第一周

    7.31 -1- 原生JS的轮播 用惯了swiper,今天练习一下原生JS的轮播写法 -2- Flex 的兼容性 ...

  • Swift轮播图

    最近在学习swift,就用swift实现轮播图来练习一下 轮播图的创建有两种方式: 显然使用collectionV...

  • ViewPager图片轮播小练习

    1. 图片轮播 学习资料: Viewpager实现真正的无限滑动,拒绝Integer.MAX_VALUE 安卓日记...

  • 无标题文章

    轮播图分为:传统轮播图、间歇轮播图、呼吸轮播图、无缝滚动轮播图等。它们各具特色,各有用处。 1.传统轮播图 第一步...

  • 项目-轮播图

    整个轮播图分为三部分:轮播指标、轮播项目及轮播导航。用boostrap实现轮播图要比用js、jQuery方便的多,...

  • 轮播图

    轮播图分为:传统轮播图、间歇轮播图、呼吸轮播图、无缝滚动轮播图等。 1.传统轮播图 第一步,得到元素 第二步,设置...

网友评论

      本文标题:13.轮播(练习)

      本文链接:https://www.haomeiwen.com/subject/hcexdxtx.html