首页 > 代码库 > framset 的一些小应用

framset 的一些小应用

制作出这样的效果wKiom1N2CcnAV_yeAADqfqbc30w481.jpg

spacer.gif

首先建立了一个all.html

<frameset rows="20%,*"frameborder="1" framespacing=5 bordercolor=red>

<frame src="http://www.mamicode.com/top.html" noresize/>  //top.html  暂时用一张图片替代

<frameset cols="20%,*"framespacing=5>

<fram src="http://www.mamicode.com/left.html" noresize/>   //norsize指的是无法调整框架的大小

<fram src="http://www.mamicode.com/right1.html" name=”right”/>    //设置name=right ,是为了在下面的left.Html的target="right" 相对应,当点击bbb时,right2.html 会出现在name=right处,以覆盖当前页面。

</frameset>

</framset>

注意如果frameborder="0",则bordercolor对边框的颜色设置看不到效果。


left.html

<body bgcolor=pink>

<a href=http://www.mamicode.com/”right1.html” target=”right”>aaa

<a href=http://www.mamicode.com/”right2.html” target=”right”>bbb

</body>


除此之外还要注意frame中属性scrolling 滚动条的设置,有三个值yes no auto