|
校内网(XIAINEI.COM)里添加Flash代码实际很简单,记住下列代码,然后替换其中的地址就行了,下面给出代码
<embed src=Flash地址 quality="high" width="150" height="250" wmode="transparent"></embed>
上述代码是把Flash效果放在涂鸦板的空间里,如果要此Flash在页面的任意一个位置,可用下述代码
<div style="position:absolute;width:300;height:300;left:100px;top:130px">
<embed src=Flash地址 quality="high" width="150" height="250" wmode="transparent"></embed>
</div>
其中:width:300;height:300;left:100px;top:130px是用来设置大小和定位的
width -flash的宽度
height -flash的高度
left -flash距左边的距离
top -flash距顶部的距离
下面以两种方法给两款校内网超炫Flash时钟
<embed src=http://www.x758.com/uploadfiles/clock112.swf quality="high" width="150" height="250" wmode="transparent"></embed>
<div style="position:absolute;width:150;height:150;left:100px;top:430px">
<embed src=http://www.x758.com/uploadfiles/clock46.swf quality="high" width="150" height="150" wmode="transparent"></embed>
</div>
|