HTML代码
我正在创建jquery图像滑块和该图像滑块的此html和css代码。
    
    
    
        

<style type="text/css">
#slider{overflow: hidden; width: 600px; height: 400px; position: relative; border: 4px solid #CCC; margin: auto;}
#slider ul{padding: 0; margin: 0; width: 2400px; position: relative; top: 0; left: 0;}
#slider ul li{list-style: none; float: left;}
#slider ul li img{width: 600px; height: 400px;}
.next{position: relative; left: 700px; }
.prev{position: relative; left: 500px; }
</style>

</head>
<body>
<div id="slider">
    <ul>
        <li><img src="2.jpg" /></li>
        <li><img src="3.jpg" /></li>
        <li><img src="4.jpg" /></li>
        <li><img src="5.jpg" /></li>
    </ul>
</div>
<button class="next">Next</button>
<button class="prev">prev</button>
</body>
</html>


JS代码
这是图像滑块的jQuery代码,其中下一个按钮正常工作,但是我尝试创建上一个按钮代码,但未成功。

 <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
        $(function(){
            var count = $("#slider ul li").length;
            var li_w = $("#slider ul li:first").width();
            var ul_w = count*li_w;
            var i = li_w;
            $(".next").click(function(){
                $("#slider ul").animate({"left":-i+"px"}, 1000);
                i+= li_w;
                if(i==ul_w){
                    i=0;
                }
            });

            $(".prev").click(function(){

            });
        });
    </script>

最佳答案

我对您的JavaScript进行了一些更改,但我认为这样更合乎逻辑。
在这里您可以尝试:http://jsfiddle.net/vkk52bz2/2/

$(function(){
    var count = $("#slider ul li").length;
    var li_w = $("#slider ul li:first").width();
    var ul_w = count*li_w;
    var i = 0; // start with the position 0
    $(".next").click(function(){
        i -= li_w; // subtract the width of a slide
        if(i==ul_w*-1){ // check if it hit the end
            i=0;
        }
        $("#slider ul").animate({"left":i+"px"}, 1000);
    });

    $(".prev").click(function(){
        i += li_w; // add the width of a slide
        if(i>0){ // check if it hit end
            i= ((count-1) * li_w) * -1;
        }
        $("#slider ul").animate({"left":i+"px"}, 1000);
    });
});

10-07 14:04