File size: 2,572 Bytes
aa3b624 8ff0f16 aa3b624 8ff0f16 aa3b624 8ff0f16 aa3b624 8ff0f16 6770eb3 8ff0f16 aa3b624 |
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 14px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
max-width: 1200px;
margin: 0 auto;
}
h1 {
margin: 40px 0 10px;
font-size: 48px;
font-weight: 600;
text-align: center;
}
h1 sup {
font-size: 18px;
font-weight: 400;
}
ul {
list-style: none;
padding: 0;
margin: 20px 10px 0;
line-height: 1.5;
}
ul li:before {
content: "•";
margin-right: 10px;
}
.buttons {
display: flex;
margin-top: 20px;
gap: 10px;
}
button {
all: unset;
border: 1px solid #ccc;
padding: 5px 15px;
border-radius: 5px;
display: block;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1>driver.js <sup>next</sup></h1>
<p>Rewritten and enhanced version of driver.js</p>
<div class="buttons">
<button id="highlight-btn">Simple Highlight</button>
<button id="tour-btn">Start Tour</button>
<button id="highlight-destroy">Destroy after 2s</button>
</div>
<ul>
<li>Written in TypeScript</li>
<li>Lightweight — only 5kb gzipped</li>
<li>No dependencies</li>
<li>MIT Licensed</li>
</ul>
</div>
<script type="module">
import { driver } from "./src/driver.ts";
const driverObj = driver();
document.getElementById("highlight-btn").addEventListener("click", () => {
driverObj.highlight({
element: "h1",
});
});
document
.getElementById("highlight-destroy")
.addEventListener("click", () => {
driverObj.highlight({
element: "h1",
});
setTimeout(() => {
driverObj.destroy();
}, 2000);
});
</script>
</body>
</html>
|