|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
CSS是CascadingStyleSheets的缩写,不得不承认CSS单独使用会麻烦一点,但其与脚本语言(如我们四阶段所学的Javascript)及XML技术的融合,即可达到绝佳的页面效果。
看到过良多如许的告白,页面双方各放一个方块图片告白,拖动转动条时告白随之动滚,一直停止在以后屏幕的下方或上方。
关于这类漂泊告白,我信任良多用户都十分不爽!
看上面两个图的使用。
当统一种手艺完成的效果被使用在了分歧的中央,就发生了分明的体验不同。
它们的分歧点在因而否使用户需求而计划。
淘宝产物列表(已改版,没了)
腾讯财经家产经济http://finance.qq.com/industry/index.htm
怎样完成?
scrollTop是甚么?当元素外部的内容高度凌驾元素自己的高度时就会呈现转动条,跟着拖动转动条而被隐往的下面部分的高度就是scrollTop值。
这类定位层就是当页面触发onscroll事务时,获得scrollTop值并写进定位层CSS属性,使之坚持地位。
别的,IE6不撑持position:fixed,只能用position:absolute特别处置,固然你也能够疏忽IE6
听不懂?看演示吧
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title>定位层</title><scripttype="text/javascript"src="http://www.ckuyun.com//uploadfile/jquery-latest.pack.js"></script><styletype="text/css">body{padding:10px;margin:0;}#box{width:960px;margin:0auto;}#box1{width:250px;height:25px;position:relative;}#box1_1{width:250px;height:25px;line-height:25px;background:#f00;color:#fff;}p{font-size:24px;margin:10px0;}</style><scripttype="text/javascript">functiontools(){vartop=$(document).scrollTop();if(($.browser.msie==true)&&($.browser.version==6.0)){if(top>168)$("#box1_1").css({position:"absolute",top:top-168});}else{if(top>168)$("#box1_1").css({position:"fixed",top:0});}if(top<=168)$("#box1_1").css({position:"static",top:0});}$(function(){window.onscroll=tools;window.onresize=tools;});</script></head><body><divid="box"><p>往下拖动转动条↓ITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><divid="box1"><divid="box1_1">这里是定位层</div></div><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p><p>ITFeedITFeedITFeedITFeed园丁</p></div></body></html>
尺度之路www.ckuyun.com提醒:能够先修正部分代码后再运转
正如你所见到的这个是一个方块,而网页呢,是由这么多大大小小的方块组成的,可能以下实例会更明确的让你了解这个盒子。 |
|