我不確定這個腳本有什麼問題,但它似乎並不想工作。要實現的目標是,根據鼠標輸入/離開,該框應該淡入淡出。在鼠標中心上的jquery動畫
$(document).ready(function() {
$('.square-box').mouseenter(function() {
$(this).animate({
background-color: '#AAAAAA'
}, 1000);
});
$('.square-box').mouseleave(function() {
$(this).animate({
background-color: '#CCCCCC'
}, 1000);
});
});
https://jsfiddle.net/k9met5oz/
我到底做錯了什麼? 謝謝。
你最好在你的小提琴先加入jQuery的:) – bhansa
哈哈是啊,我意識到,加入之後,這就是當我意識到所做的UI這行得通。 – FoxyFish