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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
| <!DOCTYPE html> <html lang="zh">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>瀑布流视频墙(懒加载优化版)</title> <style> body { font-family: Arial, sans-serif; background-color: #f5f5f5; margin: 0; padding: 20px; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; justify-items: center; }
.grid-item { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease-in-out, box-shadow 0.3s; cursor: pointer; position: relative; }
.grid-item:hover { transform: scale(1.05); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); }
.grid-item video { width: 100%; height: 250px; object-fit: cover; display: block; }
.video-title { position: absolute; top: 0; left: 0; right: 0; padding: 8px; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%); color: white; font-size: 12px; font-weight: bold; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; z-index: 1; }
.video-description { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px; background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%); color: white; font-size: 10px; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); max-height: 40%; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; line-height: 1.4; z-index: 1; }
.fullscreen { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.8); display: none; align-items: center; justify-content: center; z-index: 1000; }
.fullscreen video { max-width: 90%; max-height: 90%; border-radius: 10px; box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3); }
.close-btn { position: absolute; top: 20px; right: 20px; font-size: 24px; color: white; background: rgba(0, 0, 0, 0.5); border: none; cursor: pointer; padding: 10px; border-radius: 5px; }
.close-btn:hover { background: rgba(255, 255, 255, 0.3); }
.video-title, .video-description { transition: opacity 2s ease-in-out; }
@media (min-width: 1200px) { .grid-container { grid-template-columns: repeat(5, minmax(150px, 1fr)); } }
@media (max-width: 1199px) and (min-width: 992px) { .grid-container { grid-template-columns: repeat(4, minmax(150px, 1fr)); } }
@media (max-width: 991px) and (min-width: 768px) { .grid-container { grid-template-columns: repeat(3, minmax(150px, 1fr)); } }
@media (max-width: 767px) and (min-width: 576px) { .grid-container { grid-template-columns: repeat(2, minmax(150px, 1fr)); } }
@media (max-width: 575px) { .grid-container { grid-template-columns: repeat(1, minmax(150px, 1fr)); }
.video-title { font-size: 14px; padding: 6px; }
.video-description { font-size: 12px; -webkit-line-clamp: 2; } } </style> </head>
<body> <h2 style="text-align:center;">瀑布流视频墙</h2> <div class="grid-container" id="gridContainer"></div> <div id="fullscreenContainer" class="fullscreen"> <video id="fullscreenVideo" controls></video> <button class="close-btn" onclick="closeFullscreen()">✖</button> </div> <script> let currentVideoInfo = {};
const videoUrls = [ { url: "https://mpimg.cn/view.php/ec646e37456de0ac11a31c366ae97902.mp4", name: "雪山日出", description: "清晨的雪山日出美景,金色阳光洒满雪山" }, { url: "https://mpimg.cn/view.php/d7cf77dc0f88ea61157bd1b09d3cc38b.mp4", name: "海底世界", description: "" }, { url: "https://example.com/video1.mp4", name: "城市夜景", description: "延时摄影展示的城市夜景灯光" }, { url: "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.webm", name: "花开富贵", description: "款式大方考虑到实际付款老大随机发克拉的设计饭卡手打款式大方好看的,防守打法顺丰快递说法打撒的地方开始货到付款活动时间风好大手机。石沉大海司法鉴定所富华大厦放" }, { url: "https://mpimg.cn/view.php/d7cf77dc0f88ea61157bd1b09d3cc38b.mp4", name: "", description: "" }, { url: "https://mpimg.cn/view.php/ec646e37456de0ac11a31c366ae97902.mp4", name: "《记事本MV》-陈慧琳", description: "童年只记住了旋律,长大后更多是关于生活、爱情以及成长的故事~" }, { url: "https://mpimg.cn/view.php/d7cf77dc0f88ea61157bd1b09d3cc38b.mp4", name: "内心世界", description: "从小缺爱的人内心是没有力量的,唯有把心激活,生命才能恢复活力~" }, ];
const gridContainer = document.getElementById("gridContainer"); const fullscreenContainer = document.getElementById("fullscreenContainer"); const fullscreenVideo = document.getElementById("fullscreenVideo");
videoUrls.forEach(videoData => { const div = document.createElement("div"); div.className = "grid-item";
let title = null; if (videoData.name) { title = document.createElement("div"); title.className = "video-title"; title.textContent = videoData.name; div.appendChild(title); }
const video = document.createElement("video"); video.dataset.src = videoData.url; video.preload = "none"; video.poster = videoData.url.replace(".mp4", "https://mpimg.cn/view.php/9b3a38f7ec07818525d175c5ec014141.jpg"); video.onerror = () => { video.poster = "https://mpimg.cn/view.php/2982f73b9d2223a23a85e0a6686b7bdd.jpg"; video.removeAttribute("src"); };
let desc = null; if (videoData.description) { desc = document.createElement("div"); desc.className = "video-description"; desc.textContent = videoData.description; div.appendChild(desc); }
function toggleTextVisibility() { if (title) title.style.display = video.paused ? 'block' : 'none'; if (desc) desc.style.display = video.paused ? 'block' : 'none'; } toggleTextVisibility();
video.addEventListener('play', toggleTextVisibility); video.addEventListener('pause', toggleTextVisibility);
video.onclick = () => { if (!video.src) { video.src = video.dataset.src; video.load(); video.play(); } else { if (video.paused) { video.play(); } else { video.pause(); } } };
video.ondblclick = () => { if (!video.src) { video.src = video.dataset.src; video.load(); } const wasPlaying = !video.paused; const currentTime = video.currentTime; video.pause(); openFullscreen(video.src, currentTime, wasPlaying, video); };
div.appendChild(video); gridContainer.appendChild(div); });
function openFullscreen(url, currentTime, wasPlaying, gridVideo) { fullscreenVideo.src = url; fullscreenVideo.currentTime = currentTime; fullscreenVideo.play(); fullscreenContainer.style.display = "flex"; document.body.style.overflow = "hidden"; currentVideoInfo = { wasPlaying, gridVideo }; }
function closeFullscreen() { const { wasPlaying, gridVideo } = currentVideoInfo; const currentTime = fullscreenVideo.currentTime; fullscreenVideo.pause(); fullscreenContainer.style.display = "none"; document.body.style.overflow = "auto"; if (gridVideo) { gridVideo.currentTime = currentTime; if (wasPlaying) gridVideo.play(); } currentVideoInfo = {}; }
fullscreenContainer.addEventListener("click", (e) => { if (e.target === fullscreenContainer) closeFullscreen(); });
const playStates = new Map(); document.addEventListener('visibilitychange', handleVisibilityChange); function handleVisibilityChange() { const videos = document.querySelectorAll('video'); if (document.hidden) { videos.forEach(video => { playStates.set(video, !video.paused); video.pause(); }); } else { playStates.forEach((wasPlaying, video) => { if (wasPlaying) video.play(); }); playStates.clear(); } } </script> </body>
</html>
|