0
<ul>
    <li><a href="#">one</a></li>
    <li><a href="#">two</a></li>
    <li><a href="#">three</a></li>
</ul>

liスライド効果を使って一度に1 枚だけ表示したい、それだけです。このような単純なものにプラグインを使用することは避けたいと思います。

よろしくお願いします。

4

2 に答える 2

4

正しい方向に向けるために、(あなたの説明に基づいて)あなたのために簡単なものを作成しました:

ここでチェックしてください: http://jsfiddle.net/meo/ACenH/234/

function slider(container, delay){
$container = $(container) // select the container elements and store them in a variable

if ( !$container.length ){ return fasle; } // checks if the slider exists in your dom. if not the function ends here...

    var slides = $container.length, // gives back the total LI's you have
        slide = 0 // set the actual li to show

        setInterval(function(){ // set a Interval for your main function
            if (slide == slides - 1) { // if the actual slide is equal the total slides (-1 because eq is 0 based and length gives back the number of elements in the jQuery object) the slide counter is set to 0
               $container.slideDown(); // and all slides a shown again
               slide = 0;
            } else {
              $container.eq(slide).slideUp(); //slides the selected slide up i think you could think of a solution with .next() instead of eq() 
              slide++; // slide counter +1
            }

        }, delay)

}

slider('ul > li', 2000); // call your slider function
于 2010-05-10T08:50:21.853 に答える
1

あなたの質問はすでにjqueryを選択したjavascriptフレームワークとして言及しています。開始できる最適な場所は、非表示に関するjqueryドキュメントです。

http://api.jquery.com/hide/

とスライド:

http://api.jquery.com/slideUp/
http://api.jquery.com/slideDown/
http://api.jquery.com/slideToggle/

于 2010-05-10T08:10:14.890 に答える