Last active
July 18, 2021 11:50
-
-
Save Neko7sora/2d6ef27e3a0fb24a02662d7d40fcf5ac to your computer and use it in GitHub Desktop.
動画の再生速度を変更(Javascript)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelector('video').playbackRate = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelector('video').playbackRate = 2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelector('video').playbackRate = 3; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment