Pipes

Developer
Size
2,578 Kb
Views
44,528

How do I make an pipes?

Just like the old windows screen saver!. What is a pipes? How do you make a pipes? This script and codes were developed by Tristan on 25 August 2022, Thursday.

Pipes Previews

Pipes - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Pipes</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <canvas id="canvas" width="1200" height="300"></canvas> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Pipes - Script Codes CSS Codes

*{margin:0;padding:0;}
body{background:rgba(0,0,0,1);}
html,body{width:100%; height:100%;}

Pipes - Script Codes JS Codes

var canvas, c, w, h, twoPI = Math.PI * 2, pipes = new Array();
$(document).ready(function(){ canvas = document.getElementById("canvas"); c = canvas.getContext("2d"); w = canvas.width; h = canvas.height; var pipe = function(colour){ this.rad = 5; this.maxRad = 30; this.fill = null; this.colour = colour; this.position = { x: 0, y: 0 }; this.target = { x: 0, y: 0 }; this.direction = {x: 1, y: 0}; this.speed = 1; this.create = function(){ this.rad = 5; this.position.x = Math.random()*w |0; this.position.y = Math.random()*h |0; do { this.target.x = this.position.x + ((Math.random()*200)-100) |0; } while( this.target.x < this.rad || this.target.x > w-this.rad ); this.target.y = this.position.y; this.direction.x = (this.position.x > this.target.x) ? -1 : 1; this.direction.y = 0; this.colour.a = 0; }; this.move = function(){ this.position.x += this.direction.x; this.position.y += this.direction.y; if( (this.direction.x > 0 && this.position.x > this.target.x) || (this.direction.x < 0 && this.position.x < this.target.x) ){ this.target.x = this.position.x; do { this.target.y = this.position.y + (Math.random()*200)-100 |0; } while( this.target.y < this.rad || this.target.y > h-this.rad ); this.direction.x = 0; this.direction.y = this.position.y > this.target.y ? -1 : 1; } if( (this.direction.y > 0 && this.position.y > this.target.y) || (this.direction.y < 0 && this.position.y < this.target.y) ){ this.target.y = this.position.y; do { this.target.x = this.position.x + ((Math.random()*200)-100) |0; } while( this.target.x < this.rad || this.target.x > w-this.rad ); this.direction.y = 0; this.direction.x = this.position.x > this.target.x ? -1 : 1; } this.rad += 0.005; if(this.rad > this.maxRad){ this.create(); c.clear(); } if(this.colour.a < 1) this.colour.a += 0.005; this.draw(); }; this.draw = function(){ this.setFill(); c.fillStyle = this.fill; c.beginPath(); c.arc(this.position.x, this.position.y, this.rad, 0, twoPI, true); c.closePath(); c.fill(); c.save(); c.fillStyle = "rgba(0,0,0,0.75)"; c.beginPath(); c.arc(this.position.x, this.position.y, this.rad-2, 0, twoPI, true);	c.closePath(); c.fill(); c.restore(); }; this.setFill = function(){ this.fill = c.createLinearGradient(this.position.x-(this.rad/2),this.position.y-(this.rad/2),this.position.x+(this.rad/2),this.position.y+(this.rad/2)); this.fill.addColorStop(0, "rgba("+this.colour.r+","+this.colour.g+","+this.colour.b+","+this.colour.a+")"); this.fill.addColorStop(1, "rgba("+(this.colour.r/100*20|0)+","+(this.colour.g/100*20|0)+","+(this.colour.b/100*20|0)+","+this.colour.a+")"); }; this.create(); }; var animate = function(){ for( p in pipes ){ pipes[p].move(); } }; pipes.push(new pipe( {r:105, g:210, b:231} )); pipes.push(new pipe( {r:167, g:219, b:219} )); pipes.push(new pipe( {r:224, g:228, b:204} )); pipes.push(new pipe( {r:243, g:134, b:48 } )); pipes.push(new pipe( {r:250, g:105, b:0 } )); var gTimer = window.setInterval(animate,10); CanvasRenderingContext2D.prototype.clear = function(preserve){ this.save(); this.clearRect(0,0,this.canvas.width,this.canvas.height); this.restore(); };
});
Pipes - Script Codes
Pipes - Script Codes
Home Page Home
Developer Tristan
Username sinthetyc
Uploaded August 25, 2022
Rating 3.5
Size 2,578 Kb
Views 44,528
Do you need developer help for Pipes?

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!

Tristan (sinthetyc) Script Codes
Create amazing blog posts 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!