html笔记——网页中视频播放,文字滚动

转载地址:http://blog.chinaunix.net/uid-191945-id-2792153.html

<代码1无限次播放>

 <EMBED src="地址" width=320 height=40 type=audio/x-pn-realaudio-plugin controls="ControlPanel" loop="true" autostart="true" volume="100" Initfn="load-types" mime-types="mime.types">

<代码2>

<EMBED src="mp3地址" width=310 height=35 type=audio/x-pn-realaudio-plugin loop="true" autostart="true" controls="ControlPanel,StatusBar">

<代码3自由控制播放>:

<EMBED src="rm地址" width=250 height=25 type=audio/x-pn-realaudio-plugin autostart="false" controls="ControlPanel">

 

<代码4>:

<EMBED src="rm地址" width=250 height=60 autostart="true"></EMBED>

<代码5支持rm或mid格式>:

<EMBED src="地址" width=250 height=25 type=audio/x-pn-realaudio-plugin controls="ControlPanel" autostart="true">

 

<代码6支持midi,rm,ram>:

<EMBED align=middle src="地址" width=350 height=50 type=audio/x-pn-realaudio-plugin ALT="(Random)" mime-types="mime.types" fn="load-types" Init exts="ra,ram" volume="200" loop="true" autostart="true">

<代码6隐藏播放器>:

<embed src="地址" width="0" height="0" autostart="true" loop="true" align="middle" volume="200" type="audio/x-pn-realaudio-plugin" exts="ra,ram" Init fn="load-types" mime-types="mime.types" ALT="(Random)">

<代码7视频(MTV)常用播放器>:

<embed src="地址" type="audio/x-pn-realaudio-plugin" console="Clip1" controls="ControlPanel,StatusBar" height="330" width="460" autostart="true">

<代码8RealPlayer 影片>:

<EMBED src="地址" width=450 height=400 controls="imagewindow" autostart="true" loop="true" console="huayue">   (支持rm、asf、mpa、mpeg )

<代码9网页播放器>:

<iframe src="地址" frameboder=0 width=400 height=200></iframe>

<代码10支持mp3、wma、wmv、wav、midi、asf、mpeg、mpg、avi格式>:

<embed width="350" height="50" src="地址">

<代码11支持ra、rm、ram视频格式>:

<EMBED SRC="地址" type="audio/x-pn-realaudio-plugin" width="533" height="400" autostart="true" SetEnableContextMenu="false" name="video" id="video" class="video" controls="ImageWindow">
 
上下滚动字代码
<MARQUEE scrollAmount=1 scrollDelay=77 direction=up width=270 height=77 onmouseout="this.start()" onmouseover="this.stop()">中英文字<BR></MARQUEE>

 

左右滚动字代码
<marquee border="0" align="middle" scrolldelay="120">中英文字</marquee>  
原文地址:https://www.cnblogs.com/MonaSong/p/5168069.html