jquery,marquee计时器停止/去

时间:2011-03-28 19:24:55

标签: jquery html marquee

$('marquee').marquee('pointer').mouseover(function () {
        $(this).trigger('stop');
    }).mouseout(function () {
        $(this).trigger('start');
    }).mousemove(function (event) {
        if ($(this).data('drag') == true) {
            this.scrollLeft = $(this).data('scrollX') + ($(this).data('x') - event.clientX);
        }
    }).mousedown(function (event) {
        $(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
    }).mouseup(function () {
        $(this).data('drag', false);
    });

任何人都知道最好的方法是在3秒后停止计时器,暂停3秒然后继续?

谢谢!

1 个答案:

答案 0 :(得分:1)

试试这个:

this.stop();this.start()