开始滚动时将div粘贴到页面顶部

时间:2013-02-08 12:36:20

标签: javascript jquery html css

我试图制作一个div(id =“hoe”),从用户滚动的那一刻开始就粘到了顶部。在滚动之前,div位于标题下方。不幸的是,经过多次努力,我无法让它工作。非常感谢任何有关我做错的提示和帮助。这是我在测试版中的代码:

<!DOCTYPE html>
<head>

<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" />
<style type="text/css">

#header
{
background-color: blue;
width: 100%;
height: 125px;
}

#hoe
{ 
background-color: red;
height: 180px;
width: 100%;
z-index: 9999;
top: 125;
position: fixed;
}

#een
{
margin-top: 180px;
background-color: green;
height: 700px;
width: 100%;
}

</style>

<script type="text/javascript">
$(document).ready(function() {

if ($('body').hasClass('lock')) {
    bar_pos = $('#hoe').offset();
    if (bar_pos.top >= (125+180)) {
        $('#hoe').css('top', 0);
        //document.getElementById("hoe").style.top="0"; also tried this
    }
});
});

</script>

</head>
<body class="lock">
<div id="header">
</div>
<div id="hoe">
</div>
<div id="een">
</div>
</body>
</html>

3 个答案:

答案 0 :(得分:3)

我修改了你的代码并在这里创建了一个小提琴:http://jsfiddle.net/UcX4A/

你的javascript中有一个多余的括号

$(document).ready(function() {
    if ($('body').hasClass('lock')) {
        bar_pos = $('#hoe').offset();
        if (bar_pos.top >= (125+180)) {
            $('#hoe').css('top', 0);
            //document.getElementById("hoe").style.top="0"; also tried this
        }
    }); <<< Surplus bracket
});

此外,“滚动”事件未附加到任何内容,因此未进行评估。我改变了你的意思:

$(document).ready(function() {

致:

$(window).scroll(function() {

答案 1 :(得分:1)

请参阅:http://jsfiddle.net/WTnEd/

使用$(window).scroll()

$(document).ready(function () {
var bar_pos;
$(window).scroll(function (e) {
    if ($('body').hasClass('lock')) {
        bar_pos = $('#hoe').offset();
        if (bar_pos.top >= (125 + 180)) {
            $('#hoe').css('top', 0);
        }
        else{
            $('#hoe').css('top', 125);
        }
    };
});
});

答案 2 :(得分:1)

据我所知,这是在开始滚动时将div粘贴到页面顶部的另一种方法:

<div id="header" style="position:fixed; top:0px; left:0px; right:0px;
    height:100px; z-index:2; background:blue;"></div>
<div id="hoe" style="position:fixed; top:100px; left:0px; right:0px;
    height:100px; z-index:2; background:red;"></div>
<div id="een" style="position:absolute; top:200px; left:0px; right:0px;
    height:100px; z-index:1;">
  <p>dummy text</p>
  <p>dummy text</p>
  <p>dummy text</p>
</div>