2

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>

​</p>

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 被点击”时,它们会向左移动。我希望 div 在按 1-2-3-4-5-1 顺序单击左动画按钮时向左移动,并在按顺序 1-5-4-3-2 单击右动画按钮时向右移动-1。我已经在这个论坛上发布了一个类似的问题,但我错误地接受了答案,即使它们不是我想要的。我的错误我的问题不够清楚。如果我在这里要求一个大代码,我很抱歉。感谢所有帮助。这是指向http://jsfiddle.net/ykbgT/4151/的链接 这是所需的功能:http ://basic-slider.com/虽然不是很好看!!

4

1 回答 1

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 对象作为参数。第一个是您希望向左前进的按钮。第二个是您希望向右推进的按钮。第三个是您要滑动的项目。

于 2012-11-19T09:10:56.907 回答