
An animated starfield to simulate an interstellar travel effect on your webpage.
Created using plain JavaScript and HTML5 canvas. Ideal for Star Wars Fans pages or Sci-fi/futuristic websites.
How to use it:
1. Create a canvas on which you want to render the starfield effect.
<canvas id="starField"></canvas>
2. Apply a deep space-like background to the canvas element.
canvas {
background: radial-gradient(ellipse at center, #242938, #000 100%);
}3. The main JavaScript to create the animated starfield effect.
const canvas = document.getElementById('starField');
const c = canvas.getContext('2d');
canvas.width = window.innerWidth; //screen width
canvas.height = window.innerHeight; //screem height
//on mouse scroll changes speed and color
window.addEventListener('wheel', (event) => {
c.strokeStyle = 'rgb('+Math.random()*255+', '+Math.random()*255+', '+Math.random()*255+')';
if (event.deltaY < 0) speed *= 1.1;
else speed *= 0.9;
if (speed < 0.01) speed = 0.01; else if (speed > 0.1) speed = 0.1;
});
class Star {
constructor() {
//initializing
this.x = Math.random()*canvas.width-canvas.width/2; //random x
this.y = Math.random()*canvas.height-canvas.height/2; //random y
this.px, this.py;
this.z = Math.random()*4; //random z
}
update() {
//stores previous x, y and z and generates new coordinates
this.px = this.x;
this.py = this.y;
this.z += speed;
this.x += this.x*(speed*0.2)*this.z;
this.y += this.y*(speed*0.2)*this.z;
if (this.x > canvas.width/2+50 || this.x < -canvas.width/2-50 || this.y > canvas.height/2+50 || this.y < -canvas.height/2-50) {
this.x = Math.random()*canvas.width-canvas.width/2;
this.y = Math.random()*canvas.height-canvas.height/2;
this.px = this.x;
this.py = this.y;
this.z = 0;
}
}
//draws line from x,y to px,py
show() {
c.lineWidth = this.z;
c.beginPath();
c.moveTo(this.x, this.y);
c.lineTo(this.px, this.py);
c.stroke();
}
}
let speed = 0.04;
let stars = [];
//create 1500 stars (objects)
for (let i = 0; i < 1500; i++) stars.push(new Star());
c.fillStyle = 'rgba(0, 0, 0, 0.1)';
c.strokeStyle = 'rgb('+Math.random()*255+', '+Math.random()*255+', '+Math.random()*255+')';
c.translate(canvas.width/2, canvas.height/2);
function draw() {
//create rectangle
c.fillRect(-canvas.width/2, -canvas.height/2, canvas.width, canvas.height);
for (let s of stars) {
s.update();
s.show();
}
//infinte call to draw
requestAnimationFrame(draw);
}
draw();







