其他分享
首页 > 其他分享> > iframe 另类知识

iframe 另类知识

作者:互联网

去除自带顶部toolbar

在这里插入图片描述

<iframe
   scrolling="no"
    allowtransparency="yes"
    frameborder="0"
    marginwidth="0"
    marginheight="0"
    :src="'http://xxxxxxx' + '#toolbar=0'"
    style="height: 100%; width:100%"
  />

窗口改变时,宽、高自适应

<iframe
   scrolling="no"
    allowtransparency="yes"
    frameborder="0"
    marginwidth="0"
    marginheight="0"
    :src="'http://xxxxxxx' '#view=FitH,top,&toolbar=0'"
    style="height: 100%; width:100%"
  />

标签:高自,知识,另类,iframe,去除,自带,toolbar
来源: https://blog.csdn.net/weixin_41618917/article/details/122564209