背景音乐代码
Posted in wordpress on 四月 19th, 2007 by 疯野狼THOMAS – Be the first to comment<embed src=”背景音乐网址” hidden=”true” autostart=”true” loop=”true”>
——-hidden=”true”表示隐藏播放,即不显示播放器的外观,若要想显示,把”true” 替换为”false”即可,这样为默认是最小化播放,若还想具体显示播放器的大小,另加上height=”高度值” width=”宽度值” 就可以了。
——-autostart=”true”表示当前页一载入则自动播放,若不希望播放改为autostart=”false”
即可…
—— loop=”true”表示无限次循环播放音乐直到当前页关闭为止,不想循环播放替换为 loop=”false”就OK了
2、<embed src=”背景音乐网址” autostart=”true” loop=”-1″ controls=”ControlPanel” width=”0″ height=”0″ >
———-loop=”-1″ 表示无限次循环播放,可设置播放次数,用具体数字代替即可,比如我希望它播放两次,则loop=”2″
———controls=”ControlPanel”这个控制选项可省略
——–width=”0″ height=”0″表示隐藏播放,和前面的一样。
若欲设置播放器的外观,则替换为具体的数值就可以了,比如width=”123″ height=”100″
