0

このプラグインをスライダーに利用します

サイト> http://basic-slider.com/documentation/script > https://github.com/jcobb/basic-jquery-slider/blob/807132214df170e1726e05f272fb75649687f268/js/basic-jquery-slider.js

基本的な構成は、画像の最後で停止することなく、ループスライダーを使用することです。これを可能にするために同じパラメータを変更/編集することは可能ですか?

ありがとう

4

1 に答える 1

0

明らかにそうではありません

defaults = {
// Width + Height used to ensure consistency
                width: 700,
                height: 300,
// The type of animation (slide or fade)
                animation: 'fade',
                // The duration in ms of the transition between slides
                animationDuration: 450,
                // Automatically rotate through the slides
automatic: true,
// Delay in ms between auto rotation of the slides
                rotationSpeed: 4000,
// Pause the slider when any elements receive a hover event
                hoverPause: true,
// Show the manual slider controls
                showControls: true,
// Center the controls vertically
                centerControls: true,
// Text to display in next/prev buttons
                nextText: 'Next',
                prevText: 'Prev',
// Show positional markers
                showMarkers: true,
// Center the positional indicators
                centerMarkers: true,
// Allow navigation with arrow keys
                keyboardNav: true,
// Use image title text as caption
                useCaptions: true
            }

また、それはスライダーのアイデアではありません。おそらくギャラリープラグインなどを使用する必要があります。おそらく、ここで見つけることができます:http: //vandelaydesign.com/blog/web-development/jquery-image-galleries/

于 2012-06-22T11:46:19.047 に答える