码迷,mamicode.com
首页 > 其他好文 > 详细

vue在页面嵌入别的页面或者是视频2

时间:2018-12-20 14:46:02      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:this   ati   idt   listener   frame   get   cto   doc   select   

 vue在页面嵌入别的页面或者是视频

以下是嵌入页面

<iframe name="myiframe" id="myrame" src="http://xxx.com/" frameborder="0" align="left" width="100%" height="100%"  scrolling="auto" marginWidth=0 marginHeight=0 class="iframesty" onload="changeFrameHeight()">
   <p class="tip">你的浏览器不支持iframe标签</p>
</iframe>

 

scrolling="auto"=》可以滚动
scrolling="no"=》不可以滚动
onload="changeFrameHeight()=》根据适配的font-size大小改变初始化时候的高度
在index.html页面写js
window.addEventListener("orientationchange", resetrem);
      window.addEventListener("resize",resetrem);
      function resetrem(){
          var fs = parseInt(document.querySelector("html").style.fontSize)
          return fs
      }
      function changeFrameHeight(){
          var fs = resetrem()
          var ifm = document.getElementById(‘myrame‘);
          ifm.height = document.documentElement.clientHeight - fs-6
      }

 

嵌入视频

<div class="toast" :class="{tshow:toastshow}" style="width:90%;height:300px">
     <iframe frameborder="0" :src="this.video_url" allowFullScreen="true" style="width:100%;height:300px" ></iframe>
</div>
<div :class="{mask:maskshow}" @click="hidden_video" @touchmove.prevent></div>

 



vue在页面嵌入别的页面或者是视频2

标签:this   ati   idt   listener   frame   get   cto   doc   select   

原文地址:https://www.cnblogs.com/dudu123/p/10148578.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!