-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
43 lines (37 loc) · 984 Bytes
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="src/jquery.js"></script>
<style type="text/css">
html {
width: 700px;
height: 560px;
}
.link {
width: 640px;
height: 360px;
position: absolute;
pointer-events: none;
left: 20px;
}
.settings {
position: absolute;
width: 25px;
height: 25px;
top: 18px;
right: 5px;
transition: transform 0.3s;
outline: 1px solid transparent;
}
.settings:hover {
transform: rotate (45deg);
}
</style>
</head>
<body>
<div id="onClick" class="link" style="pointer-events: auto !important;"></div>
<script src="src/getVideos.js"></script>
<img id="settingsImg" class="settings" src="src/settings.png" title="Settings" draggable="false" />
</body>
</html>