码迷,mamicode.com
首页 > 移动开发 > 详细

vue iframe嵌套页面高度自适应 (ios 宽度扩大的bug , ios展示比例问题)

时间:2019-12-05 19:04:12      阅读:454      评论:0      收藏:0      [点我收藏+]

标签:css   ali   ||   自适应   展示   -o   isa   form   roi   

<template>
  <div class="card-index pt-relative">
    <div id="wrapper" :style="‘height:‘+Height+‘px;‘">
      <iframe
        v-if="iframeType"
        :src="srcUrl"
        sandbox="allow-forms allow-same-origin allow-scripts allow-top-navigation allow-modals"
        id="iframe"
        marginwidth="0"
        marginheight="0"
        align="center"
      ></iframe>

 

      <iframe
        v-else
        :src="srcUrl"
        sandbox="allow-forms allow-same-origin allow-scripts allow-top-navigation allow-modals"
        id="iframe"
        scrolling="no"
        marginwidth="0"
        marginheight="0"
        align="center"
      ></iframe>

 

   
    </div>
  </div>
</template>
 
 
 data() {
    return {
      srcUrl: "",
      iframeType: false
    };
  },
 created() {
 var u = navigator.userAgent;
    var isAndroid = u.indexOf("Android") > -1 || u.indexOf("Adr") > -1; //android终端
    // var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
    // console.log(‘是否是Android:‘+isAndroid);
    // console.log(‘是否是iOS:‘+isiOS);
    if (isAndroid) {
      this.iframeType = true;
    } else {
      this.iframeType = false;
    }
}

<style lang=‘scss‘ scoped>
.card-index /deep/ {
  width: 100%;
  position: relative;
  #iframe {
    width: 100%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    min-width: 100%;
    *width: 100%;
    width: 1px;
  }

  #wrapper {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
 
</style>

vue iframe嵌套页面高度自适应 (ios 宽度扩大的bug , ios展示比例问题)

标签:css   ali   ||   自适应   展示   -o   isa   form   roi   

原文地址:https://www.cnblogs.com/FACESCORE/p/11990919.html

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