-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewsimplenodeapp.html
28 lines (26 loc) · 1.62 KB
/
viewsimplenodeapp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html>
<style>
.leftColumn {position: absolute;top:0px;left: 0px;bottom: 0px;right: 50%;background-color: #33342D;}
.rightColumn {position: absolute;top:0px;right: 0px;bottom: 0px;left: 50%;background-color: #33342D;}
</style>
<script>
window.setInterval(function() {
document.getElementById('iframe1').src = document.getElementById('iframe1').src;
document.getElementById('iframe2').src = document.getElementById('iframe2').src;
document.getElementById('iframe3').src = document.getElementById('iframe3').src;
document.getElementById('iframe4').src = document.getElementById('iframe4').src;
document.getElementById('iframe5').src = document.getElementById('iframe5').src;
}, 3000);
</script>
<body>
<div class="leftColumn">
<iframe id="iframe1" height="100%" width="100%" src="http://simplenode.delivery-rollout-staging.http://localhost:38171"></iframe>
</div>
<div class="rightColumn">
<iframe id="iframe2" height="25%" width="100%" src="http://simplenode.delivery-rollout-prod.http://localhost:38171"></iframe>
<iframe id="iframe3" height="25%" width="100%" src="http://simplenode.delivery-rollout-prod.http://localhost:38171"></iframe>
<iframe id="iframe4" height="25%" width="100%" src="http://simplenode.delivery-rollout-prod.http://localhost:38171"></iframe>
<iframe id="iframe5" height="25%" width="100%" src="http://simplenode.delivery-rollout-prod.http://localhost:38171"></iframe>
</div>
</body>
</html>