以下是有問題的頁面:http://yac-web.com/clients/dessert/我試圖設置鼠標移動時發生的效應,並在不移動鼠標時停止。出於某種原因,事件開始正常,但只是保持循環。我對JS並不是很熟悉,並且在mousemove事件中找不到更多信息。由於Mousemove事件即使在鼠標移動停止後也會導致無限循環
$('html').mousemove(function() {
$('html').toggleClass("change", 1000, "easeOutSine");
})
然後
html {
background: rgba(191, 54, 245, 1);
}
.change {
background: rgba(61, 98, 245, 1);
}
演示:Fiddle
請在問題中發佈您的代碼。 –
問題是動畫的排隊性質 –