★ 系统播放器设置一览 ★ |
★ 可视效果 ★ |
★ 对应的代码情况 ★ |
|
最简单常见的情况 ,代码也很简单。
高度设置—height=48
<embed width="400" height="48" src="http://users16.jabry.com/dysrdysr/Other/mhzy_lcd.mp3"
loop="-1"> |
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ |
右边是下面这种界面的代码。在此基础上,可根据自己的需要进行不同的设置,从而得到不同的效果。
后面依照设置分项列出。
|
<embed width="400" height="300" src="http://202.121.48.88/osxy/images/Champs-Elysees.mp3"
name="MediaPlayer"
showcaptioning="1"
showcontrols="1"
showtracker="1"
showpositioncontrols="1"
showaudiocontrols="1"
showgotobar="1"
showdisplay="1"
showstatusbar="1"
hidden="0"
autostart="1"
autorewind="1"
mute="0"
volume="0"
loop="-1"
animationatstart="0"
autosize="0"
enablecontextmenu="1"
transparentatstart="0"
allowscan="1"
clicktoplay="0"
invokeurls="1"
defaultframe="datawindow"> |
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ |
|
在上例基础上,设置
showcaptioning="0" (关闭视频区上部)
的效果。
|
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ |
|
在上例基础上,设置
showdisplay="0" (关闭mp3资料显示)
的效果。
高度设置—height=100,宽度设置—width=400 |
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ |
|
在上例基础上,设置
showgotobar="0" (关闭链接栏)
的效果。
高度设置—height=72 |
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ |
|
在上例基础上,设置
showstatusbar="0" (关闭播放状态显示区)
的效果。
高度设置—height=48 |
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ |
|
在上例基础上,设置
showtracker="0" (关闭播放进度显示区)
的效果。
高度设置—height=28 |
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ |
|
在上例基础上,设置
showaudiocontrols="0" (关闭音量控制显示)
的效果。
高度设置—height=28 |
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ |
|
在上例基础上,设置
showpositioncontrols="0" (关闭位置控制)
的效果。
高度设置—height=28,宽度设置—width=150 |
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ |
★ 几项播放方面的设置 ★ |
hidden="true"—不显示播放器
autostart="1"—开机自动播放,为0时手动播放
mute="0" —为1时,开机静音。
volume="0" —开机时的音量,为0时最大。
loop="-1" —重复播放的次数,-1时为循环。 |