Ich erstelle einen Header, der fixiert wird und an Ort und Stelle bleibt, sobald er auf eine bestimmte Anzahl von Pixeln gescrollt wird.
Kann ich das nur mit CSS und HTML machen oder benötige ich auch JQuery?
Ich habe eine Demo erstellt, damit Sie es verstehen können. Jede Hilfe wäre großartig!
http://jsfiddle.net/gxRC9/4/
body{ margin:0px; padding:0px; } .clear{ clear:both; } .container{ height:2000px; } .cover-photo-container{ width:700px; height: 348px; margin-bottom: 20px; background-color:red; } .small-box{ width:163px; height:100px; border:1px solid blue; float:left; } .sticky-header{ width:700px; height:50px; background:orange; postion:fixed; }
我修改了 Coop 的答案。请检查示例FIDDLE这是我的修改:
你需要一些 JS 来处理滚动事件。最好的方法是为固定位置设置一个新的 CSS 类,当滚动超过某个点时,该固定位置将分配给相关的 div。
HTML
CSS
jQuery
小提琴示例:http://jsfiddle.net/gxRC9/501/
编辑:扩展示例
如果触发点未知,但应该在粘性元素到达屏幕顶部时触发,则可以使用
offset().top
。扩展示例小提琴:http://jsfiddle.net/gxRC9/502/