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

转载地址: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>

时间: 2024-12-14 03:38:44

网页中视频播放,文字滚动的相关文章

javaScript 实现倒计时 + 获取网页中的文字

一.倒计时 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>文档标题</title> </head> <body> <p id="demo"></p> <script> // Set the date we're counting down to var count

关于网页中的无缝滚动

随便打开一个网页,基本上都会看到无缝滚动或者轮播图,比如淘宝还有360官网的首页        观察这些轮播图可以发现图片可以来回循环地切换,那么是怎样做到的呢? 做到轮播图或者说无缝滚动主要有两种方式,一种是通过对图片的明暗即透明图的改变来显示或隐藏图片,另一种是通过运动框架,将图片显示在可视区域.这两种方式都会用到同一个东西,那就是定时器. JavaScript中的定时器有两种,1.setInterval();2.setTimeout();相对应的关闭定时器也有两种方法,clearInter

网页中禁止文字复制

禁止鼠标选中文字 用js可以在页面中写 onselectstart="return false" 比如说 <div style="width:200px;height:200px;" onselectstart="return false">这里面的文字是不能被鼠标选中的</div> 现在我的问题是 要把 onselectstart="return false" 写进class中,怎样实现呢? 我不想要

H5/纯JS实现:把网页中的文字复制到剪切板

const dom = document.getElementById(`span1`) const selection = window.getSelection() const range = document.createRange() // 选择复制目标 range.selectNodeContents(dom) selection.removeAllRanges() selection.addRange(range) // 已复制文字 console.log('selectedText

网页title栏文字滚动

<script type="text/javascript"> var text = document.title var timerID function newtext() { clearTimeout(timerID) document.title = text.substring(1, text.length) + text.substring(0, 1) text = document.title.substring(0, text.length) timerID

html里面有一个控制文字滚动的标签marquee,比较有用。

本节笔者讲述HTML代码中比较特殊的标签,它能使网页中的文字滚动,并且可以控制其滚动的属性. 制作滚动文字 通过本章前面的学习,读者已经能够很好地控制各种段落文字的显示方式,不过无论怎么设置,文字都是静态的.本节笔者讲述HTML代码中比较特殊的标签,它能使网页中的文字滚动,并且可以控制其滚动的属性. 4.3.1 设置文字滚动 HTML技术中使文字滚动的方法是使用双标签<marquee></marquee>.在HTML代码中可使其作用区文字滚动,默认为从右到左,循环滚动.在D:\we

Unity3D 文字滚动跑马灯效果

需求 在日常游戏中,文字滚动效果是比较常用的.例如日常游戏顶部的新闻公告,聊天系统的文字滚动,都属于这个范围. 思路 由于使用的地方比较广泛,所以希望能够尽量独立的游戏之外,能够做到随处使用的功能.文字显示属于UI范畴,直接使用unity3d中的GUI功能是比较合适的. 实现 一.新闻公告类 新闻公告类的文字滚动一般都是由左向右,或者由下至上滚动的,并且多是单行单列的模式. public class Lamp : MonoBehaviour { public float scrollviewWi

【在网页中添加滚动文字】

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <tit

网页文字滚动的实现

     在许多网站中,都会包含滚动文字的特效,这些特效也可以称为走马灯特效,比如一些网站中的新闻公告.本实例将介绍如何在网页中实现滚动文字.运行本实例,如图1所示,将从网页的下方向上逐渐出现滚动的文字信息. 实现滚动文字的特效,主要是在页面中应用<marquee>标签.该标签专门用于实现文字或图片的滚动效果,其常用属性如下表所示 <marquee>标签的属性及说明 颜色和背景属性 说明 align 滚动内容的对齐方式:top(顶端对齐).middle(居中对齐).bottom(向