-
Notifications
You must be signed in to change notification settings - Fork 0
/
img.html
39 lines (34 loc) · 1.02 KB
/
img.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
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Image viewer</title>
<style type="text/css">
#container {
margin: 0px;
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background-color: #000;
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
</style>
<script type="text/javascript">
function loadMediaFromHash() {
let hash = window.location.hash;
if (hash.startsWith("#")) hash = hash.substring(1);
const container = document.getElementById("container");
container.style.backgroundImage = "url(" + hash + ")";
}
</script>
</head>
<body onload="loadMediaFromHash()" onhashchange="loadMediaFromHash()">
<div id="container"></div>
</body>
</html>