html

2020/08/02 frontEnd 共 384 字,约 2 分钟

复习一下 html5 的新特性,以及记录今后碰见好玩的 html5 代码。

媒体元素

视频 video

  • src:资源路径
  • controls:控制条
  • autoplay:自动播放
<video src="../../../resources/audio/loser.m4a" autoplay controls></video>

音频 audio

  • src:资源路径
  • controls:控制条
  • autoplay:自动播放
<audio src="../../../resources/audio/loser.m4a" autoplay controls></audio>

input 少见的type

滑块

  • type = “range”
  • min/max : 最小值/最大值
  • step:每次加多少
<input type="range" min="0" max="100" step="2" />

文档信息

Search

    Table of Contents