34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <!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>
 |