ホームページ > 記事 > ウェブフロントエンド > バッファリングによる一時停止なしでファイルを最後まで再生できる場合、HTML でスクリプトを実行しますか?
oncanplaythrough 属性を使用して、HTML のバッファリングを一時停止せずにファイルを最後まで再生できる場合にスクリプトを実行します。 .
次のコードを実行して、oncanplaythrough Property-
<!DOCTYPE html> <html> <body> <video id = "myVideo" width = "400" height = "200" controls oncanplaythrough = "display()"> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> Your browser does not support the video element. </video> <script> function display() { alert("Can be played without pausing for buffering."); } </script> </body> </html>を実現してみることができます。
以上がバッファリングによる一時停止なしでファイルを最後まで再生できる場合、HTML でスクリプトを実行しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。