我真的很喜歡headroom.js,但我無法實現它的工作。某種逐步的指導會很棒。 所以這是我做那麼遠,如何獲得headroom.js工作/步驟
我下載了git repro
包括腳本到我的html文件,我結束標記之前右
<script type="text/javascript" src="js/headroom/Headroom.js"></script> <script type="text/javascript" src="js/headroom/jQuery.headroom.js"></script>
添加以下css給我的css文件
.headroom { position: fixed; top: 0; left: 0; right: 0; transition: all .2s ease-in-out; } .headroom--unpinned {top: -100px;} .headroom--pinned {top: 0;}
添加在點數2
<script> (function() { var header = new Headroom(document.querySelector("#header"), { tolerance: 5, offset : 205, classes: { initial: "animated", pinned: "slideDown", unpinned: "slideUp" } }); header.init(); }()); </script>
添加了必要的ID和班級我的頭HTML元素的很,甚至腳本後鏈接淨空腳本
<header id="header" class="header header--fixed hide-from-print" role="banner"><my navigation stuff goes in there></header>
但我不明白它的工作。滾動時我沒有看到任何類,也沒有其他的東西。有誰知道錯誤的部分?
我會如此感激,..
在此先感謝
有沒有人給我伸出援手?我沒有得到它與這[後]工作(http://stackoverflow.com/questions/20648451/how-do-you-use-headroom-js-with-bootstrap-3-navbar) – boehmatron