-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathindex.html
49 lines (46 loc) · 1.35 KB
/
index.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
40
41
42
43
44
45
46
47
48
49
<!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" />
<link rel="icon" href="favicon.ico" type="image/png" />
<meta name="description" content="The Home Page" />
<title>Flamethrower</title>
<script defer type="module">
import flamethrower from '/flamethrower.js';
flamethrower({ prefetch: 'visible', log: true, pageTransitions: true });
</script>
<style>
#heading {
color: red;
}
#load-bar {
background-color: blue;
position: fixed;
top: 0;
left: 0;
width: 0;
height: 5px;
}
</style>
</head>
<body>
<div id="load-bar"></div>
<h1 id="heading">Home</h1>
<a href="/">Home</a> | <a id="about" href="/about">About</a>
<div id="keep" flamethrower-preserve>
<article>
<p>This text should be preserved when starting from home</p>
</article>
</div>
<script>
// test
window.addEventListener('flamethrower:router:fetch-progress', ({ detail }) => {
const loadBar = document.getElementById('load-bar');
console.log('Fetch Progress:', detail);
loadBar.style.width = detail.progress + '%';
});
</script>
</body>
</html>