|
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <title>播放器标签embed</title>
- <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
- <style>
- #box{ width:600px; height:450px; border:5px solid blue; margin:40px auto;}
- </style>
- </head>
- <body>
- <div id="box">
- <!--放入embed标签-->
- <!--播放flash-->
- <!--embed width="100%" height="100%" src="一流素材网.swf">
- </embed-->
- <!--播放MP4 loop属性表示是否重复播放-->
- <embed width="100%" height="100%" src="style.mp4"
- loop="true" controls="console">
- <!--播放MP3格式-->
- <!--embed width="100%" height="100%" src="小美人.mp3"
- loop="true">
- </embed-->--
- </div>
- <div>
- <!--背景音乐-->
- <bgsound src="小美人.mp3" autostart=true loop=infinite></bgsound>
- <!--设置文本滚动标签示例-->
- <marquee bgcolor="#006699">设定活动字幕的背景颜色 bgcolor="#006699"</marquee>
- <marquee direction="right">设定活动字幕的滚动方向direction="right":向右</marquee>
- <marquee behavior="alternate">设定活动字幕的滚动方向来回滚动</marquee>
- </div>
- </body>
- </html>
复制代码
|
|