P粉2564870772023-08-26 09:36:35
您可以使用媒体查询根据其定义使用src或其他内容。在CSS-Tricks上查看此文章:https://css-tricks.com/video-source-by-screen-size/ 但是,看起来这在所有浏览器上都不是一个稳定的功能。
<video controls> <source src="video-small.mp4" type="video/mp4" media="all and (max-width: 480px)"> <source src="video-small.webm" type="video/webm" media="all and (max-width: 480px)"> <source src="video.mp4" type="video/mp4"> <source src="video.webm" type="video/webm"> </video>
如文章所述,另一种方法是根据视口大小使用JavaScript更改视频的src。