嗨我的代码有什么问题:
当我将鼠标悬停在#open 上时,#pull_down_content 应该从页眉向下移动,当我离开 #open 时,它应该向上移动。但是,当我在页面加载后立即测试代码时,#pull_down_content 会在我将鼠标悬停在它上面之前向下移动屏幕。
$(function() {
//Open on hover
$('#open').hover((function(){
$('#pull_down_content').animate({'top':'-0px'},1000);
})
//Close when not hovered
(function(){
$('#pull_down_content').animate({'top':'-340px'},1000);
})
});
);