页面小知识点(8)

关键词:页面划分、embed、include

 


页面小知识点(8)_第1张图片

 

上图中的两只蝴蝶实际上是flash,是一直在动着的。

 

<table width="100%" height="100%">
	<tr height="40%"><!-- 显示欢迎标语 -->
		<td nowrap="nowrap">          
		    <h1 align="left"><font color=blue>Welcome——</font></h1>
		    <h1 align="center"><font color=blue >欢迎进入文档管理系统</font></h1>
		</td>
	</tr>
	<tr height="50%"><!-- 显示flash动画 -->
	<td>
		<embed src="images/f1.swf"  width="100%" height="100%" 
			type="application/x-shockwave-flash"  
			wmode="transparent"/><!-- 设置透明显示 --> 
		</embed>
	</td>
	</tr>
	<tr height="10%"><!-- 显示版权信息 -->
	<td>
	<jsp:include page="includes/copyright.jsp" flush="true" />
	</td>
	</tr>
</table>

 

 http://huangqiqing123.iteye.com/blog/1452068 


 

你可能感兴趣的:(页面)