欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue中style样式动态绑定

程序员文章站 2022-05-15 18:25:12
...

方法一:

(1) html中:

 <div class="videoMa" id="videoMa" style="width:100%;height:100%;">
 <div id="playWnd" class="playWnd"  :style="{width:videoBox.width+ 'px',height:videoBox.height+ 'px'}"></div>
 </div>

(2) data中:

 videoBox:{
       width:800,
       height:500,
     }

(3)mounted中:

  mounted() {
      let _that = this;
      _that.videoBox.width=$("#videoMa").width();
      _that.videoBox.height=$("#videoMa").height();
 }