嘿,我有一个不错的新闻报道,它停止在mouseover等上,但是动画有点生涩-有什么想法吗?

var ticker_holder = $('#ticker').get(0);
            var ticker_text = $('#ticker').get(0);
            var ticker_pos = ticker_text.parentNode.offsetWidth;

            var ticker_data = "<strong>Featured: </strong>"
            +"HardCoded, DamnCool, AliveKicking, NinjaGaiden, WikiWord, FeaturedWords...";
            $(ticker_text).html('<marquee scrollamount="1" scrolldelay="20">' + ticker_data + '</marquee>');

            $('#ticker').hover(
                function() { $('marquee', this).get(0).stop();  },
                function() { $('marquee', this).get(0).start(); }
            );

最佳答案

不建议使用跑马灯标签。是在标准中定义的点头,避免使用它。尝试使用以下eseese插件之一:

  • http://remysharp.com/demo/marquee.html
  • http://www.givainc.com/labs/marquee_jquery_plugin.htm
  • http://www.vegabit.com/jquery_scroller/
  • 关于javascript - jQuery News Ticker-不够流畅,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4922695/

    10-12 16:25