改变滑动div及其事件调用者的方式

时间:2012-11-19 06:27:15

标签: javascript jquery html

HTML部分:

<div id="container">

    <div id="box1" class="box">Div #1</div>
    <div id="box2" class="box">Div #2</div>
    <div id="box3" class="box">Div #3</div>
    <div id="box4" class="box">Div #4</div>
    <div id="box5" class="box">Div #5</div>
    <div id="box6" class="box">Div #6</div>
    <div> <button class="Animate">left Animation</button></div>
    <div> <button class="Animate2">right Animation</button></div>

</div>

Javascript部分:

$('.box').click(function() {

    $(this).animate({
        left: '-50%'
    }, 500, function() {
        $(this).css('left', '150%');
        $(this).appendTo('#container');
    });

    $(this).next().animate({
        left: '50%'
    }, 500);
});​

CSS部分:

body {
    padding: 0px;    
}

#container {
    position: absolute;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;  
}

.box {
    position: absolute;
    width: 50%;
    height: 300px;
    line-height: 300px;
    font-size: 50px;
    text-align: center;
    border: 2px solid black;
    left: 150%;
    top: 100px;
    margin-left: -25%;
}

#box1 {
    background-color: green;
    left: 50%;
}

#box2 {
    background-color: yellow;
}

#box3 {
    background-color: red;
}

#box4 {
    background-color: orange;
}

#box5 {
    background-color: blue;
}
#box6 {
    background-color: grey;
}​

当上面的代码被编译并且“点击页面中的div ”时,它们向左移动。当按顺序1-2-3-4-5-1单击左动画按钮时,我希望div向左移动,当按顺序1-5-4-3-2单击右动画按钮时,向右移动-1。我已经在这个论坛上发布了一个类似的问题,但我错误地接受了答案,即使它们并不是我想要的。我的错误在我的问题中我不够清楚。如果我在这里要求一个大代码,我很抱歉。所有的帮助表示赞赏。这是指向http://jsfiddle.net/ykbgT/4151/的链接 这是所需的功能:http://basic-slider.com/不是那么好看!!

1 个答案:

答案 0 :(得分:1)

看看这个http://jsfiddle.net/tppiotrowski/VLzN4/1/

我使用了您现有的CSS和HTML,只修改了Javascript。我认为你的问题暗示你不想要点击div的原始功能,而是想要使用这两个按钮。如果您希望我重新添加单击推进幻灯片的div功能,请发表评论。

$(function() {
    function createSlider(el_left, el_right, items) {
        var index = 0;
        el_left.click(function() {
            var $this = items.eq(index);
            $this.animate({
                left: '-50%'
            }, 500);
            index = (index + 1) % items.length;
            var $next = items.eq(index);
            $next.css('left', '150%');
            $next.animate({
                left: '50%'
            }, 500);
        });
        el_right.click(function() {
            var $this = items.eq(index);
            $this.animate({
                left: '150%'
            }, 500);
            index = (index - 1) % items.length;
            var $next = items.eq(index);
            $next.css('left', '-50%');
            $next.animate({
                left: '50%'
            }, 500);
        });
    }

    createSlider($('.Animate'), $('.Animate2'), $('.box'));​
});

此函数将三个jquery对象作为参数。第一个是您希望向左前进的按钮。第二个是您希望向右前进的按钮。第三个是您想要滑动的项目。