HTML5 <video> 元素同样拥有方法、属性和事件。 其中的方法用于播放、暂停以及加载等。 其中的属性(比如时长、音量等)可以被读取或设置。 其中的 DOM 事件能够通知您,比方说,<video> 元素开始播放、已暂停,已停止,等等。 <video width="95%" height="300" controls="controls" style="margin:0;text-align=center;"> <source src="movie.mp4" type="video/mp4"/> <object data="movie.mp4" width="95%" height="300" style="margin:0;text-align=center;"></object> </video> |