美文网首页
day10-作业

day10-作业

作者: 旧时初_2e8d | 来源:发表于2018-08-27 20:25 被阅读0次

    1、实现全选、全不选、反选

            <title>全选、全不选、反选</title>
            <script src="test112/jquery/jquery-1.11.3.min.js" type="text/javascript" charset="utf-8"></script>
        </head>
        <body>
            <li><input type="checkbox"/>库里</li>
            <li><input type="checkbox"/>欧文</li>
            <li><input type="checkbox"/>格林</li>
            <li><input type="checkbox"/>詹姆斯</li>
            <li><input type="checkbox"/>杜兰特</li>
            <li><input type="checkbox"/>汤普森</li>
            <li><input type="checkbox"/>吉诺比利</li>
            <li><input type="checkbox"/>科比</li>
            <li><input type="checkbox"/>奥尼尔</li>
            <li><input type="checkbox"/>加内特</li>
            <button>全选</button>
            <button>全不选</button>
            <button>反选</button>
        </body>
    </html>
    <script type="text/javascript">
    //全选
    $(function(){
        $('button:eq(0)').click(function(){
            $('input').prop('checked',true)
        })
    
    //全不选   
    
        $('button:eq(1)').click(function(){
            $('input').prop('checked',false)
        })  
    //反选
        $('button:eq(2)').click(function(){
            //遍历每一个input执行each的操作
            $('input').each(function(i){
                var test = $(this).prop('checked')
                $(this).prop('checked',!test)
                })
        })
    })
    
    

    2、选项卡

        <title>选项卡</title>
        <style>
        button {
            width: 200px;
            height: 100px;
            font-size: 40px;
            background-color: pink;
            margin-left: 50px;
            display: inline-block;
        }
        div {
            width: 970px;
            height: 600px;
            font-size: 50px;
            background-color: yellow;
            margin-left: 50px;
            margin-top: 50px;
            display: none;
        }
        .active {
            font-size: 50px;
            background-color: blue;
        }
        .show {
            display: block;
        }
        </style>
        <script src="https://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
    </head>
    <body>
        <button class="active">周杰伦</button>
        <button>王力宏</button>
        <button>张学友</button>
        <button>刘德华</button>
        <div class="show">菊花台、千里之外、七里香、霍元甲、听妈妈的话、稻香、双节棍、简单爱</div>
        <div>花田错、龙的传人、唯一</div>
        <div>慢慢、吻别、一千个伤心的理由</div>
        <div>谢谢你的爱、冰雨、天意、忘情水</div>
    </body>
    </html>
    <script>
    $('button').click(function () {
        // 先将所有的class去掉,然后给指定的添加
        // $('button').removeClass('active')
        // $(this).addClass('active')
        $(this).addClass('active').siblings().removeClass('active')
        // 应该显示第几个div
        var index = $('button').index($(this))
        // 将指定的div添加样式,其他div删除样式
        $('div').eq(index).addClass('show').siblings().removeClass('show')
    })
    </script>
    
    

    3、汽车轮播

    <title>汽车轮播 </title>
    <style>
    *{padding:0;margin:0;list-style:none;}
    .clearfix:after{display:block;content:'';clear:both;}
    .box{width:360px;height:212px;margin:0 auto;position:relative;overflow: hidden;}
    .ul_list{position:absolute;bottom:20px;left:50%;margin-left:-65px;}
    .ul_list li{float:left;width:20px;height:20px;background:#fff;border-radius:50%;margin-left:5px;border:2px solid red;}
    .pic{width:1800px;}
    .pic img{float:left;}
    .ul_list .active{width:20px;height:20px;background:red;border-radius:50%;margin-left:5px;border:2px solid #fff;}
    </style>
    
    <script src="https://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
    </head>
    <body>
        <div class="box">
            <div class="pic clearfix" id='pic'>
                <img src="img/1.jpg" class="show"/>
                <img src="img/2.jpg" />
                <img src="img/3.jpg" />
                <img src="img/4.jpg" />
                <img src="img/5.jpg" />
            </div>
            <ul class="ul_list" id='ul_btn'>
                <li class="active"></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
            </ul>
        </div>
    </body>
    </html>
    <script>
    $('#ul_btn > li').mouseover(function () {
        // 先将下面选中小点切换,当前添加样式,其它删除样式
        $(this).addClass('active').siblings().removeClass('active')
    
        // 对于图片的显示,应该移动div的left值
        var index = $('#ul_btn > li').index($(this))
        // $('#pic > img').eq(index).addClass('show').siblings().removeClass('show')
    
        $('#pic').animate({'margin-left': -index * 360}, 500)
    })
    </script>
    
    

    4、爱奇艺

    <title>爱奇艺</title>
    <style>
        *{ padding:0; margin:0; list-style:none;}
        .piclist{ height:410px; width:100%; position:relative;}
        .piclist li{height:410px; opacity:0; width:100%; position:absolute; top:0; left:0;}
        .li1{ background:url(img/bg.jpg) center; }
        .li2{ background:url(img/bg1.jpg) center; }
        .li3{ background:url(img/bg2.jpg) center; }
        .li4{ background:url(img/bg3.jpg) center; }
        .li5{ background:url(img/bg4.jpg) center; }
        .li6{ background:url(img/bg5.jpg) center; }
        .li7{ background:url(img/bg6.jpg) center; }
        .li8{ background:url(img/bg7.jpg) center; }
        .li9{ background:url(img/bg8.jpg) center; }
        .li10{ background:url(img/bg9.jpg) center; }
        .btnlist{ width:200px; height:300px; padding:14px 18px 40px; background:url(img/site-focuslist_bg.png); position:absolute; top:0; right:30px;}
        .btnlist li{ height:33px; line-height:33px; }
        .btnlist a{ color:#FFF; font-size:12px; text-decoration:none; display:block; padding-left:10px;}
        .active{ background:#396;}
        .piclist .show{ opacity:1;}
    </style>
    <script src="https://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
    </head>
    
    <body>
        <ul class="piclist" id="pic">
            <li class="li1 show"></li>
            <li class="li2"></li>
            <li class="li3"></li>
            <li class="li4"></li>
            <li class="li5"></li>
            <li class="li6"></li>
            <li class="li7"></li>
            <li class="li8"></li>
            <li class="li9"></li>
            <li class="li10"></li>
        </ul>
        <ol class="btnlist" id="btn">
            <li class="active"><a href="#">超模:MISS亲授维密性感秘籍</a></li>
            <li><a href="#">超模:MISS亲授维密性感秘籍</a></li>
            <li><a href="#">超模:MISS亲授维密性感秘籍</a></li>
            <li><a href="#">超模:MISS亲授维密性感秘籍</a></li>
            <li><a href="#">超模:MISS亲授维密性感秘籍</a></li>
            <li><a href="#">超模:MISS亲授维密性感秘籍</a></li>
            <li><a href="#">超模:MISS亲授维密性感秘籍</a></li>
            <li><a href="#">超模:MISS亲授维密性感秘籍</a></li>
            <li><a href="#">超模:MISS亲授维密性感秘籍</a></li>
            <li><a href="#">超模:MISS亲授维密性感秘籍</a></li>
        </ol>
    </body>
    </html>
    <script>
    $(function () {
        $('#btn > li').mouseover(function () {
            $(this).addClass('active').siblings().removeClass('active')
            // 显示对应的图片
            var index = $('#btn > li').index($(this))
            // 动画的将透明度修改为1,图片就会显示出来
            $('#pic > li').eq(index).stop().animate({opacity: 1}, 500).siblings().stop().animate({opacity: 0}, 500)
        })
    })
    </script>
    
    
    

    相关文章

      网友评论

          本文标题:day10-作业

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