0
因此,當我將鼠標懸停在「#header」上時,將「.now」向上移動20px,然後在我懸停時再將其取下。用插件添加旋轉到這個懸停效果?
$(document).ready(function() {
$('#header')
.hover(function() {
$(".now").stop().animate({ top: -20 }, 'fast');
}, function() {
$(".now").stop().animate({ top: 0 }, 'fast');
});
});
如何通過45deg旋轉「.now」以及移動它?
jQuery Transit對這種東西很有用 - http://ricostacruz.com/jquery.transit/ – adamb
我真的希望這樣我不會需要任何類型的插件,我認爲jquery內置了旋轉函數。 – Chaos67731