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 がクリックされる」と、左側に移動します。左のアニメーション ボタンが 1-2-3-4-5-1 の順序でクリックされたときに div が左に移動し、右のアニメーション ボタンが 1-5-4-3-2 の順序でクリックされたときに右に移動するようにします。 -1. 私はすでにこのフォーラムに同様の質問を投稿しましたが、探していたものとは違っていたにもかかわらず、誤って回答を受け入れました. 私の間違いは、私の質問で十分に明確ではありませんでした。ここで大きなコードを求めている場合は申し訳ありません。すべての助けに感謝します。これhttp://jsfiddle.net/ykbgT/4151/へのリンクです。

4

1 に答える 1

1

これを見てくださいhttp://jsfiddle.net/tppiotrowski/VLzN4/1/

既存の CSS と HTML を使用し、Javascript のみを変更しました。あなたの質問は、divをクリックするという元の機能が必要ではなく、代わりに2つのボタンを使用したいことを暗示していると思います. スライドを進める 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'));​
});

この関数は、3 つの jquery オブジェクトを引数として取ります。1 つ目は、左に進みたいボタンです。2 番目は、右に進みたいボタンです。3 つ目は、スライドさせたい項目です。

于 2012-11-19T09:10:56.907 に答える