滚动页面时,DIV出现时并固定

css代码:

#fixedMenu{
display:none;
position:fixed;
left:50%;
top:10%;
_position:absolute;
_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-600));
z-index:999
}

html代码:


js代码:

$(window).scroll(function() {
    var s_top = parseInt($(window).scrollTop());
    if (s_top > 400) {
        $("#fixedMenu").fadeIn("normal");
        $("#fixedMenu").css("offsetTop", s_top + "px");
    } else {
        $("#fixedMenu").stop(true, true).fadeOut("normal");
    }
});

…………END…………

谢谢支持,喜欢就点个❤

你可能感兴趣的:(滚动页面时,DIV出现时并固定)