用此小程序设计播放/暂停,放大缩小

<!DOCTYPE html>

<html>

<body>

<div style="text-align:center">

<button onclick="playPause()">播放/暂停</button>

<button onclick="makeBig()">放大</button>

<button onclick="makeSmall()">缩小</button>

<button onclick="makeNormal()">普通</button>

<br>

<video id="video1" width="420">

<source src="mov_bbb.mp4" type="video/mp4">

<source src="mov_bbb.ogg" type="video/ogg">

您的浏览器不支持 HTML5 video 标签。

</video>

</div>

<script>

var myVideo=document.getElementById("video1");

function playPause()

{

if (myVideo.paused)

myVideo.play();

else

myVideo.pause();

}

function makeBig()

{

myVideo.width=560;

}

function makeSmall()

{

myVideo.width=320;

}

function makeNormal()

{

myVideo.width=420;

}

</script>

</body>

</html>

<audio controls>
  <source src="horse.ogg"
type="audio/ogg">
  <source src="horse.mp3"
type="audio/mpeg">
您的浏览器不支持 audio 元素。
</audio>

最新文章

  1. Linux远程复制命令SCP
  2. Pyhont-Urllib2
  3. Redisd VS Memcached
  4. oracle 常用sql
  5. Ubuntu 开启 Crontab 计划任务日志
  6. hdu-------(1848)Fibonacci again and again(sg函数版的尼姆博弈)
  7. JVM优化之调整大内存分页(LargePage)
  8. 使用CSS时间打点的Loading效果的教程
  9. 一步一步学android之事件篇——单击事件
  10. [git] 细说commit (git add/commit/diff/rm/reset 以及 index 的概念)
  11. awk练习题-v参数
  12. Intellij Idea中如何debug本地maven项目
  13. Lesson 29 Taxi!
  14. mongoDB 文档操作_删
  15. LeetCode 145. Binary Tree Postorder Traversal 二叉树的后序遍历 C++
  16. Git -- 自定义git样式
  17. python里实现DSL
  18. ifup / ifdown eth0 / eno1 reports unknown interface when it exists!
  19. ethereumjs/ethereumjs-common-2-API文档
  20. Linux printf 命令

热门文章

  1. before-request , after-request
  2. ZOJ - 3861 Valid Pattern Lock 【全排列】
  3. spring-boot4代码
  4. SQLSERVER安装记录
  5. 创建一个HTML5与JQuery结合的幻灯片
  6. HTML5 SVG实现过山车动画
  7. BZOJ 1192 [HNOI2006]鬼谷子的钱袋:二进制 砝码称重问题
  8. RQNOJ 624 运动鞋:dp
  9. RabbitMQ消息队列随笔
  10. codeforces 706A A. Beru-taxi(水题)