How can I get the html5 video element's width and height

后端 未结 2 1193
忘了有多久
忘了有多久 2020-12-16 15:31

I have a simple html5 video tag:

 
2条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-16 16:08

    $(function () {
    
        $("#video").bind("loadedmetadata", function () {
            var width = this.videoWidth;
            var height = this.videoHeight;
            // ...
    
        });
    
    });
    

提交回复
热议问题