HTML5 Video scale modes?

前端 未结 5 1938
长情又很酷
长情又很酷 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:20

    I use ExtJS 5 to show video, the following code works!

    ```

    var w = Ext.widget('window',{
        renderTo: Ext.getBody(),
        x : 10,
        y : 10,
        width: 480,
        height: 670,
        maximizable: true,
        html: ''
    })
    w.show()
    

    ```

提交回复
热议问题