我想在页面顶部显示标题,并在滚动时将其隐藏,就像这个网站一样;而且我还想在mouseover
. 但我是一名设计师,而不是一名程序员,并且正在努力让它发挥作用。
我到目前为止的代码:
$(document).ready(function() {
$('#header').mouseover( function() {
$(this).find('.action').show();
});
});
$(window).scroll(function(){
if ($(this).scrollTop() > 600) {
$('#header').fadeOut();
} else {
if ($(this).scrollTop() > 100) {
$('#header').fadeIn();
}
}
});