-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloading.js
152 lines (131 loc) · 5.1 KB
/
loading.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
const loadingBar = document.querySelector('.loading-bar');
const percentageLabel = document.querySelector('.percentage-label');
// Set the duration of the animation in milliseconds (adjust as needed)
const animationDuration = 2000;
// Set the target progress value (e.g., 100%)
const targetProgress = 100;
// Create the anime.js animation for the loading bar
anime({
targets: loadingBar,
width: `${targetProgress}%`,
duration: animationDuration,
easing: 'easeInOutSine', // Built-in easing function for smoother animation
update: (animation) => {
// Update the percentage label during the animation
const currentProgress = animation.progress;
const percentage = Math.round((currentProgress / animation.duration) * 100);
updatePercentage(percentage);
},
complete: () => {
// Animation complete, hide the preloader after a short delay for smooth transition
anime({
targets: '.preloader',
opacity: 0,
duration: 500,
complete: () => {
document.querySelector('.preloader').style.display = 'none';
// Call a custom function here if needed after the loading is complete
// e.g., onLoadComplete();
},
});
},
});
// Function to update the percentage label with dynamic color change
function updatePercentage(percentage) {
percentageLabel.textContent = `${percentage}%`;
// Update the label color dynamically based on the percentage
const hue = Math.floor((percentage * 1.2) % 360); // Vary the hue from 0 to 360
percentageLabel.style.color = `hsl(${hue}, 100%, 50%)`;
}
// Create an animated particle background using anime.js
const canvas = document.getElementById('background');
const ctx = canvas.getContext('2d');
function createParticle(x, y, radius, color) {
const particle = {
x,
y,
radius,
color,
angle: Math.random() * Math.PI * 2,
speed: Math.random() * 2 + 1,
draw: function () {
ctx.beginPath();
ctx.arc(this.x, this.y, this.radius, 0, Math.PI * 2, false);
ctx.fillStyle = this.color;
ctx.fill();
},
update: function () {
this.x += Math.cos(this.angle) * this.speed;
this.y += Math.sin(this.angle) * this.speed;
// Bounce particles off the canvas edges
if (this.x - this.radius < 0 || this.x + this.radius > canvas.width) {
this.angle = Math.PI - this.angle;
}
if (this.y - this.radius < 0 || this.y + this.radius > canvas.height) {
this.angle = -this.angle;
}
},
};
return particle;
}
const particles = [];
const particleColors = ['#f39c12', '#e74c3c', '#3498db', '#2ecc71'];
function animateParticles() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
particles.forEach((particle, index) => {
particle.update();
particle.draw();
// Particle interactions with the loading bar
const distanceX = particle.x - loadingBar.getBoundingClientRect().left;
const distanceY = particle.y - loadingBar.getBoundingClientRect().top;
const distance = Math.sqrt(distanceX * distanceX + distanceY * distanceY);
if (distance < 50 && particle.speed < 5) {
particle.speed += 1;
} else if (particle.speed > 1) {
particle.speed -= 0.1;
}
// Remove particle if it goes out of the canvas
if (
particle.x < 0 ||
particle.x > canvas.width ||
particle.y < 0 ||
particle.y > canvas.height
) {
particles.splice(index, 1);
}
});
requestAnimationFrame(animateParticles);
}
function spawnParticles() {
if (particles.length < 100) {
const x = Math.random() * canvas.width;
const y = Math.random() * canvas.height;
const radius = Math.random() * 2 + 1;
const color = particleColors[Math.floor(Math.random() * particleColors.length)];
particles.push(createParticle(x, y, radius, color));
}
requestAnimationFrame(spawnParticles);
}
// Create a dynamic gradient for the background
const gradient = ctx.createLinearGradient(0, 0, canvas.width, canvas.height);
gradient.addColorStop(0, '#3498db');
gradient.addColorStop(1, '#e74c3c');
function animateBackground() {
ctx.fillStyle = gradient;
ctx.fillRect(0, 0, canvas.width, canvas.height);
requestAnimationFrame(animateBackground);
}
// Handle window resize for responsive canvas size
function resizeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
// Recreate the dynamic gradient after resizing
gradient.addColorStop(0, '#3498db');
gradient.addColorStop(1, '#e74c3c');
}
window.addEventListener('resize', resizeCanvas);
// Start the particle animations and background animation
resizeCanvas();
spawnParticles();
animateParticles();
animateBackground();