可以关注下http://addon.discuz.com/?@the7_163music.plugin这个插件,
以下为引用内容:
如果你不愿意在自己的帖子页面或论坛里看到音乐播放器,下面的代码就可以把把播放器隐藏,代码如下:
- <embed style="FILTER: alpha(opacity=0,style=3)" src="音乐地址" width="0" height="0" type="audio/mpeg" loop="0" autostart="true">
- </embed></div>
复制代码
下面还有一些能显示出来的普通音乐播放器:放在日志里的几款播放器:
代码如下:
- <EMBED src="歌曲地址" width=300 height=50 type=audio/mpeg loop="-1" autostart="FALSE" volume="0">
复制代码
- <EMBED style="FILTER: GRAY()" src="歌曲地址" width=300 height=45 type=audio/mpeg loop="-1" autostart="FALSE" volume="0">
复制代码
- <EMBED style="FILTER: invert()" src="歌曲地址" width=300 height=50 type=audio/mpeg volume="0" autostart="FALSE" loop="true">
复制代码
- <EMBED style="FILTER: wave(add=0,freq=2,lightstrength=50,phase=0,strength=5)" src="歌曲地址" width=300 height=50 type=audio/mpeg loop="-1" autostart="true" showstatusbar="1" volume="0"></EMBED>
复制代码
- <EMBED style="FILTER: xray()" src=歌曲地址 width=360 height=30 type=audio/mpeg volume="0" autostart="true" loop="-1">
复制代码
- <EMBED style="FILTER: alpha(opacity=80,style=3)" src="歌曲地址" width=300 height=50 type="audio/mpeg"loop="-1" autostart="true" showstatusbar="1" volume="0"></EMBEDv>
复制代码
代码说明:
1 WIDTH代表播放器宽度,HEIGHT代表高度,后面的数值可依自己喜好进行调整.
2 AUTOSTART="TRUE" 这里TRUE代表自动播放,如果换成FALSE则代表手动播放.
|