-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
32 lines (28 loc) · 970 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
32
<html>
<head>
<style>
a {
display: inline-block;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div>
<span style="text-align: right" data-tooltip="Nothing to declareé, well maybe a little. Will this still fit? 😂" data-tooltip-width="200" data-tooltip-position="bottom" data-tooltip-offset="0">hallo tooltip</span>
</div>
<div>
<a href="#" data-tooltip="Go to www.google.nl " data-tooltip-position="left" data-tooltip-offset="0">test</a>
</div>
<div>
<span style="text-align: right; float: right" data-tooltip="Something to declare 😂 my friend?" data-tooltip-offset="5">hallo tooltip</span>
</div>
<script>
const tooltip = require('./src/electron-tooltip')
tooltip()
</script>
</body>
</html>