Fullscreen fun

Developer
Size
1,984 Kb
Views
32,384

How do I make an fullscreen fun?

What is a fullscreen fun? How do you make a fullscreen fun? This script and codes were developed by Moklick on 20 November 2022, Sunday.

Fullscreen fun Previews

Fullscreen fun - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>fullscreen fun</title> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ *{margin:0;padding:0}
html,body{height:100%;}
canvas{display:block;} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <canvas id="c"></canvas>
<!--
http://www.reddit.com/r/woahdude/comments/1v8mys/this_was_screwing_with_my_eyes/
--> <script src="js/index.js"></script>
</body>
</html>

Fullscreen fun - Script Codes CSS Codes

*{margin:0;padding:0}
html,body{height:100%;}
canvas{display:block;}

Fullscreen fun - Script Codes JS Codes

var c = document.getElementById('c'), ctx = c.getContext('2d'), w = window.innerWidth, h = window.innerHeight, s = 4, a = true;
c.height = h;
function ey(){ c.width = w; a ? hLines() : vLines(); ctx.fill(); a = !a setTimeout(ey,~~(Math.random() * 15) + 5);
}
function hLines(){ for(var i = 0;i < w; i+=(s+s)){ ctx.rect(i,0,s,h); }
}
function vLines(){ for(var i = 0;i < h; i+=(s+s)){ ctx.rect(0,i,w,s); }
}
ey();
Fullscreen fun - Script Codes
Fullscreen fun - Script Codes
Home Page Home
Developer Moklick
Username moklick
Uploaded November 20, 2022
Rating 3.5
Size 1,984 Kb
Views 32,384
Do you need developer help for Fullscreen fun?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Moklick (moklick) Script Codes
Create amazing marketing copy with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!