検証のために、入力フィールドのフォーカスで div をスライドダウンしようとしています。https://mailchimp.com/signup/のようなアニメーションを実現したかった
フィドル: http://jsfiddle.net/6A9Qa/
$('#name').on('focus',function() {
$(this).next().show().animate({height: '25px'}, {duration: 250});
});
$('#name').on('blur',function() {
$(this).next().hide().animate({height: '0'}, {duration: 250});
});
メール チンパンジーのように適切な方法でアニメーションを取得できません。