Spaces:
Running
Running
Update index.html
Browse files- index.html +31 -0
index.html
CHANGED
@@ -38,7 +38,38 @@
|
|
38 |
box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
|
39 |
background: #000;
|
40 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
video {
|
43 |
width: 100%;
|
44 |
display: block;
|
|
|
38 |
box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
|
39 |
background: #000;
|
40 |
}
|
41 |
+
/* ホバー時の時間表示スタイル */
|
42 |
+
.hover-time {
|
43 |
+
position: absolute;
|
44 |
+
top: -30px;
|
45 |
+
transform: translateX(-50%);
|
46 |
+
background: rgba(0, 20, 40, 0.9);
|
47 |
+
color: #00ccff;
|
48 |
+
padding: 3px 8px;
|
49 |
+
border-radius: 4px;
|
50 |
+
font-size: 12px;
|
51 |
+
pointer-events: none;
|
52 |
+
display: none;
|
53 |
+
white-space: nowrap;
|
54 |
+
font-family: "M PLUS Rounded 1c", monospace;
|
55 |
+
}
|
56 |
|
57 |
+
/* サムネイルプレビュー用スタイル */
|
58 |
+
.thumbnail-preview {
|
59 |
+
position: absolute;
|
60 |
+
width: 160px;
|
61 |
+
height: 90px;
|
62 |
+
background: #000;
|
63 |
+
border: 2px solid #00aaff;
|
64 |
+
box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
|
65 |
+
display: none;
|
66 |
+
pointer-events: none;
|
67 |
+
z-index: 10;
|
68 |
+
bottom: 50px;
|
69 |
+
transform: translateX(-50%);
|
70 |
+
border-radius: 4px;
|
71 |
+
object-fit: cover;
|
72 |
+
}
|
73 |
video {
|
74 |
width: 100%;
|
75 |
display: block;
|