Meta Description" name="description" />

Share this result

Previews are deleted daily. Get a permanent share link sent to your inbox:
Script
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Monkey Jump</title> <style> body { background: #c8f0ff; height: 100vh; overflow: hidden; display: flex; justify-content: center; align-items: flex-end; } .monkey { width: 120px; position: relative; bottom: 0; transition: 0.3s; } /* Jump Animation */ .jump { animation: jump 0.6s ease-out; } @keyframes jump { 0% { transform: translateY(0); } 50% { transform: translateY(-150px); } 100% { transform: translateY(0); } } button { position: absolute; top: 20px; padding: 10px 20px; font-size: 18px; cursor: pointer; } </style> </head> <body> <button onclick="jumpMonkey()">Jump!</button> <!-- Monkey Image --> <img src="https://i.imgur.com/Jy2LQxU.png" class="monkey" id="monkey"> <script> function jumpMonkey() { let monkey = document.getElementById("monkey"); // prevent spam jumping if (!monkey.classList.contains("jump")) { monkey.classList.add("jump"); setTimeout(() => { monkey.classList.remove("jump"); }, 600); } } </script> </body> </html>
Landing Page
This ad does not have a landing page available
Network Timeline
Performance Summary

3

Requests

2

Domains

2KB

Transfer Size

2KB

Content Size

156.0ms

Dom Content Loaded

184.0ms

First Paint

210.0ms

Load Time
Domain Breakdown
Transfer Size (bytes)
Loading...
Content Size (bytes)
Loading...
Header Size (bytes)
Loading...
Requests
Loading...
Timings (ms)
Loading...
Total Time
Loading...
Content Breakdown
Transfer Size (bytes)
Loading...
Content Size (bytes)
Loading...
Header Size (bytes)
Loading...
Requests
Loading...