これは、以下のjQueryをコード壊れていました:jQueryのアニメーションの問題
$('.tabs li a').animate({
height: '40'
}, 1000, function() {
// Animation complete.
});
$('#tabs-wrap').animate({
marginTop: '-=147'
}, 1000, function() {
// Animation complete.
});
$('tabs li a').hover(function(){
$('tabs li a').animate({
height: '100'}, 1000, function(){
$('#tabs-wrap').animate({
marginTop: '+=147'
}, 1000, function(){
});
});
}, function(){
$('tabs li a').animate({
height: '40'}, 1000, function(){
$('#tabs-wrap').animate({
marginTop: '-=147'
}, 1000, function(){
});
});
});
が、私はそれが混乱に見える知って、申し訳ありません!
誰かが間違っていることを見つけることができますか?
何が問題なのですか? JSエラーがありますか?予想外の結果ですか?手元にあるコードをHTMLコードまたはJSFiddleに提供できますか? – Dutchie432
ページ上の他のjQueryが現在動作していないため、どこかにカンマやセミコロンがないと思うようになります。 – benhowdle89