私はサブメニューをフェードインして、同時にポジションを決めたいと思います。同時に複数のjQuery-Effectsパラレル
クールなCoda-Tooltip(http://panic.com/coda/)のように、「ダウンロード」が好きです。
私のコードだけフェードにこの時の操作を行います。
$(document).ready(function(){
$('#access').hover(function() {
$(this).children('ul').fadeIn();
$(this).children('ul')...position();
}, function() {
$(this).children('ul').fadeOut('slow');
$(this).children('ul')...position();
});
});
おかげ インゴを
今、私はこれを行う:
$(document).ready(function(){
$('#access').hover(function() {
$(this).children('ul').stop().animate({opacity:1, paddingTop:'10px'}, 400);
}, function() {
$(this).children('ul').stop().animate({opacity:0, paddingTop:'0px'}, 300);
});
});
フェーディンとパッディングが大きく機能します。しかし、fadeOutではなく。私の間違いは何ですか?
あなたの質問は何ですか? –
この回答は並列アニメーションの場合http://stackoverflow.com/questions/811750/how-can-i-get-jquery-to-execute-animations-in-exact-parallel –
私の答えの例を見てください..私は持っていますそれを使用していて、それを大好きでした。 –