html5中播放音频时怎么让文字滚动?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html5中播放音频时怎么让文字滚动?相关的知识,希望对你有一定的参考价值。

<marquee direction=up behavior=scroll loop=3 scrollamount=1 scrolldelay=10 align=top bgcolor=#ffffff height=300 width=30% hspace=20 vspace=10 onmouseover=this.stop() onmouseout=this.start()> 此处输入滚动内容 </marquee>

◎ direction表示滚动的方向,值可以是left,right,up,down,默认为left
◎ behavior表示滚动的方式,值可以是scroll(连续滚动)slide(滑动一次)alternate(往返滚动)
◎ loop表示循环的次数,值是正整数,默认为无限循环
◎ scrollamount表示运动速度,值是正整数,默认为6
◎ scrolldelay表示停顿时间,值是正整数,默认为0,单位似乎是毫秒
◎ align表示元素的垂直对齐方式,值可以是top,middle,bottom,默认为middle
◎ bgcolor表示运动区域的背景色,值是16进制的RGB颜色,默认为白色
◎ height、width表示运动区域的高度和宽度,值是正整数(单位是像素)或百分数,默认width=100% height为标签内元素的高度
◎ hspace、vspace表示元素到区域边界的水平距离和垂直距离,值是正整数,单位是像素。
◎ onmouseover=this.stop() onmouseout=this.start()表示当鼠标以上区域的时候滚动停止,当鼠标移开的时候又继续滚动。
参考技术A 用JS
在他的onplay事件里写
audioB.onplay= function()

if(!audioA.paused)

audioA.pause();



实现的方式有很多种。
参考技术B <Marquee></Marquee>就是移动的效果,
至于移动的速度,移动的范围,自己看属性

网页中视频播放,文字滚动

转载地址: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 &#111;nmouseout="this.start()" &#111;nmouseover="this.stop()">中英文字<BR></MARQUEE>
左右滚动字代码
<marquee border="0" align="middle" scrolldelay="120">中英文字</marquee>

以上是关于html5中播放音频时怎么让文字滚动?的主要内容,如果未能解决你的问题,请参考以下文章

如何让 HTML5 音频在点击时只播放一次?

jQuery:HTML5音频控件仅在播放时浮动

html5怎么可以添加多个音频然后一个接着一个播放??、急急急

带有播放列表的 HTML 5 音频

播放 HTML5 音频标签,但控件未按预期工作

HTML5中audio标签的使用