Spaces:
Running
Running
admin
commited on
Commit
·
3790e60
1
Parent(s):
0747f83
not hide for first load
Browse files- css/musicvision.css +4 -0
- index.html +1 -1
- js/player.js +4 -0
css/musicvision.css
CHANGED
@@ -27,6 +27,10 @@ body {
|
|
27 |
margin: 0 !important;
|
28 |
}
|
29 |
|
|
|
|
|
|
|
|
|
30 |
#upl {
|
31 |
position: fixed;
|
32 |
top: 0;
|
|
|
27 |
margin: 0 !important;
|
28 |
}
|
29 |
|
30 |
+
.first {
|
31 |
+
opacity: 1 !important;
|
32 |
+
}
|
33 |
+
|
34 |
#upl {
|
35 |
position: fixed;
|
36 |
top: 0;
|
index.html
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
|
11 |
<body>
|
12 |
|
13 |
-
<div id="upl">
|
14 |
<table border="0" width="100%">
|
15 |
<tr>
|
16 |
<td>
|
|
|
10 |
|
11 |
<body>
|
12 |
|
13 |
+
<div id="upl" class="first">
|
14 |
<table border="0" width="100%">
|
15 |
<tr>
|
16 |
<td>
|
js/player.js
CHANGED
@@ -41,6 +41,10 @@ function closeFullscreen() {
|
|
41 |
}
|
42 |
|
43 |
window.onload = function () {
|
|
|
|
|
|
|
|
|
44 |
wrap.width = window.innerWidth - 1;
|
45 |
wrap.height = window.innerHeight - 1;
|
46 |
let canvasCtx = wrap.getContext("2d");
|
|
|
41 |
}
|
42 |
|
43 |
window.onload = function () {
|
44 |
+
$('#upl').hover(function () {
|
45 |
+
$(this).removeClass("first");
|
46 |
+
});
|
47 |
+
|
48 |
wrap.width = window.innerWidth - 1;
|
49 |
wrap.height = window.innerHeight - 1;
|
50 |
let canvasCtx = wrap.getContext("2d");
|