我一直在寻找一个示例来创建一个在页面向下滚动时将保持静态的标题。就像这个例子一样。
提前致谢
<!DOCTYPE html>
<html>
<head>
<style>
#header { height: 100px; background:#EEEEEE; }
#footer { height: 100px; background:#EEEEEE; }
#content { height: 1000px; background:#CCCCCC; }
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
</head>
<body>
<div id="container">
<div id="header">Header</div>
<div id="content">Content</div>
<div id="footer">Footer</div>
</div>
</body>
</html>