Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <meta charset="UTF-8" />
- <title>042933964230</title>
- <meta name="alpha" value="Charlie begs Clyde, 'Pass the salt!'" />
- <meta name="echo" value="U2FsdGVkX197+cpGaGB1G3GkbFgIm/WnGZpRXdeEIBB6GX8SHnDYPpQ9L3K11se0YWeFKszC8N+nXeuY46VdKfdwBS7tD8Rjrhj4u8Z+yuW5/3FePceI9JNmGNkWGbd1rxivAAk5MM2CooYIxPiW8kaof0H+z9iky9NGeOg4nOcGs4lk4v8p81Ria6C4sCcvjZvEMV/1OPcMvPf4ISdMi8rRw9kw3egksmMkxsSjSFH/ou0CWfs9dOULrIgzXNPGKjabDnTpxMYrg+TAK1yQgftb0+eg7NmUX4My/bQJMObH2W7113X/OQ65fESEqVZ8st0x/xbcq4M6dDK+KsS7sfbO7iwIYKGN92CNG1Bdbzhffn12ctMla0QvDx/6O6feCMZdpQ8N4wYnG5Jeuz/mB1EjVfB0MSyAydaS++CssCEbUiqORAFDXPek9+drgxI1fX2udITytmrCFJsKXJhjd92egxBW0GTPXM0MharoQGVObv8mmVE6V4BjnDIDnbHvv5802cotEYzAXjCZtRIjxSW3HZveVxKAsfNvQShkTs/a3J6tuHyPZ+rnZ0pKrwRB8osVUTlOXVQWiSNa7YAHTw6JVszB2vDvpGasgT6Iuw7ZTtq5B4sHk3Akn78XuMgVlDX23TPlEiBI1sPV3tteqg==" />
- <meta name="sierra" value="AC/DC Ballbreaker" />
- <style type="text/css">
- * { margin: 0; padding: 0; }
- canvas { display: block; }
- body { background: black; }
- h1 { color: white; }
- .zero { display: none; }
- </style>
- </head>
- <body>
- <canvas width="100%" height="100%" id="c"></canvas>
- <script type="text/javascript">
- var c = document.getElementById("c");
- c.height = window.innerHeight;
- c.width = window.innerWidth;
- var drop_size = 12;
- var columns = c.width/drop_size;
- var chinese = "ムタ二コク1234567890シモラキリエスハヌトユABCDEF";
- chinese = chinese.split("");
- var drops = [];
- for(var i = 0; i < columns; i++)
- drops[i] = 1; //y coordinate - same for everyone at the starting. The index contains the x coordinate
- ctx = c.getContext('2d');
- function draw()
- {
- ctx.fillStyle = "rgba(0, 0, 0, 0.05)";
- ctx.fillRect(0, 0, c.width, c.height);
- ctx.fillStyle = "#0f0";
- ctx.font= drop_size + "px arial";
- for(var i = 0; i < drops.length; i++)
- {
- text = chinese[Math.floor(Math.random()*chinese.length)];
- ctx.fillText(text, i*drop_size, drops[i]*drop_size);
- if(drops[i]*drop_size > c.height && Math.random() > 0.975)
- drops[i] = 0;
- drops[i]++;
- }
- }
- setInterval(draw, 33);
- </script>
- <iframe class="zero" width="0" height="0" src="https://www.youtube.com/embed/_xEyFqiFuXQ?autoplay=1&loop=1" frameborder="0" allow="autoplay; loop; encrypted-media"></iframe>
- </body>
- </html>
Add Comment
Please, Sign In to add comment