Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 jQuery.mmenu-plugin 时,可在此处找到http://mmenu.frebsite.nl/,触发时整个页面(正文)滑动。我怎样才能让它只滑动我的页面的一部分呢?我想要一个不受滑动影响的静态页眉和页脚。
使用 css:
您应该将页眉和页脚设置为固定位置。
例子:
<div id='header'> my header </div>
CSS:
#header{ top:0px; position:fixed; }