0

スライダーで直方体アニメーションのみが使用されるようにする方法を知っている人はいますか? スライス アクションは特に好きではありませんが、左から右、上から下の回転キューブ オプションが好きです。ドキュメントを確認しましたが、スライス アニメーションの向きを変更する方法、またはランダムに設定する方法しかわかりません。

ドキュメントで参照されている JS 設定は次のとおりです。

JS

$.Slicebox.defaults = {
    // (v)ertical, (h)orizontal or (r)andom
    orientation : 'h',
    // perspective value
    perspective : 1200,
    // number of slices / cuboids
    // needs to be an odd number 15 => number > 0 (if you want the limit higher,  change the _validate function).
    cuboidsCount : 5,
    // if true then the number of slices / cuboids is going to be random    (cuboidsCount is overwitten)
    cuboidsRandom : false,
    // the range of possible number of cuboids if cuboidsRandom is true
    // it is strongly recommended that you do not set a very large number :)
    maxCuboidsCount : 5,
    // each cuboid will move x pixels left / top (depending on orientation). The   middle cuboid doesn't move. the middle cuboid's neighbors will move disperseFactor pixels
    disperseFactor : 0,
    // color of the hidden sides
    colorHiddenSides : '#222',
    // the animation will start from left to right. The left most cuboid will be   the first one to rotate
    // this is the interval between each rotation in ms
    sequentialFactor : 150,
    // animation speed
    // this is the speed that takes "1" cuboid to rotate
    speed : 600,
    // transition easing
    easing : 'ease',
    // if true the slicebox will start the animation automatically
    autoplay : true,
    // time (ms) between each rotation, if autoplay is true
    interval: 3000,
    // the fallback will just fade out / fade in the items
    // this is the time fr the fade effect
    fallbackFadeSpeed : 300,
    // callbacks
    onBeforeChange : function( position ) { return false; },
    onAfterChange : function( position ) { return false; },
    onReady : function() { return false; }
};

たくさんあるので、すべてのjsコードをコピーしていません!

4

1 に答える 1