次のスクリプトを作成しました。
アニメートしたいdiv:
DIV = $('div.info_holder');
そして機能:
function bezar(){
DIV.stop().animate({
opacity: 0
}, {
duration: 400,
easing: "easeOutSine",
complete: function () {
DIV.css("display", "none")
}
})};
なぜ私はこの仕事を得ることができないのですか? :)