因此,当我将鼠标悬停在“#header”上时,此代码将“.now”向上移动 20px,然后当我将鼠标悬停时将其收回。
$(document).ready(function() {
$('#header')
.hover(function() {
$(".now").stop().animate({ top: -20 }, 'fast');
}, function() {
$(".now").stop().animate({ top: 0 }, 'fast');
});
});
我如何将“.now”旋转 45 度并移动它?