-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1008 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<title>tooltiplery.js</title>
<!-- <link rel="icon" href="logo.png" type="image/x-icon"/> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: #101010;
color: #e0e0e0;
}
}
</style>
</head>
<body>
<button class="demo">Hover on me to popup the tooltip without animation</button>
<button class="demo2">Hover on me to popup the tooltip within fade animation</button>
<script src="tooltiplery.js"></script>
<script>
tooltiplery.initialization.appendStyleSheet();
</script>
<script src="script.js"></script>
</body>
</html>