-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_tiffany2.html
More file actions
22 lines (21 loc) · 1010 Bytes
/
index_tiffany2.html
File metadata and controls
22 lines (21 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<script type="text/javascript">
$().ready(function(){
var refreshPage = function(){
var iframe = document.getElementById('myframe');
var tmp_src = iframe.src; iframe.src = ''; iframe.src = tmp_src;
setTimeout(refreshPage, 300000);
}
refreshPage();
});
</script>
</head>
<body style="overflow: hidden;" align="center">
<div style="width:1314px;height:1400;background-color:red;overflow:hidden;margin-top:-10px;margin-left:-282px;margin-bottom:-10px;margin-right:-120px" >
<iframe id="myframe" src="https://docs.google.com/presentation/d/e/2PACX-1vThqAE32WejITNawqesWJk670YcQjJ2huVyBPdSp3UFRiY-se5lbOXbmxtPvDgjEkLtQhDSvhR7lMEc/embed?start=true&loop=true&delayms=10000" frameborder="0" width="1314" height="1400" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true">
</iframe>
</div>
</body>
</html>