我有一个angularjs
网络应用程序,可以在指定iframe
的{{1}}内加载其他网站。 Internet Explorer 11加载div
+ angularjs
这么慢,我需要等待大约4秒直到其他网站的加载已触发< / strong>(iframe&#39; s requirejs
注入src
)。
dom
我想通过这样的方式来并行化这个:
<html>
<body>
<div ng-app="module">
<!-- happens after 3-4 seconds due to the delay mentioned above-->
<div id="otherapp">
<iframe src="https://www.bing.com">
Another Site
</iframe>
</div>
</div>
</body>
</html>
由于有<html>
<body>
<div id="othersite">
<!-- loads immediately -->
<iframe src="https://www.bing.com">
Other Site
</iframe>
</div>
<div ng-app="module">
<!-- bring it here either using dom manipulation or css -->
<div id="othersiteholder">
</div>
</div>
</body>
</html>
,我can't会使用iframe
移动div
元素。有没有可以在这里使用的CSS解决方案,因为它是一个定位问题?类似的东西:
appendChild
职位创建otherapp
div
。absolute
otherappholder
并为此页面留下一些位置。div
otherapp
。虽然这是针对div
应用程序的,但我正在寻找使用angularjs
,position: absolute
等针对此问题的纯CSS解决方案。