将Flash作品插入网页的时候,我们有时候会需要将它设为透明,有时候我们需要在Flash的背面插入一些漂亮的图片,搭配出漂亮的效果……下面我们介绍一些将Flash插入网页中的一些透明的设置技巧。
一、Swf透明、无坐标控制
首先教大家最简单的插入Flash的代码,透明,无坐标控制:
注意wmode="transparent"是控制Flash是否透明显示的,如果不想让它显示为透明的,直接把wmode="transparent"去掉即可。
<EMBED height=60 pluginspage=http://www.macromedia.com/go/getflashplayer src=http://www.jb51.net/flash/flash.swf type=application/x-shockwave-flash width=468 wmode="transparent" quality="high"></EMBED>
二、Swf透明、绝对坐标控制
再教教大家加入绝对坐标的透明Flash,绝对坐标意味着不管你的窗口拉多大,那个Flash依然乖乖地在原地不动。
<EMBED style="LEFT: 60px; WIDTH: 468px; POSITION: absolute; TOP: 200px; HEIGHT: 1000px" align=right src=http://www.jb51.net/flash/flash.swf width=568 height=60 type=application/octet-stream ;; quality="high" wmode="transparent">
三、Swf透明、相对坐标控制
最后教教大家如何加入相对坐标的透明Flash。
注意下面代码的table部分,这主要是使用表格作为容器,把Flash“装”到表格里,这样不管浏览者把浏览器拉多大,Flash永远和表格一起动。而且,表格可以设置背景图片,表格上面再放一个透明Flash与背景图片相配合,效果很好。
<table border="0" cellPadding="0" cellSpacing="0" width=600 height=382 align=center
background=http://www.jb51.net/flash/backgroud.jpg>
<TD width=600 height=382><EMBED pluginspage=http://www.macromedia.com/go/getflashplayer
src=http://www.jb51.net/flash/flash.swf width="100%" height="100%"
type=application/x-shockwave-flash wmode="transparent"
quality="high"></EMBED></TD></td></table>
相关文章
- 11-01在网页中怎样给已发布的Flash添加链接的方法(zhuan)
- 11-01网页中插入透明Flash的方法和技巧
- 11-01网页中的flash动画怎样下载?网页flash动画下载方法介绍
- 11-01暂停和屏蔽右键网页中的Flash
- 11-01怎样在网页中插入透明flash背景 添加透明flash背景方法介绍(图文)
- 11-01网页中Flash激活限制的处理方法
- 11-01CorelDRAW中手绘工具的使用方法和操作技巧介绍
- 11-01使用 history 对象和 location 对象中的属性和方法制作一个简易的网页浏览工具
- 11-01网页中插入FLASH(swf文件)的html代码
- 11-01在网页中插入CSS样式表的几种方法