zoukankan      html  css  js  c++  java
  • html-上左右布局方式---ShinePans

    文件包括 main.html  top.html  left.html  childhood.html  moonsong.html  herethesea.html


    主要布局效果:



    代码:

    main.html

    <frameset rows="30%,*"> <!--上面部分-->
    <frame src="top.html" scrolling="no">
    <frameset cols="20%,*" > <!--以下80%分为左右部分-->
    <frame src="left.html" noresize frameborder="1"/ scrolling="no">
    <frame src="right.html" name="myframe" noresize frameborder="1"/>
    </frameset>
    </frameset>

    top.html

    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
    <body>
    <table align="center" boder="0px" width="100%" height="200px" background="topJpg.jpg" cellspacing="0px" cellspading="0px">
    	<tr></tr>
    </table>
    </body>

    left.html

    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
    <body bgcolor="lightblue">
    		<center>
    		</center>
    	<!--target 点击后的目标-->
    	<ul>
    	<li><a href="herethesea.html" target="myframe">最重要的决定</a></li>
    	<li><a href="childhood.html" target="myframe">下沙</a></li>
    	<li><a href="moonsong.html" target="myframe">与半小夜曲</a></li>
        </ul>
    </body>

    right.html

    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
    <body bgcolor="silver">
    	歌词
    </body>

    歌词略..

  • 相关阅读:
    无题..
    让Windows 2003 Server支持ASP程序
    下雪
    比较经典的.NET基础
    XML几种操作
    某年某月有几天
    .NET操作Word(傻瓜型)
    XML 简单操作
    一首歌
    ASP.NET:掌握Web窗体的生命周期与状态管理(摘自网络)
  • 原文地址:https://www.cnblogs.com/yutingliuyl/p/7068345.html
Copyright © 2011-2022 走看看