|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
更方便搜索引擎的搜索。用只包含结构化内容的HTML代替嵌套的标签,搜索引擎将更有效地搜索到你的内容,并可能给你一个较高的评价(ranking)。
iframe使用很广泛,一般的需求有两种:
1,猎取iframe效果,就是带一个转动条,能够省很多版面。
2,要嵌一个页面,完成框架链接。
假如不便利利用iframe,能够有以下办理计划:
第一种需求假如我们利用CSS结构来完成,便可以少一个页面,也能够进步效力。
第二种需求能够接纳xmlhttp远程猎取。
A.间接摹拟iframe
用层做容器
援用:#content{overflow:auto;height:200px;width:600px;background:#f00;}
效果演示源代码:
<!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>用CSS构建iframe效果-CssIframe-RexSong.com</title><style>*{font:12pxArial;}html{overflow:hidden;border:0;height:100%;}body{overflow:hidden;height:100%;}#content{overflow:auto;height:185px;width:600px;background:#ccc;padding:10px;}</style></head><body><h4style="font-weight:bold;">用CSS构建iframe效果</h4><p>来自:<ahref="http://homepage.yesky.com/"target="_self">天极网页陶吧</a></p><p>A.间接摹拟iframe,用层做容器</p><divid="content"><p>・<aclass="grey-s"href="http://homepage.yesky.com/485/2354485.shtml">仅用css编写无穷分级弹出菜单</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/442/2354442.shtml">扫瞄器转动条的参数总结</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/436/2354436.shtml">引进css款式表的四种体例先容</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/424/2354424.shtml">两种体例完成的笔墨竖排效果</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/336/2352836.shtml">网页计划初级结构40例参考</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/251/2352751.shtml">从GMail熟悉W3C尺度和Ajax</a></p></div></body></html>
用body做容器
援用:html{overflow:hidden;height:100%;background:#fff;border:0;}
*html{padding:100px00100px;}
body{overflow:scroll;background:#f00;margin:0;position:absolute;top:100px;left:100px;bottom:0;right:0;}
*htmlbody{height:100%;width:100%;}
效果演示源代码:
<!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>用CSS构建iframe效果-CssIframe-RexSong.com</title><style>*{font:12pxArial;}html{overflow:hidden;height:100%;background:#fff;border:0;}*html{padding:200px00100px;}body{overflow:auto;background:#ccc;margin:0;position:absolute;top:200px;left:100px;bottom:0;right:0;}*htmlbody{height:100%;width:100%;position:static;}#info{position:fixed;top:10px;left:10px;}*html#info{position:absolute;}</style><scriptsrc="http://www.google-analytics.com/urchin.js"type="text/javascript"></script><scripttype="text/javascript">_uacct="UA-67927-3";urchinTracker();</script></head><body><divid="info"><h4style="font-weight:bold;margin-top:0;">用CSS构建iframe效果</h4><p>来自:<ahref="http://homepage.yesky.com">天极网页陶吧</a></p><p>A.间接摹拟iframe,用body做容器</p></div><p>・<aclass="grey-s"href="http://homepage.yesky.com/485/2354485.shtml">仅用css编写无穷分级弹出菜单</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/442/2354442.shtml">扫瞄器转动条的参数总结</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/436/2354436.shtml">引进css款式表的四种体例先容</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/424/2354424.shtml">两种体例完成的笔墨竖排效果</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/336/2352836.shtml">网页计划初级结构40例参考</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/251/2352751.shtml">从GMail熟悉W3C尺度和Ajax</a></p></body></html>
B.相对定位摹拟iframe
转动条在外边
援用:html{overflow:hidden;border:0;height:100%;max-height:100%;}
body{overflow:hidden;margin:0;height:100%;max-height:100%;position:relative;}
#head{position:absolute;top:0;right:15px;width:100%;height:100px;background:#f00;z-index:2;}
#foot{position:absolute;bottom:0;right:15px;width:100%;background:#f00;height:50px;z-index:2;}
#content{height:100%;position:relative;z-index:1;overflow:auto;}
效果演示源代码:
<!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>用CSS构建iframe效果-CssIframe-RexSong.com</title><style>*{font:12pxArial;}html{overflow:hidden;border:0;height:100%;}body{overflow:hidden;margin:0;height:100%;position:relative;}#content{height:100%;position:relative;z-index:1;overflow:auto;}#head{position:absolute;top:0;right:16px;width:100%;height:100px;background:#ccc;z-index:2;}#foot{position:absolute;bottom:0;right:16px;width:100%;background:#ccc;height:50px;z-index:2;}</style><scripttype="text/javascript">_uacct="UA-67927-3";urchinTracker();</script></head><body><divid="head"><divstyle="padding:12px0026px;_padding:6px0026px;"><h4style="font-weight:bold;margin-top:0;">用CSS构建iframe效果</h4><p>来自:<ahref="http://homepage.yesky.com/"target="_self">天极网页陶吧</a></p><p>B.相对定位摹拟iframe,转动条在外边</p></div></div><divid="content"><p>・<aclass="grey-s"href="http://homepage.yesky.com/485/2354485.shtml">仅用css编写无穷分级弹出菜单</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/442/2354442.shtml">扫瞄器转动条的参数总结</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/436/2354436.shtml">引进css款式表的四种体例先容</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/424/2354424.shtml">两种体例完成的笔墨竖排效果</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/336/2352836.shtml">网页计划初级结构40例参考</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/251/2352751.shtml">从GMail熟悉W3C尺度和Ajax</a></p></div></body></html>
转动条在里边
援用:html{height:100%;max-height:100%;border:0;overflow:hidden;}
*html{padding:100px050px0;}
body{height:100%;max-height:100%;margin:0;overflow:hidden;}
#content{position:absolute;top:100px;bottom:50px;left:0;right:0;z-index:3;width:100%;overflow:auto;}
*html#content{top:100px;bottom:0;height:100%;}
#head{position:absolute;margin:0;top:0;left:0;width:100%;height:100px;background:#f00;z-index:5;}
#foot{position:absolute;margin:0;bottom:0;left:0;width:100%;height:50px;z-index:5;background:#f00;}
效果演示代码:
<!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>用CSS构建iframe效果-CssIframe-RexSong.com</title><styletype="text/css">*{font:12pxArial;}html{height:100%;max-height:100%;border:0;overflow:hidden;}*html{padding:100px050px0;}body{height:100%;max-height:100%;margin:0;overflow:hidden;}#content{position:absolute;top:100px;bottom:50px;left:0;right:0;z-index:3;width:100%;overflow:auto;}*html#content{top:100px;bottom:0;height:100%;}#head{position:absolute;margin:0;top:0;left:0;width:100%;height:100px;background:#ccc;z-index:5;}#foot{position:absolute;margin:0;bottom:0;left:0;width:100%;height:50px;z-index:5;background:#ccc;}</style><scripttype="text/javascript">_uacct="UA-67927-3";urchinTracker();</script></head><body><divid="head"> <divstyle="padding:12px0010px;_padding:6px0010px;"><h4style="font-weight:bold;margin-top:0;">用CSS构建iframe效果</h4><p>来自:<ahref="http://homepage.yesky.com/"target="_self">天极网页陶吧</a></p><p>B.相对定位摹拟iframe,转动条在里边</p> </div></div><divid="content"> <p>・<aclass="grey-s"href="http://homepage.yesky.com/485/2354485.shtml">仅用css编写无穷分级弹出菜单</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/442/2354442.shtml">扫瞄器转动条的参数总结</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/436/2354436.shtml">引进css款式表的四种体例先容</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/424/2354424.shtml">两种体例完成的笔墨竖排效果</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/336/2352836.shtml">网页计划初级结构40例参考</a><br/>・<aclass="grey-s"href="http://homepage.yesky.com/251/2352751.shtml">从GMail熟悉W3C尺度和Ajax</a></p></div></body></html>
在IE6.0和FF1.5情况下测试经由过程
</p>
可以增加更多的用户而不需要建立独立的版本。可以一次设计,随处发布。 |
|