const onVisibilityChange = () => { const video = document.getElementById("my-video"); return document.hidden ? video.pause() : video.play(); } ...
確定! 回上一頁