0

良い一日

私がやりたいことは次のとおりです。

Headlines ...........

テキストが下にスクロールし、特定の遅延のたびに停止し、次のテキスト行のスクロールを再開すると想像してください

それ、どうやったら出来るの?http://jsfiddle.net/BM2Cq/でホバーを見つけました。テキストの上にホバーすると停止します。

私もホバーを組み込みたいです:)

私が今得たコードはheresです:

<marquee class="tracks_marquee" direction="down" height="28" scrollamount="3" >Headline Text</marquee>
$(document).ready(function()
    {
        (".tracks_marquee").hover(function()
                                   {
                                       $(this).attr("scrollamount","0");
                                       $(this).start();

                                   },
                                   function()
                                   {
                                       $(this).attr("scrollamount","2");                                             $(this).stop();
                                   })


                  })

ありがとう:D

4

1 に答える 1