欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!
有 些东西找起来很麻烦,好用的又不太容易找到,之前看到很多用JS写的,固定漂浮这种效果拖动时难免会产生抖动自己对CSS还是蛮有好感的,找来找去找到了 天涯,仔细一看是纯CSS的,没有使用JS效果我觉得它比之前看到的要精简些不用嵌套多余的DIV 简单的看一下CSS样式部分:
 
body { background-image:url(text.txt); /* for IE6 */
 
background-attachment:fixed; }
 
#bottomNav { background-color:#096; z-index:999; position:fixed; bottom:0; left:0; width:100%; _position:absolute; /* for IE6 */_top: expression(documentElement.scrollTop + documentElement.clientHeight-this.offsetHeight); /* for IE6 */ overflow:visible; }
 
HTML部分加上这个id为 #bottomNav 的DIV即可:
 
<div id=”bottomNav”>固定漂浮物在此处O(∩_∩)O~</div>

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/css3-style/c60740.shtml