📅  最后修改于: 2022-03-11 14:56:40.650000             🧑  作者: Mango
$(function() {
$('marquee').mouseover(function() {
$(this).attr('scrollamount',0);
}).mouseout(function() {
$(this).attr('scrollamount',5);
});
});