英文:
HTMLVideoElement fires "resize" on stream resolution change. Is it documented somehow?
问题
至少在WebKit浏览器中,当视频流的分辨率发生变化时,相应的video
元素会触发一个resize
事件。关于此事是否有相关文档可供参考?或者有没有相关的引用或讨论?我一直没有找到相关信息。
英文:
At least in WebKit browsers, when the resolution of a video stream changes, the corresponding video
element triggers a resize
event. Is there any documentation available on this? Or any references or discussions? I haven't been able to find anything.
答案1
得分: 1
这是HTML标准的一部分:
https://html.spec.whatwg.org/multipage/media.html#dom-video-videowidth
每当视频的自然宽度或自然高度发生变化时 [...]
在媒体元素上触发名为"resize"的事件。
英文:
This is part of the HTML standard:
https://html.spec.whatwg.org/multipage/media.html#dom-video-videowidth
Whenever the natural width or natural height of the video changes [...]
fire an event named resize at the media element.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论