我正在寫一個簡單的函數來調整不透明度和懸停邊距。使用add類。 有人能告訴我我在做什麼錯在這裏請。 非常感謝!jquery snytax錯誤?
$(document).ready(function() {
$('.connectsocialitem').each(function() {
$(this).hover(function() {
$(this).addClass("active")
$('.active > a').animate({ opacity: 0.6 }, 300);
$('.active > a').animate({marginTop:'-5px'}, 150);
}, function() {
$(this).removeClass("active")
$('.active > a').animate({ opacity: 1.0 }, 150);
$('.active > a').animate({marginTop:'0px'}, 150);
});
});
});
嗯,這不是一個語法錯誤,我可以告訴你很多。您可能還想更新您的小提琴,以使用jQuery而不是Mootools。 –
謝謝,謝謝 – patrick