“页面滚动时更改标题背景颜色”的问题

时间:2015-03-18 13:40:42

标签: jquery html css

我从2月开始阅读这篇文章,但是我遇到了问题。我设置了一个index.html文件,从小提琴复制代码:http://jsfiddle.net/634d6vgq/2/但是仍然无法使其工作。我忽略了什么,但不确定是什么。我按照答案中的所有内容进行了跟踪。这是我设置的代码:

<style>

* {margin:0;padding:0}

html {
    background: lightgray;
    height: 5000px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    height: auto;
    background-color:transparent;  

    text-align: center;
    line-height: 40px;
}

.active { background-color: #fff}

.header.active {
    background: #fff;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

</style>

</head>
<body>

<div class="header">the header</div>

<script>

$(function() {
    $(window).on("scroll", function() {
        if($(window).scrollTop() > 50) {
            $(".header").addClass("active");
        } else {
           $(".header").removeClass("active");
        }
    });
});

</script>


</body>

1 个答案:

答案 0 :(得分:1)

您忘记了包含jQuery本身的链接。 你需要像这样链接它

  <script src="jquery-1.11.2.min.js"></script>

或者下载jQuery并将其链接。

要了解更多问题,请查看此链接。 http://www.w3schools.com/jquery/jquery_get_started.asp