Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!-- Ceci est un port en JS du screamer cactus original de PyjamaSam
- Il utilise donc, une partie du code original.
- screamer original : 0xad.net/cactus
- -->
- <html>
- <head>
- <title>CACAAACAAAA</title>
- <meta charset="utf-8">
- <script>
- </script>
- <style type="text/css">
- body
- {
- margin: 0;
- padding: 0;
- background:url(https://0xad.net/cactus/cactus2.jpg) no-repeat black;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- }
- #nocursor
- {
- cursor: none;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- position: fixed;
- }
- </style>
- </head>
- <body>
- <div id="nocursor"></div>
- <audio id="audio" src="https://jvflux.fr/images/b/ba/Cactus_screamer_musique.mp3" loop></audio>
- <script>
- //cimer chatgpt pour ce workaround eco+
- document.body.addEventListener('click', () => {
- const audio = document.getElementById('audio');
- audio.play();
- }, { once: true });
- document.body.addEventListener('dblclick', () => {
- if (!document.fullscreenElement) {
- document.documentElement.requestFullscreen().catch(err => {
- console.error(`CAAAACAAACAA`);
- });
- }
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment