jq封装之手风琴

jquery封装部分

$.fn.acc = function (colors, width) {
    colors = colors || []
    width = width || 100;
    var $li = this.find("li");
    var maxlength = this.width() - width * ($li.length - 1);
    var avglength = this.width() / $li.length;

    $li.mouseenter(function () {
        $(this).stop().animate({width: maxlength}).siblings().stop().animate({width: width})
    })
    $li.mouseleave(function () {
        $li.stop().animate({width: avglength})
    })


}

html部分

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>

        * {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        div {
            width: 1200px;
            height: 400px;
            /*border: 2px solid #000;*/
            margin: 100px auto;
            overflow: hidden;
        }
        ul{
            width: 1220px;
        }

        li {
         Apx;
            float: left;
        }

    </style>
</head>
<body>

<div id="box">

    <ul>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
    </ul>

</div>

<script src="js/jquery-1.12.4.js"></script>
<script src="js/jquery.acc.js"></script>
<script>


     $("#box li").each(function (index,ele) {
         $(ele).css("backgroundImage","url(images/"+(index+1)+".jpg)")
     })
     $("#box").acc();
   

</script>

</body>
</html>

猜你喜欢

转载自blog.csdn.net/Mei12656276/article/details/87865975