Mã đơn giản, trang ngắn gọn, hỗ trợ phát lại tự động liên tục và tương thích với WeChat và có thể phát mà không cần toàn màn hình. Bạn có thể nhấp vào phát theo cách thủ công khi mở
liên kết video lần đầu tiên; ks.txt, với một địa chỉ liên kết trên mỗi dòng và bạn có thể tự thêm nó;
Trình diễn hiệu ứng

index.html – trang nhập
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charSet="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<meta name="referrer" content="never">
<meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title> XJJ </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="main">
<video id="player" src="video.php" controls webkit-playsinline playsinline></video>
</section>
<section id="buttons">
<button id="switch">Liên tục: Bật</button>
<button id="next">Lượt tiếp theo</button>
</section>
<script>
(function(window, document) {
if (top != self) {
window.top.location.replace(self.location.href);
}
var get = function(id) {
return document.getElementById(id);
}
var < a target = "_blank"
href = "https://www.lihaiblog.cn/tags-252.html"> BI </a>nd = function (element, event, callback) { return element.addEventListener(event, callback);
}
var auto = true;
var player = get('player');
var randomm = function() {
player.src = 'video.php?_t=' + Math.random();
player.play();
}
bind(get('next'), 'click', randomm); bind(player, 'error', function() {
randomm();
}); bind(get('switch'), 'click', function() {
auto = !auto;
this.innerText = 'Tiếp diễn: ' + (auto ? 'mở' : 'đóng');
}); bind(player, 'ended', function() {
if (auto) randomm();
});
})(window, document);
</script>
</body>
</html>
style.css – phong cách
* {
border:0;
margin:0;
padding:0;
outline:none;
box-sizing:border-box;
}
body {
background:#000;
width:100vw;
height:100vh;
overflow:hidden;
display:flex;
flex-direction:column;
align-items:center;
}
#main {
height:calc(100vh - 60px);
display:flex;
justify-content:center;
align-items:center;
}
#player {
width:100%;
height:auto;
max-height:100%;
}
#buttons {
height:60px;
padding:10px;
}
#switch, #next { background:#FFF; background:linear-gradient(to bottom,#FF2,#FB0); color:#AF2E08; font-size:16px; font-weight:bold; height:40px; padding:0 20px; margin:0 5px; border-radius:20px; }
video.php – Nhận API video ngẫu nhiên
function read(...$filelist) {
$list = []; foreach ($filelist as $file) {
$handle = fopen($file, 'r'); while (($line = fgets($handle)) !== false) {
array_push($list, trim($line));
}
fclose($handle);
} return $list;
}
$list = read('ks.txt');
$url = $list[array_rand($list)];
header("Location: {$url}");
ks.txt – danh sách video
/* Đường dẫn video mỗi dòng một cái, bạn tự thêm vào */
……
……
……
Lời khuyên: Bài viết này được cập nhật lần cuối vào
2024-07-28 20:19:53
, một số bài viết có giới hạn thời gian, nếu có lỗi hoặc đã hết hạn, vui lòng để lại bên dưới tin nhắn hoặc liên hệ© Thông báo bản quyền
Bản quyền bài viết thuộc về tác giả, vui lòng không sao chép khi chưa được phép.
THE END
Chưa có bình luận nào