WEB机试题--最大透明度轮播效果

<style>
    *{
        margin: 0;
        padding: 0;
    }
    html,body{
        width: 100%;
        height: 100%;
    }
    ul,ol{
        list-style:none;
    }
    #banner {
        width: 100%;
        height: 500px;
        position: relative;
    }
    #banner > .Lun {
        width: 100%;
        height: 500px;
        overflow: hidden;
    }
    ul{
        width: 100%;
        height: 500px;
    }

    ul.lunBo > li {
        width: 100%;
        height: 500px;
        position: absolute;
        left: 0;
        top: 0;
    }

    ul.lunBo > li:nth-child(1) {
        background: url("images/banner1.jpg") no-repeat center/100% 100%;
        opacity: 1;
    }

    ul.lunBo > li:nth-child(2) {
        background: url("images/banner2.jpg") no-repeat center/100% 100%;
        display: none;
        opacity: 0;
    }

    #banner ul.lunBo > li:nth-child(3) {
        background: url("images/banner3.jpg") no-repeat center/100% 100%;
        display: none;
        opacity: 0;
    }

    ul.lunBo > li:nth-child(4) {
        background: url("images/banner4.jpg") no-repeat center/100% 100%;
        display: none;
        opacity: 0;
    }

    ul.lunBo > li:nth-child(5) {
        background: url("images/banner5.jpg") no-repeat center/100% 100%;
        display: none;
        opacity: 0;
    }

    ul.lunBo > li:nth-child(6) {
        background: url("images/banner6.jpg") no-repeat center/100% 100%;
        display: none;
        opacity: 0;
    }

    ol.circle {
        position: absolute;
        bottom: 20px;
        left: 50%;
        margin-left: -120px;
        z-index: 99;
    }

    ol.circle > li {
        cursor: pointer;
        float: left;
        margin: 0 5px;
        color: white;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        border-radius: 15px;
        background-color: #86685e;
    }
    ol.circle > li.Lun_current {
        background-color: #d3161b;
    }
</style>
<!--banner轮播部分-->
<div id="banner">
	<!--轮播图片部分-->
	<div class="Lun">
		<ul class="lunBo">
			<li></li><li></li>
			<li></li><li></li>
			<li></li><li></li>
		</ul>
		<ol class="circle">
			<li class="Lun_current">1</li>
			<li>2</li>
			<li>3</li>
			<li>4</li>
			<li>5</li>
			<li>6</li>
		</ol>
	</div>
</div>
<script src="js/jquery-1.11.3.js"></script>
<script>
    // 最大的透明度轮播图效果---------------------------------------↓
    (function setBigBannerStyle(document,window,event){
        var index=0;
        var timer=setInterval(autoPlay,3000);
        function autoPlay() {
            //变化大图
            index++;
            if (index>$("div.Lun>ul.lunBo>li").length-1){
                index=0;
            }
            setAnimate(index);
        }
        //先获取li的宽高
        var sWidth=$("div.Lun>ul.lunBo>li").width();
        var sHeight=$("div.Lun>ul.lunBo>li").height();
        //鼠标移入移暂停与开始 并且把li变大变小
        $("div.Lun").hover(function () {
            clearInterval(timer);
            console.log(2);
            //放大
            $("div.Lun>ul.lunBo>li").stop().animate({
                width:sWidth*1.1,
                height:sHeight*1.1,
                marginLeft:-sWidth*0.05,
                marginTop:-sHeight*0.05
            },2000)
        },function () {
            timer=setInterval(autoPlay,3000)
            //缩小
            $("div.Lun>ul.lunBo>li").stop().animate({
                width:sWidth,
                height: sHeight,
                marginLeft:0,
                marginTop:0
            },2000)
        });
        //小圆点 鼠标点击事件
        $("div.Lun>ol.circle>li").click(function () {
            console.log(1);
            index=$(this).index();
            setAnimate(index);
        });
        function setAnimate(index) {
            $("div.Lun>ul.lunBo>li").eq(index).show()
                .stop().animate({
                opacity:1
            },2000)
                .siblings().stop().animate({
                opacity:0
            },2000,function () {
                $(this).css("display","none");
            });
            //变化小圆点
            $("div.Lun>ol.circle>li").eq(index).addClass("Lun_current")
                .siblings().removeClass("Lun_current")
        }
    })(document,window,event)

    // 最大的透明度轮播图效果---------------------------------------↑
</script>

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值