仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 680|回复: 7
打印 上一主题 下一主题

[DIV+CSS] CSS教程之超强,用CSS构建iframe效果

[复制链接]
莫相离 该用户已被删除
跳转到指定楼层
#
发表于 2015-1-16 00:20:22 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

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>
可以增加更多的用户而不需要建立独立的版本。可以一次设计,随处发布。
若相依 该用户已被删除
7#
发表于 2015-3-21 06:15:24 | 只看该作者
还是在Dreamweaver所见即所得添加链接是,可以选中文字或图片然后按下shift键不放鼠标拖出箭头直接指向文件即可。这是比较简单的也是常用的方之一。
深爱那片海 该用户已被删除
6#
发表于 2015-3-7 03:24:18 | 只看该作者
使用所见即所得的接口,亦有HTML编辑的功能。它现在有Mac和Windows系统的版本。原本由Macromedia公司所开发。
老尸 该用户已被删除
5#
发表于 2015-2-22 20:17:01 | 只看该作者
Dreamweaver在所见即所得添加链接时,可以在选中文字后在属性栏中的链接栏中直接输入文件的地址即可。
变相怪杰 该用户已被删除
地板
发表于 2015-2-7 16:21:48 | 只看该作者
还可以在Dreamweaver常用工具中选择超级链接,完成相应的填写即可。
飘灵儿 该用户已被删除
板凳
发表于 2015-2-1 19:59:21 | 只看该作者
每天上网看着那样多的网页,于是我才下定决心选择了网页制作这一门课程,目的就是希望以后能够做出一个完美的网页来。
分手快乐 该用户已被删除
沙发
发表于 2015-1-24 15:13:34 | 只看该作者
所见则所得网页编辑器的优点就是直观性,使用方便,容易上手.
柔情似水 该用户已被删除
楼主
发表于 2015-1-18 06:08:49 | 只看该作者
HTML技术的不断发展和完善,随之而产生了众多网页编辑器,从网页编辑器基本性质可以分为所见即所得网页编辑器和非所见即所得网页编辑器(则原始代码编辑器)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-11-15 09:32

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表