Skip to content

Instantly share code, notes, and snippets.

@iHTCboy
Created May 5, 2020 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iHTCboy/cca9f743e80844af84d647926573b01d to your computer and use it in GitHub Desktop.
Save iHTCboy/cca9f743e80844af84d647926573b01d to your computer and use it in GitHub Desktop.
web视频加速倍速快进播放
```
var videos = document.querySelectorAll("video");
for (var video of videos) {
video.playbackRate = 1.5;
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment