added onlyfans

This commit is contained in:
dalfuss 2025-10-08 17:43:06 +02:00
parent f52d1600be
commit e21ff5c9e4
3 changed files with 72 additions and 0 deletions

33
onlyfans/index.html Normal file
View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Are you over 18?</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<button id="playButton">I am over 18!</button>
<div id="videoContainer">
<video id="fullscreenVideo" src="./onlyfans.webm" type="video/webm"></video>
</div>
<script>
const playButton = document.getElementById('playButton');
const videoContainer = document.getElementById('videoContainer');
const fullscreenVideo = document.getElementById('fullscreenVideo');
playButton.addEventListener('click', () => {
playButton.style.display = 'none';
videoContainer.style.display = 'block';
fullscreenVideo.play();
});
fullscreenVideo.addEventListener('ended', () => {
videoContainer.style.display = 'none';
playButton.style.display = 'block';
});
</script>
</body>
</html>

BIN
onlyfans/onlyfans.webm Normal file

Binary file not shown.

39
onlyfans/style.css Normal file
View File

@ -0,0 +1,39 @@
body {
margin: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #a8c5db;
}
#playButton {
padding: 20px 40px;
font-size: 20px;
color: black;
background-color: #F5A9B8;
border-radius: 50px;
outline-color: white;
outline-style: outset;
cursor: pointer;
}
#playButton:hover {
background-color: #5BCEFA;
}
#videoContainer {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
}
#videoContainer video {
width: 100%;
height: 100%;
object-fit: cover;
}