HTML5 Video scale modes?

前端 未结 5 1935
长情又很酷
长情又很酷 2020-12-23 17:52

I\'m trying to make a fullscreen HTML background, which is easy enough. But because HTML5 video get\'s resized to fit the container while maintaining aspect ratio, I can\'t

5条回答
  •  死守一世寂寞
    2020-12-23 18:33

    a quick and dirty with css only:

    video
    {
        width: 100%;
        height: auto;
        max-height: 100%;
    }
    

    as seen on: http://web.archive.org/web/20171013204829/www.codesynthesis.co.uk/tutorials/html-5-full-screen-and-responsive-videos

提交回复
热议问题