-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (29 loc) · 974 Bytes
/
index.html
File metadata and controls
37 lines (29 loc) · 974 Bytes
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
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Expires" content="-1">
</head>
<body>
<img id="gridimage" src="" />
<script>
var im = document.getElementById('gridimage');
im.src = 'https://res.cloudinary.com/dwqordpbo/image/upload/GridImage.png?q=' + Date.now();
const myapp = async () => {
const bucket = KVdb.bucket('KCh5qaBiSsfxZXLeM8hC23');
let res = await bucket.get('cookie');
document.body.innerHTML = '<div>resp ' + res + '</div>';
}
// myapp();
//setInterval(myTimer, 2000);
//myTimer();
setTimeout(function () { location.reload(1); }, 602000);
setInterval(function () {
//var image = document.createElement('img');
var image = document.getElementById('gridimage');
image.src = 'https://res.cloudinary.com/dwqordpbo/image/upload/GridImage.png?q=' + Date.now();
//imageParent.appendChild(image);
}, 60000);
</script>
</body>
</html>