javascript – 嵌入在iframe中的Three.js在iOS 8/9中无休止地增长

前端之家收集整理的这篇文章主要介绍了javascript – 嵌入在iframe中的Three.js在iOS 8/9中无休止地增长前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果使用iframe将包含Three.js的文件嵌入网页中

< iframe id = viewer src = document-with-threejs.html>< / iframe>

然后,当在Mobile Safari中查看页面时,iframe的大小会无限增长.在今天发布的iOS 9中,此行为尚未得到纠正.发布此问题和答案,以便Web搜索轻松访问这些信息.

解决方法

此行为的修复程序可在 http://threejs.org/examples/index.html中找到.截至2016年7月3日的新版本和改进版本:
var viewer = document.getElementById( 'viewer' );

// iOS iframe auto-resize workaround

if ( /(iPad|iPhone|iPod)/g.test( navigator.userAgent ) ) {

    viewer.style.width = getComputedStyle( viewer ).width;
    viewer.style.height = getComputedStyle( viewer ).height;
    viewer.setAttribute( 'scrolling','no' );

}
原文链接:https://www.f2er.com/js/150164.html

猜你在找的JavaScript相关文章