zoukankan      html  css  js  c++  java
  • 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>  
  • 相关阅读:
    0108 创建表约束
    Mybatis 将数据库中查出的记录,一对多返回,即分组,然后返回每个组的所有数据
    SQL主表、从表
    MySQL中添加、删除字段,使用SQL语句操作
    git 将远程工作分支合并到本地dev分支
    MySQL inner join 和 left join 的区别
    Mysql union 和 order by 同时使用需要注意的问题
    The used SELECT statements have a different number of columns
    Every derived table must have its own alias(MySQL报错:每个派生表都必须有自己的别名)
    MySQL 日期格式化及字符串、date、毫秒互相转化
  • 原文地址:https://www.cnblogs.com/MonaSong/p/5168069.html
Copyright © 2011-2022 走看看