var video = document.querySelector('video');
video.addEventListener('canplay', function () {
this.width = this.videoWidth;
this.height = this.videoHeight;
});
参考地址,https://blog.csdn.net/weixin_33690963/article/details/91697691
var video = document.querySelector('video');
video.addEventListener('canplay', function () {
this.width = this.videoWidth;
this.height = this.videoHeight;
});
参考地址,https://blog.csdn.net/weixin_33690963/article/details/91697691