<style>
.fake-video-container {
position: relative;
width: 100%;
max-width: 600px;
margin: 20px auto;
overflow: hidden;
border-radius: 14px;
box-shadow: 0 8px 25px rgba(0,0,0,0.4);
cursor: pointer;
}
.fake-video-container img {
width: 100%;
height: auto;
display: block;
transform-origin: center;
animation: fakeVideoMotion 6s ease-in-out infinite alternate;
transition: transform 0.5s ease-in-out;
}
.fake-video-container:hover img {
transform: scale(1.05) translate(2px, -2px);
}
.play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(5px);
}
.play-btn::before {
content: '';
border-style: solid;
border-width: 15px 0 15px 25px;
border-color: transparent transparent transparent white;
margin-left: 5px;
}
.play-btn::after {
content: '';
position: absolute;
width: 100px;
height: 100px;
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.3);
animation: pulse 2s infinite;
}
@keyframes fakeVideoMotion {
0% {
transform: scale(1.05) translate(0, 0);
}
100% {
transform: scale(1.1) translate(-5px, 5px);
}
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1.4);
opacity: 0;
}
}
</style>
<a href="https://otieu.com/4/9695545" target="_blank">
<div class="fake-video-container">
<img src="https://drive.google.com/thumbnail?id=1zsdTuukNim8cVqJ03Y-AuN6T7FA-y4Jm&sz=w4000" alt="Fake Video" />
<div class="play-btn"></div>
</div>
</a>