<div id="mqtext">text text text</div>
CSS
#mqtext{
position:absolute;
bottom:3px;
overflow:hidden;
white-space:nowrap;
cursor:pointer;
}
js
$('#mqtext').bind('marquee', function() {
var ob = $(this);
var tw = ob.width();
var ww = ob.parent().width();
ob.css({ right: -tw });
ob.animate({ right: ww }, 70000, 'linear', function() {
ob.trigger('marquee');
});
}).trigger('marquee');
これは単純なマーキー テキストで、機能しますが、マウスオーバーで停止しようとしています。
$('#mqtext').hover(function() {
$(this).stop();
});
これも機能し、テキストは停止しますが、カーソルが離れていると再び再生されません。
なにか提案を ?