第7篇:网页中嵌入多媒体(html)

ε祈祈猫儿з 提交于 2019-12-17 05:48:07

设置滚动字幕

 使用<embed>嵌入多媒体内容

 使用<video>嵌入媒体内容

使用<audio>嵌入音频

 

例子-多媒体文字滚动

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>多媒体文字滚动</title>
	</head>
	<body>
		<marquee>good fortune</marquee>

		<marquee behavior="slide" direction="down">reckon</marquee>
		<marquee behavior="alternate" direction="left">deem</marquee>
		<marquee behavior="alternate" direction="right">consider</marquee>
		<marquee behavior="scroll" direction="up">
			<img src="../img/bg.JPG" width="300" height="200"/>
		</marquee>
		<marquee behavior="slide" direction="down">
			<img src="../img/bg.JPG" width="300" height="200"/>
		</marquee>
		<marquee behavior="alternate" direction="left">
			<img src="../img/bg.JPG" width="300" height="200"/>
		</marquee>
		<marquee behavior="alternate" direction="right">
			<img src="../img/bg.JPG" width="300" height="200"/>
		</marquee>
		<marquee behavior="scroll" direction="up">
			<img src="../img/bg.JPG" width="300" height="200"/>
		</marquee>
	</body>
</html>

 

例子-多媒体video和audio的使用

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>多媒体video和audio的使用</title>
	</head>
	<body>
		<video width="800" height="600" autoplay="autoplay" controls="controls">
			<source src="../media/立方体.mp4" </source>
		</video>
		<p>music</p>
		<audio src="../media/依旧在雨中等你.mp3" controls="controls"></audio>
	</body>
</html>

 

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!