@tsparticles/updater-out-modes 3.3.0 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/BounceOutMode.js +3 -3
- package/browser/DestroyOutMode.js +5 -5
- package/browser/NoneOutMode.js +6 -6
- package/browser/OutOfCanvasUpdater.js +9 -8
- package/browser/OutOutMode.js +9 -9
- package/browser/Utils.js +19 -19
- package/browser/index.js +3 -3
- package/cjs/BounceOutMode.js +2 -2
- package/cjs/DestroyOutMode.js +4 -4
- package/cjs/NoneOutMode.js +5 -5
- package/cjs/OutOfCanvasUpdater.js +9 -8
- package/cjs/OutOutMode.js +8 -8
- package/cjs/Utils.js +18 -18
- package/cjs/index.js +3 -3
- package/esm/BounceOutMode.js +3 -3
- package/esm/DestroyOutMode.js +5 -5
- package/esm/NoneOutMode.js +6 -6
- package/esm/OutOfCanvasUpdater.js +9 -8
- package/esm/OutOutMode.js +9 -9
- package/esm/Utils.js +19 -19
- package/esm/index.js +3 -3
- package/package.json +2 -2
- package/report.html +1 -1
- package/tsparticles.updater.out-modes.js +62 -200
- package/tsparticles.updater.out-modes.min.js +1 -1
- package/tsparticles.updater.out-modes.min.js.LICENSE.txt +1 -1
- package/umd/BounceOutMode.js +2 -2
- package/umd/DestroyOutMode.js +4 -4
- package/umd/NoneOutMode.js +5 -5
- package/umd/OutOfCanvasUpdater.js +10 -9
- package/umd/OutOutMode.js +8 -8
- package/umd/Utils.js +18 -18
- package/umd/index.js +4 -28
- package/128.min.js +0 -2
- package/128.min.js.LICENSE.txt +0 -1
- package/dist_browser_OutOfCanvasUpdater_js.js +0 -80
package/esm/NoneOutMode.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { Vector, isPointInside, } from "@tsparticles/engine";
|
|
1
|
+
import { OutMode, OutModeDirection, Vector, isPointInside, } from "@tsparticles/engine";
|
|
2
2
|
const minVelocity = 0;
|
|
3
3
|
export class NoneOutMode {
|
|
4
4
|
constructor(container) {
|
|
5
5
|
this.container = container;
|
|
6
|
-
this.modes = [
|
|
6
|
+
this.modes = [OutMode.none];
|
|
7
7
|
}
|
|
8
8
|
update(particle, direction, delta, outMode) {
|
|
9
9
|
if (!this.modes.includes(outMode)) {
|
|
10
10
|
return;
|
|
11
11
|
}
|
|
12
12
|
if ((particle.options.move.distance.horizontal &&
|
|
13
|
-
(direction ===
|
|
13
|
+
(direction === OutModeDirection.left || direction === OutModeDirection.right)) ??
|
|
14
14
|
(particle.options.move.distance.vertical &&
|
|
15
|
-
(direction ===
|
|
15
|
+
(direction === OutModeDirection.top || direction === OutModeDirection.bottom))) {
|
|
16
16
|
return;
|
|
17
17
|
}
|
|
18
18
|
const gravityOptions = particle.options.move.gravity, container = this.container, canvasSize = container.canvas.size, pRadius = particle.getRadius();
|
|
@@ -31,8 +31,8 @@ export class NoneOutMode {
|
|
|
31
31
|
const position = particle.position;
|
|
32
32
|
if ((!gravityOptions.inverse &&
|
|
33
33
|
position.y > canvasSize.height + pRadius &&
|
|
34
|
-
direction ===
|
|
35
|
-
(gravityOptions.inverse && position.y < -pRadius && direction ===
|
|
34
|
+
direction === OutModeDirection.bottom) ||
|
|
35
|
+
(gravityOptions.inverse && position.y < -pRadius && direction === OutModeDirection.top)) {
|
|
36
36
|
container.particles.remove(particle);
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OutMode, OutModeDirection, } from "@tsparticles/engine";
|
|
1
2
|
import { BounceOutMode } from "./BounceOutMode.js";
|
|
2
3
|
import { DestroyOutMode } from "./DestroyOutMode.js";
|
|
3
4
|
import { NoneOutMode } from "./NoneOutMode.js";
|
|
@@ -22,16 +23,16 @@ export class OutOfCanvasUpdater {
|
|
|
22
23
|
init(particle) {
|
|
23
24
|
this.updaters = [];
|
|
24
25
|
const outModes = particle.options.move.outModes;
|
|
25
|
-
if (checkOutMode(outModes,
|
|
26
|
+
if (checkOutMode(outModes, OutMode.bounce)) {
|
|
26
27
|
this.updaters.push(new BounceOutMode(this.container));
|
|
27
28
|
}
|
|
28
|
-
else if (checkOutMode(outModes,
|
|
29
|
+
else if (checkOutMode(outModes, OutMode.out)) {
|
|
29
30
|
this.updaters.push(new OutOutMode(this.container));
|
|
30
31
|
}
|
|
31
|
-
else if (checkOutMode(outModes,
|
|
32
|
+
else if (checkOutMode(outModes, OutMode.destroy)) {
|
|
32
33
|
this.updaters.push(new DestroyOutMode(this.container));
|
|
33
34
|
}
|
|
34
|
-
else if (checkOutMode(outModes,
|
|
35
|
+
else if (checkOutMode(outModes, OutMode.none)) {
|
|
35
36
|
this.updaters.push(new NoneOutMode(this.container));
|
|
36
37
|
}
|
|
37
38
|
}
|
|
@@ -40,9 +41,9 @@ export class OutOfCanvasUpdater {
|
|
|
40
41
|
}
|
|
41
42
|
update(particle, delta) {
|
|
42
43
|
const outModes = particle.options.move.outModes;
|
|
43
|
-
this._updateOutMode(particle, delta, outModes.bottom ?? outModes.default,
|
|
44
|
-
this._updateOutMode(particle, delta, outModes.left ?? outModes.default,
|
|
45
|
-
this._updateOutMode(particle, delta, outModes.right ?? outModes.default,
|
|
46
|
-
this._updateOutMode(particle, delta, outModes.top ?? outModes.default,
|
|
44
|
+
this._updateOutMode(particle, delta, outModes.bottom ?? outModes.default, OutModeDirection.bottom);
|
|
45
|
+
this._updateOutMode(particle, delta, outModes.left ?? outModes.default, OutModeDirection.left);
|
|
46
|
+
this._updateOutMode(particle, delta, outModes.right ?? outModes.default, OutModeDirection.right);
|
|
47
|
+
this._updateOutMode(particle, delta, outModes.top ?? outModes.default, OutModeDirection.top);
|
|
47
48
|
}
|
|
48
49
|
}
|
package/esm/OutOutMode.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Vector, calculateBounds, getDistances, getRandom, isPointInside, randomInRange, } from "@tsparticles/engine";
|
|
1
|
+
import { OutMode, OutModeDirection, ParticleOutType, Vector, calculateBounds, getDistances, getRandom, isPointInside, randomInRange, } from "@tsparticles/engine";
|
|
2
2
|
const minVelocity = 0, minDistance = 0;
|
|
3
3
|
export class OutOutMode {
|
|
4
4
|
constructor(container) {
|
|
5
5
|
this.container = container;
|
|
6
|
-
this.modes = [
|
|
6
|
+
this.modes = [OutMode.out];
|
|
7
7
|
}
|
|
8
8
|
update(particle, direction, delta, outMode) {
|
|
9
9
|
if (!this.modes.includes(outMode)) {
|
|
@@ -11,7 +11,7 @@ export class OutOutMode {
|
|
|
11
11
|
}
|
|
12
12
|
const container = this.container;
|
|
13
13
|
switch (particle.outType) {
|
|
14
|
-
case
|
|
14
|
+
case ParticleOutType.inside: {
|
|
15
15
|
const { x: vx, y: vy } = particle.velocity;
|
|
16
16
|
const circVec = Vector.origin;
|
|
17
17
|
circVec.length = particle.moveCenter.radius;
|
|
@@ -42,7 +42,7 @@ export class OutOutMode {
|
|
|
42
42
|
return;
|
|
43
43
|
}
|
|
44
44
|
switch (particle.outType) {
|
|
45
|
-
case
|
|
45
|
+
case ParticleOutType.outside: {
|
|
46
46
|
particle.position.x =
|
|
47
47
|
Math.floor(randomInRange({
|
|
48
48
|
min: -particle.moveCenter.radius,
|
|
@@ -60,14 +60,14 @@ export class OutOutMode {
|
|
|
60
60
|
}
|
|
61
61
|
break;
|
|
62
62
|
}
|
|
63
|
-
case
|
|
63
|
+
case ParticleOutType.normal: {
|
|
64
64
|
const warp = particle.options.move.warp, canvasSize = container.canvas.size, newPos = {
|
|
65
65
|
bottom: canvasSize.height + particle.getRadius() + particle.offset.y,
|
|
66
66
|
left: -particle.getRadius() - particle.offset.x,
|
|
67
67
|
right: canvasSize.width + particle.getRadius() + particle.offset.x,
|
|
68
68
|
top: -particle.getRadius() - particle.offset.y,
|
|
69
69
|
}, sizeValue = particle.getRadius(), nextBounds = calculateBounds(particle.position, sizeValue);
|
|
70
|
-
if (direction ===
|
|
70
|
+
if (direction === OutModeDirection.right &&
|
|
71
71
|
nextBounds.left > canvasSize.width + particle.offset.x) {
|
|
72
72
|
particle.position.x = newPos.left;
|
|
73
73
|
particle.initialPosition.x = particle.position.x;
|
|
@@ -76,7 +76,7 @@ export class OutOutMode {
|
|
|
76
76
|
particle.initialPosition.y = particle.position.y;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
|
-
else if (direction ===
|
|
79
|
+
else if (direction === OutModeDirection.left && nextBounds.right < -particle.offset.x) {
|
|
80
80
|
particle.position.x = newPos.right;
|
|
81
81
|
particle.initialPosition.x = particle.position.x;
|
|
82
82
|
if (!warp) {
|
|
@@ -84,7 +84,7 @@ export class OutOutMode {
|
|
|
84
84
|
particle.initialPosition.y = particle.position.y;
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
|
-
if (direction ===
|
|
87
|
+
if (direction === OutModeDirection.bottom &&
|
|
88
88
|
nextBounds.top > canvasSize.height + particle.offset.y) {
|
|
89
89
|
if (!warp) {
|
|
90
90
|
particle.position.x = getRandom() * canvasSize.width;
|
|
@@ -93,7 +93,7 @@ export class OutOutMode {
|
|
|
93
93
|
particle.position.y = newPos.top;
|
|
94
94
|
particle.initialPosition.y = particle.position.y;
|
|
95
95
|
}
|
|
96
|
-
else if (direction ===
|
|
96
|
+
else if (direction === OutModeDirection.top && nextBounds.bottom < -particle.offset.y) {
|
|
97
97
|
if (!warp) {
|
|
98
98
|
particle.position.x = getRandom() * canvasSize.width;
|
|
99
99
|
particle.initialPosition.x = particle.position.x;
|
package/esm/Utils.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { getRangeValue } from "@tsparticles/engine";
|
|
1
|
+
import { OutMode, OutModeDirection, getRangeValue } from "@tsparticles/engine";
|
|
2
2
|
const minVelocity = 0, boundsMin = 0;
|
|
3
3
|
export function bounceHorizontal(data) {
|
|
4
|
-
if ((data.outMode !==
|
|
5
|
-
(data.direction !==
|
|
4
|
+
if ((data.outMode !== OutMode.bounce && data.outMode !== OutMode.split) ||
|
|
5
|
+
(data.direction !== OutModeDirection.left && data.direction !== OutModeDirection.right)) {
|
|
6
6
|
return;
|
|
7
7
|
}
|
|
8
|
-
if (data.bounds.right < boundsMin && data.direction ===
|
|
8
|
+
if (data.bounds.right < boundsMin && data.direction === OutModeDirection.left) {
|
|
9
9
|
data.particle.position.x = data.size + data.offset.x;
|
|
10
10
|
}
|
|
11
|
-
else if (data.bounds.left > data.canvasSize.width && data.direction ===
|
|
11
|
+
else if (data.bounds.left > data.canvasSize.width && data.direction === OutModeDirection.right) {
|
|
12
12
|
data.particle.position.x = data.canvasSize.width - data.size - data.offset.x;
|
|
13
13
|
}
|
|
14
14
|
const velocity = data.particle.velocity.x;
|
|
15
15
|
let bounced = false;
|
|
16
|
-
if ((data.direction ===
|
|
16
|
+
if ((data.direction === OutModeDirection.right &&
|
|
17
17
|
data.bounds.right >= data.canvasSize.width &&
|
|
18
18
|
velocity > minVelocity) ||
|
|
19
|
-
(data.direction ===
|
|
19
|
+
(data.direction === OutModeDirection.left && data.bounds.left <= boundsMin && velocity < minVelocity)) {
|
|
20
20
|
const newVelocity = getRangeValue(data.particle.options.bounce.horizontal.value);
|
|
21
21
|
data.particle.velocity.x *= -newVelocity;
|
|
22
22
|
bounced = true;
|
|
@@ -25,33 +25,33 @@ export function bounceHorizontal(data) {
|
|
|
25
25
|
return;
|
|
26
26
|
}
|
|
27
27
|
const minPos = data.offset.x + data.size;
|
|
28
|
-
if (data.bounds.right >= data.canvasSize.width && data.direction ===
|
|
28
|
+
if (data.bounds.right >= data.canvasSize.width && data.direction === OutModeDirection.right) {
|
|
29
29
|
data.particle.position.x = data.canvasSize.width - minPos;
|
|
30
30
|
}
|
|
31
|
-
else if (data.bounds.left <= boundsMin && data.direction ===
|
|
31
|
+
else if (data.bounds.left <= boundsMin && data.direction === OutModeDirection.left) {
|
|
32
32
|
data.particle.position.x = minPos;
|
|
33
33
|
}
|
|
34
|
-
if (data.outMode ===
|
|
34
|
+
if (data.outMode === OutMode.split) {
|
|
35
35
|
data.particle.destroy();
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
export function bounceVertical(data) {
|
|
39
|
-
if ((data.outMode !==
|
|
40
|
-
(data.direction !==
|
|
39
|
+
if ((data.outMode !== OutMode.bounce && data.outMode !== OutMode.split) ||
|
|
40
|
+
(data.direction !== OutModeDirection.bottom && data.direction !== OutModeDirection.top)) {
|
|
41
41
|
return;
|
|
42
42
|
}
|
|
43
|
-
if (data.bounds.bottom < boundsMin && data.direction ===
|
|
43
|
+
if (data.bounds.bottom < boundsMin && data.direction === OutModeDirection.top) {
|
|
44
44
|
data.particle.position.y = data.size + data.offset.y;
|
|
45
45
|
}
|
|
46
|
-
else if (data.bounds.top > data.canvasSize.height && data.direction ===
|
|
46
|
+
else if (data.bounds.top > data.canvasSize.height && data.direction === OutModeDirection.bottom) {
|
|
47
47
|
data.particle.position.y = data.canvasSize.height - data.size - data.offset.y;
|
|
48
48
|
}
|
|
49
49
|
const velocity = data.particle.velocity.y;
|
|
50
50
|
let bounced = false;
|
|
51
|
-
if ((data.direction ===
|
|
51
|
+
if ((data.direction === OutModeDirection.bottom &&
|
|
52
52
|
data.bounds.bottom >= data.canvasSize.height &&
|
|
53
53
|
velocity > minVelocity) ||
|
|
54
|
-
(data.direction ===
|
|
54
|
+
(data.direction === OutModeDirection.top && data.bounds.top <= boundsMin && velocity < minVelocity)) {
|
|
55
55
|
const newVelocity = getRangeValue(data.particle.options.bounce.vertical.value);
|
|
56
56
|
data.particle.velocity.y *= -newVelocity;
|
|
57
57
|
bounced = true;
|
|
@@ -60,13 +60,13 @@ export function bounceVertical(data) {
|
|
|
60
60
|
return;
|
|
61
61
|
}
|
|
62
62
|
const minPos = data.offset.y + data.size;
|
|
63
|
-
if (data.bounds.bottom >= data.canvasSize.height && data.direction ===
|
|
63
|
+
if (data.bounds.bottom >= data.canvasSize.height && data.direction === OutModeDirection.bottom) {
|
|
64
64
|
data.particle.position.y = data.canvasSize.height - minPos;
|
|
65
65
|
}
|
|
66
|
-
else if (data.bounds.top <= boundsMin && data.direction ===
|
|
66
|
+
else if (data.bounds.top <= boundsMin && data.direction === OutModeDirection.top) {
|
|
67
67
|
data.particle.position.y = minPos;
|
|
68
68
|
}
|
|
69
|
-
if (data.outMode ===
|
|
69
|
+
if (data.outMode === OutMode.split) {
|
|
70
70
|
data.particle.destroy();
|
|
71
71
|
}
|
|
72
72
|
}
|
package/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { OutOfCanvasUpdater } from "./OutOfCanvasUpdater.js";
|
|
1
2
|
export async function loadOutModesUpdater(engine, refresh = true) {
|
|
2
|
-
await engine.addParticleUpdater("outModes",
|
|
3
|
-
|
|
4
|
-
return new OutOfCanvasUpdater(container);
|
|
3
|
+
await engine.addParticleUpdater("outModes", container => {
|
|
4
|
+
return Promise.resolve(new OutOfCanvasUpdater(container));
|
|
5
5
|
}, refresh);
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/updater-out-modes",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "tsParticles particles out modes updater",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"./package.json": "./package.json"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@tsparticles/engine": "^3.
|
|
90
|
+
"@tsparticles/engine": "^3.4.0"
|
|
91
91
|
},
|
|
92
92
|
"publishConfig": {
|
|
93
93
|
"access": "public"
|
package/report.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>@tsparticles/updater-out-modes [
|
|
6
|
+
<title>@tsparticles/updater-out-modes [13 May 2024 at 00:14]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Demo / Generator : https://particles.js.org/
|
|
5
5
|
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
6
|
* How to use? : Check the GitHub README
|
|
7
|
-
* v3.
|
|
7
|
+
* v3.4.0
|
|
8
8
|
*/
|
|
9
9
|
/*
|
|
10
10
|
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
@@ -28,13 +28,73 @@ return /******/ (() => { // webpackBootstrap
|
|
|
28
28
|
/******/ "use strict";
|
|
29
29
|
/******/ var __webpack_modules__ = ({
|
|
30
30
|
|
|
31
|
+
/***/ "./dist/browser/BounceOutMode.js":
|
|
32
|
+
/*!***************************************!*\
|
|
33
|
+
!*** ./dist/browser/BounceOutMode.js ***!
|
|
34
|
+
\***************************************/
|
|
35
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
36
|
+
|
|
37
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ BounceOutMode: () => (/* binding */ BounceOutMode)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Utils.js */ \"./dist/browser/Utils.js\");\n\n\nclass BounceOutMode {\n constructor(container) {\n this.container = container;\n this.modes = [_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.bounce, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.split];\n }\n update(particle, direction, delta, outMode) {\n if (!this.modes.includes(outMode)) {\n return;\n }\n const container = this.container;\n let handled = false;\n for (const [, plugin] of container.plugins) {\n if (plugin.particleBounce !== undefined) {\n handled = plugin.particleBounce(particle, delta, direction);\n }\n if (handled) {\n break;\n }\n }\n if (handled) {\n return;\n }\n const pos = particle.getPosition(),\n offset = particle.offset,\n size = particle.getRadius(),\n bounds = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.calculateBounds)(pos, size),\n canvasSize = container.canvas.size;\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.bounceHorizontal)({\n particle,\n outMode,\n direction,\n bounds,\n canvasSize,\n offset,\n size\n });\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.bounceVertical)({\n particle,\n outMode,\n direction,\n bounds,\n canvasSize,\n offset,\n size\n });\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-out-modes/./dist/browser/BounceOutMode.js?");
|
|
38
|
+
|
|
39
|
+
/***/ }),
|
|
40
|
+
|
|
41
|
+
/***/ "./dist/browser/DestroyOutMode.js":
|
|
42
|
+
/*!****************************************!*\
|
|
43
|
+
!*** ./dist/browser/DestroyOutMode.js ***!
|
|
44
|
+
\****************************************/
|
|
45
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
46
|
+
|
|
47
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ DestroyOutMode: () => (/* binding */ DestroyOutMode)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst minVelocity = 0;\nclass DestroyOutMode {\n constructor(container) {\n this.container = container;\n this.modes = [_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.destroy];\n }\n update(particle, direction, _delta, outMode) {\n if (!this.modes.includes(outMode)) {\n return;\n }\n const container = this.container;\n switch (particle.outType) {\n case _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ParticleOutType.normal:\n case _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ParticleOutType.outside:\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isPointInside)(particle.position, container.canvas.size, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin, particle.getRadius(), direction)) {\n return;\n }\n break;\n case _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ParticleOutType.inside:\n {\n const {\n dx,\n dy\n } = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistances)(particle.position, particle.moveCenter),\n {\n x: vx,\n y: vy\n } = particle.velocity;\n if (vx < minVelocity && dx > particle.moveCenter.radius || vy < minVelocity && dy > particle.moveCenter.radius || vx >= minVelocity && dx < -particle.moveCenter.radius || vy >= minVelocity && dy < -particle.moveCenter.radius) {\n return;\n }\n break;\n }\n }\n container.particles.remove(particle, undefined, true);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-out-modes/./dist/browser/DestroyOutMode.js?");
|
|
48
|
+
|
|
49
|
+
/***/ }),
|
|
50
|
+
|
|
51
|
+
/***/ "./dist/browser/NoneOutMode.js":
|
|
52
|
+
/*!*************************************!*\
|
|
53
|
+
!*** ./dist/browser/NoneOutMode.js ***!
|
|
54
|
+
\*************************************/
|
|
55
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
56
|
+
|
|
57
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ NoneOutMode: () => (/* binding */ NoneOutMode)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst minVelocity = 0;\nclass NoneOutMode {\n constructor(container) {\n this.container = container;\n this.modes = [_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.none];\n }\n update(particle, direction, delta, outMode) {\n if (!this.modes.includes(outMode)) {\n return;\n }\n if ((particle.options.move.distance.horizontal && (direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.left || direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.right)) ?? (particle.options.move.distance.vertical && (direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.top || direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.bottom))) {\n return;\n }\n const gravityOptions = particle.options.move.gravity,\n container = this.container,\n canvasSize = container.canvas.size,\n pRadius = particle.getRadius();\n if (!gravityOptions.enable) {\n if (particle.velocity.y > minVelocity && particle.position.y <= canvasSize.height + pRadius || particle.velocity.y < minVelocity && particle.position.y >= -pRadius || particle.velocity.x > minVelocity && particle.position.x <= canvasSize.width + pRadius || particle.velocity.x < minVelocity && particle.position.x >= -pRadius) {\n return;\n }\n if (!(0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isPointInside)(particle.position, container.canvas.size, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin, pRadius, direction)) {\n container.particles.remove(particle);\n }\n } else {\n const position = particle.position;\n if (!gravityOptions.inverse && position.y > canvasSize.height + pRadius && direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.bottom || gravityOptions.inverse && position.y < -pRadius && direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.top) {\n container.particles.remove(particle);\n }\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-out-modes/./dist/browser/NoneOutMode.js?");
|
|
58
|
+
|
|
59
|
+
/***/ }),
|
|
60
|
+
|
|
61
|
+
/***/ "./dist/browser/OutOfCanvasUpdater.js":
|
|
62
|
+
/*!********************************************!*\
|
|
63
|
+
!*** ./dist/browser/OutOfCanvasUpdater.js ***!
|
|
64
|
+
\********************************************/
|
|
65
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
66
|
+
|
|
67
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ OutOfCanvasUpdater: () => (/* binding */ OutOfCanvasUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _BounceOutMode_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BounceOutMode.js */ \"./dist/browser/BounceOutMode.js\");\n/* harmony import */ var _DestroyOutMode_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./DestroyOutMode.js */ \"./dist/browser/DestroyOutMode.js\");\n/* harmony import */ var _NoneOutMode_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./NoneOutMode.js */ \"./dist/browser/NoneOutMode.js\");\n/* harmony import */ var _OutOutMode_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./OutOutMode.js */ \"./dist/browser/OutOutMode.js\");\n\n\n\n\n\nconst checkOutMode = (outModes, outMode) => {\n return outModes.default === outMode || outModes.bottom === outMode || outModes.left === outMode || outModes.right === outMode || outModes.top === outMode;\n};\nclass OutOfCanvasUpdater {\n constructor(container) {\n this._updateOutMode = (particle, delta, outMode, direction) => {\n for (const updater of this.updaters) {\n updater.update(particle, direction, delta, outMode);\n }\n };\n this.container = container;\n this.updaters = [];\n }\n init(particle) {\n this.updaters = [];\n const outModes = particle.options.move.outModes;\n if (checkOutMode(outModes, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.bounce)) {\n this.updaters.push(new _BounceOutMode_js__WEBPACK_IMPORTED_MODULE_1__.BounceOutMode(this.container));\n } else if (checkOutMode(outModes, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.out)) {\n this.updaters.push(new _OutOutMode_js__WEBPACK_IMPORTED_MODULE_2__.OutOutMode(this.container));\n } else if (checkOutMode(outModes, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.destroy)) {\n this.updaters.push(new _DestroyOutMode_js__WEBPACK_IMPORTED_MODULE_3__.DestroyOutMode(this.container));\n } else if (checkOutMode(outModes, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.none)) {\n this.updaters.push(new _NoneOutMode_js__WEBPACK_IMPORTED_MODULE_4__.NoneOutMode(this.container));\n }\n }\n isEnabled(particle) {\n return !particle.destroyed && !particle.spawning;\n }\n update(particle, delta) {\n const outModes = particle.options.move.outModes;\n this._updateOutMode(particle, delta, outModes.bottom ?? outModes.default, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.bottom);\n this._updateOutMode(particle, delta, outModes.left ?? outModes.default, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.left);\n this._updateOutMode(particle, delta, outModes.right ?? outModes.default, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.right);\n this._updateOutMode(particle, delta, outModes.top ?? outModes.default, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.top);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-out-modes/./dist/browser/OutOfCanvasUpdater.js?");
|
|
68
|
+
|
|
69
|
+
/***/ }),
|
|
70
|
+
|
|
71
|
+
/***/ "./dist/browser/OutOutMode.js":
|
|
72
|
+
/*!************************************!*\
|
|
73
|
+
!*** ./dist/browser/OutOutMode.js ***!
|
|
74
|
+
\************************************/
|
|
75
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
76
|
+
|
|
77
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ OutOutMode: () => (/* binding */ OutOutMode)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst minVelocity = 0,\n minDistance = 0;\nclass OutOutMode {\n constructor(container) {\n this.container = container;\n this.modes = [_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.out];\n }\n update(particle, direction, delta, outMode) {\n if (!this.modes.includes(outMode)) {\n return;\n }\n const container = this.container;\n switch (particle.outType) {\n case _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ParticleOutType.inside:\n {\n const {\n x: vx,\n y: vy\n } = particle.velocity;\n const circVec = _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin;\n circVec.length = particle.moveCenter.radius;\n circVec.angle = particle.velocity.angle + Math.PI;\n circVec.addTo(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.create(particle.moveCenter));\n const {\n dx,\n dy\n } = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistances)(particle.position, circVec);\n if (vx <= minVelocity && dx >= minDistance || vy <= minVelocity && dy >= minDistance || vx >= minVelocity && dx <= minDistance || vy >= minVelocity && dy <= minDistance) {\n return;\n }\n particle.position.x = Math.floor((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: 0,\n max: container.canvas.size.width\n }));\n particle.position.y = Math.floor((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: 0,\n max: container.canvas.size.height\n }));\n const {\n dx: newDx,\n dy: newDy\n } = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistances)(particle.position, particle.moveCenter);\n particle.direction = Math.atan2(-newDy, -newDx);\n particle.velocity.angle = particle.direction;\n break;\n }\n default:\n {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isPointInside)(particle.position, container.canvas.size, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin, particle.getRadius(), direction)) {\n return;\n }\n switch (particle.outType) {\n case _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ParticleOutType.outside:\n {\n particle.position.x = Math.floor((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: -particle.moveCenter.radius,\n max: particle.moveCenter.radius\n })) + particle.moveCenter.x;\n particle.position.y = Math.floor((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: -particle.moveCenter.radius,\n max: particle.moveCenter.radius\n })) + particle.moveCenter.y;\n const {\n dx,\n dy\n } = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistances)(particle.position, particle.moveCenter);\n if (particle.moveCenter.radius) {\n particle.direction = Math.atan2(dy, dx);\n particle.velocity.angle = particle.direction;\n }\n break;\n }\n case _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ParticleOutType.normal:\n {\n const warp = particle.options.move.warp,\n canvasSize = container.canvas.size,\n newPos = {\n bottom: canvasSize.height + particle.getRadius() + particle.offset.y,\n left: -particle.getRadius() - particle.offset.x,\n right: canvasSize.width + particle.getRadius() + particle.offset.x,\n top: -particle.getRadius() - particle.offset.y\n },\n sizeValue = particle.getRadius(),\n nextBounds = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.calculateBounds)(particle.position, sizeValue);\n if (direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.right && nextBounds.left > canvasSize.width + particle.offset.x) {\n particle.position.x = newPos.left;\n particle.initialPosition.x = particle.position.x;\n if (!warp) {\n particle.position.y = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * canvasSize.height;\n particle.initialPosition.y = particle.position.y;\n }\n } else if (direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.left && nextBounds.right < -particle.offset.x) {\n particle.position.x = newPos.right;\n particle.initialPosition.x = particle.position.x;\n if (!warp) {\n particle.position.y = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * canvasSize.height;\n particle.initialPosition.y = particle.position.y;\n }\n }\n if (direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.bottom && nextBounds.top > canvasSize.height + particle.offset.y) {\n if (!warp) {\n particle.position.x = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * canvasSize.width;\n particle.initialPosition.x = particle.position.x;\n }\n particle.position.y = newPos.top;\n particle.initialPosition.y = particle.position.y;\n } else if (direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.top && nextBounds.bottom < -particle.offset.y) {\n if (!warp) {\n particle.position.x = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * canvasSize.width;\n particle.initialPosition.x = particle.position.x;\n }\n particle.position.y = newPos.bottom;\n particle.initialPosition.y = particle.position.y;\n }\n break;\n }\n }\n break;\n }\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-out-modes/./dist/browser/OutOutMode.js?");
|
|
78
|
+
|
|
79
|
+
/***/ }),
|
|
80
|
+
|
|
81
|
+
/***/ "./dist/browser/Utils.js":
|
|
82
|
+
/*!*******************************!*\
|
|
83
|
+
!*** ./dist/browser/Utils.js ***!
|
|
84
|
+
\*******************************/
|
|
85
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
86
|
+
|
|
87
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ bounceHorizontal: () => (/* binding */ bounceHorizontal),\n/* harmony export */ bounceVertical: () => (/* binding */ bounceVertical)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst minVelocity = 0,\n boundsMin = 0;\nfunction bounceHorizontal(data) {\n if (data.outMode !== _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.bounce && data.outMode !== _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.split || data.direction !== _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.left && data.direction !== _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.right) {\n return;\n }\n if (data.bounds.right < boundsMin && data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.left) {\n data.particle.position.x = data.size + data.offset.x;\n } else if (data.bounds.left > data.canvasSize.width && data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.right) {\n data.particle.position.x = data.canvasSize.width - data.size - data.offset.x;\n }\n const velocity = data.particle.velocity.x;\n let bounced = false;\n if (data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.right && data.bounds.right >= data.canvasSize.width && velocity > minVelocity || data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.left && data.bounds.left <= boundsMin && velocity < minVelocity) {\n const newVelocity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(data.particle.options.bounce.horizontal.value);\n data.particle.velocity.x *= -newVelocity;\n bounced = true;\n }\n if (!bounced) {\n return;\n }\n const minPos = data.offset.x + data.size;\n if (data.bounds.right >= data.canvasSize.width && data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.right) {\n data.particle.position.x = data.canvasSize.width - minPos;\n } else if (data.bounds.left <= boundsMin && data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.left) {\n data.particle.position.x = minPos;\n }\n if (data.outMode === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.split) {\n data.particle.destroy();\n }\n}\nfunction bounceVertical(data) {\n if (data.outMode !== _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.bounce && data.outMode !== _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.split || data.direction !== _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.bottom && data.direction !== _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.top) {\n return;\n }\n if (data.bounds.bottom < boundsMin && data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.top) {\n data.particle.position.y = data.size + data.offset.y;\n } else if (data.bounds.top > data.canvasSize.height && data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.bottom) {\n data.particle.position.y = data.canvasSize.height - data.size - data.offset.y;\n }\n const velocity = data.particle.velocity.y;\n let bounced = false;\n if (data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.bottom && data.bounds.bottom >= data.canvasSize.height && velocity > minVelocity || data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.top && data.bounds.top <= boundsMin && velocity < minVelocity) {\n const newVelocity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(data.particle.options.bounce.vertical.value);\n data.particle.velocity.y *= -newVelocity;\n bounced = true;\n }\n if (!bounced) {\n return;\n }\n const minPos = data.offset.y + data.size;\n if (data.bounds.bottom >= data.canvasSize.height && data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.bottom) {\n data.particle.position.y = data.canvasSize.height - minPos;\n } else if (data.bounds.top <= boundsMin && data.direction === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutModeDirection.top) {\n data.particle.position.y = minPos;\n }\n if (data.outMode === _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OutMode.split) {\n data.particle.destroy();\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-out-modes/./dist/browser/Utils.js?");
|
|
88
|
+
|
|
89
|
+
/***/ }),
|
|
90
|
+
|
|
31
91
|
/***/ "./dist/browser/index.js":
|
|
32
92
|
/*!*******************************!*\
|
|
33
93
|
!*** ./dist/browser/index.js ***!
|
|
34
94
|
\*******************************/
|
|
35
95
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
36
96
|
|
|
37
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadOutModesUpdater: () => (/* binding */ loadOutModesUpdater)\n/* harmony export */ });\nasync function loadOutModesUpdater(engine, refresh = true) {\n await engine.addParticleUpdater(\"outModes\",
|
|
97
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadOutModesUpdater: () => (/* binding */ loadOutModesUpdater)\n/* harmony export */ });\n/* harmony import */ var _OutOfCanvasUpdater_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./OutOfCanvasUpdater.js */ \"./dist/browser/OutOfCanvasUpdater.js\");\n\nasync function loadOutModesUpdater(engine, refresh = true) {\n await engine.addParticleUpdater(\"outModes\", container => {\n return Promise.resolve(new _OutOfCanvasUpdater_js__WEBPACK_IMPORTED_MODULE_0__.OutOfCanvasUpdater(container));\n }, refresh);\n}\n\n//# sourceURL=webpack://@tsparticles/updater-out-modes/./dist/browser/index.js?");
|
|
38
98
|
|
|
39
99
|
/***/ }),
|
|
40
100
|
|
|
@@ -74,9 +134,6 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
|
|
|
74
134
|
/******/ return module.exports;
|
|
75
135
|
/******/ }
|
|
76
136
|
/******/
|
|
77
|
-
/******/ // expose the modules object (__webpack_modules__)
|
|
78
|
-
/******/ __webpack_require__.m = __webpack_modules__;
|
|
79
|
-
/******/
|
|
80
137
|
/************************************************************************/
|
|
81
138
|
/******/ /* webpack/runtime/compat get default export */
|
|
82
139
|
/******/ (() => {
|
|
@@ -102,91 +159,11 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
|
|
|
102
159
|
/******/ };
|
|
103
160
|
/******/ })();
|
|
104
161
|
/******/
|
|
105
|
-
/******/ /* webpack/runtime/ensure chunk */
|
|
106
|
-
/******/ (() => {
|
|
107
|
-
/******/ __webpack_require__.f = {};
|
|
108
|
-
/******/ // This file contains only the entry chunk.
|
|
109
|
-
/******/ // The chunk loading function for additional chunks
|
|
110
|
-
/******/ __webpack_require__.e = (chunkId) => {
|
|
111
|
-
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
|
|
112
|
-
/******/ __webpack_require__.f[key](chunkId, promises);
|
|
113
|
-
/******/ return promises;
|
|
114
|
-
/******/ }, []));
|
|
115
|
-
/******/ };
|
|
116
|
-
/******/ })();
|
|
117
|
-
/******/
|
|
118
|
-
/******/ /* webpack/runtime/get javascript chunk filename */
|
|
119
|
-
/******/ (() => {
|
|
120
|
-
/******/ // This function allow to reference async chunks
|
|
121
|
-
/******/ __webpack_require__.u = (chunkId) => {
|
|
122
|
-
/******/ // return url for filenames based on template
|
|
123
|
-
/******/ return "" + chunkId + ".js";
|
|
124
|
-
/******/ };
|
|
125
|
-
/******/ })();
|
|
126
|
-
/******/
|
|
127
|
-
/******/ /* webpack/runtime/global */
|
|
128
|
-
/******/ (() => {
|
|
129
|
-
/******/ __webpack_require__.g = (function() {
|
|
130
|
-
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
131
|
-
/******/ try {
|
|
132
|
-
/******/ return this || new Function('return this')();
|
|
133
|
-
/******/ } catch (e) {
|
|
134
|
-
/******/ if (typeof window === 'object') return window;
|
|
135
|
-
/******/ }
|
|
136
|
-
/******/ })();
|
|
137
|
-
/******/ })();
|
|
138
|
-
/******/
|
|
139
162
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
140
163
|
/******/ (() => {
|
|
141
164
|
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
142
165
|
/******/ })();
|
|
143
166
|
/******/
|
|
144
|
-
/******/ /* webpack/runtime/load script */
|
|
145
|
-
/******/ (() => {
|
|
146
|
-
/******/ var inProgress = {};
|
|
147
|
-
/******/ var dataWebpackPrefix = "@tsparticles/updater-out-modes:";
|
|
148
|
-
/******/ // loadScript function to load a script via script tag
|
|
149
|
-
/******/ __webpack_require__.l = (url, done, key, chunkId) => {
|
|
150
|
-
/******/ if(inProgress[url]) { inProgress[url].push(done); return; }
|
|
151
|
-
/******/ var script, needAttach;
|
|
152
|
-
/******/ if(key !== undefined) {
|
|
153
|
-
/******/ var scripts = document.getElementsByTagName("script");
|
|
154
|
-
/******/ for(var i = 0; i < scripts.length; i++) {
|
|
155
|
-
/******/ var s = scripts[i];
|
|
156
|
-
/******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; }
|
|
157
|
-
/******/ }
|
|
158
|
-
/******/ }
|
|
159
|
-
/******/ if(!script) {
|
|
160
|
-
/******/ needAttach = true;
|
|
161
|
-
/******/ script = document.createElement('script');
|
|
162
|
-
/******/
|
|
163
|
-
/******/ script.charset = 'utf-8';
|
|
164
|
-
/******/ script.timeout = 120;
|
|
165
|
-
/******/ if (__webpack_require__.nc) {
|
|
166
|
-
/******/ script.setAttribute("nonce", __webpack_require__.nc);
|
|
167
|
-
/******/ }
|
|
168
|
-
/******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
|
|
169
|
-
/******/
|
|
170
|
-
/******/ script.src = url;
|
|
171
|
-
/******/ }
|
|
172
|
-
/******/ inProgress[url] = [done];
|
|
173
|
-
/******/ var onScriptComplete = (prev, event) => {
|
|
174
|
-
/******/ // avoid mem leaks in IE.
|
|
175
|
-
/******/ script.onerror = script.onload = null;
|
|
176
|
-
/******/ clearTimeout(timeout);
|
|
177
|
-
/******/ var doneFns = inProgress[url];
|
|
178
|
-
/******/ delete inProgress[url];
|
|
179
|
-
/******/ script.parentNode && script.parentNode.removeChild(script);
|
|
180
|
-
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
|
|
181
|
-
/******/ if(prev) return prev(event);
|
|
182
|
-
/******/ }
|
|
183
|
-
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
|
184
|
-
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
|
185
|
-
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|
|
186
|
-
/******/ needAttach && document.head.appendChild(script);
|
|
187
|
-
/******/ };
|
|
188
|
-
/******/ })();
|
|
189
|
-
/******/
|
|
190
167
|
/******/ /* webpack/runtime/make namespace object */
|
|
191
168
|
/******/ (() => {
|
|
192
169
|
/******/ // define __esModule on exports
|
|
@@ -198,121 +175,6 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
|
|
|
198
175
|
/******/ };
|
|
199
176
|
/******/ })();
|
|
200
177
|
/******/
|
|
201
|
-
/******/ /* webpack/runtime/publicPath */
|
|
202
|
-
/******/ (() => {
|
|
203
|
-
/******/ var scriptUrl;
|
|
204
|
-
/******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
|
|
205
|
-
/******/ var document = __webpack_require__.g.document;
|
|
206
|
-
/******/ if (!scriptUrl && document) {
|
|
207
|
-
/******/ if (document.currentScript)
|
|
208
|
-
/******/ scriptUrl = document.currentScript.src;
|
|
209
|
-
/******/ if (!scriptUrl) {
|
|
210
|
-
/******/ var scripts = document.getElementsByTagName("script");
|
|
211
|
-
/******/ if(scripts.length) {
|
|
212
|
-
/******/ var i = scripts.length - 1;
|
|
213
|
-
/******/ while (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;
|
|
214
|
-
/******/ }
|
|
215
|
-
/******/ }
|
|
216
|
-
/******/ }
|
|
217
|
-
/******/ // When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration
|
|
218
|
-
/******/ // or pass an empty string ("") and set the __webpack_public_path__ variable from your code to use your own logic.
|
|
219
|
-
/******/ if (!scriptUrl) throw new Error("Automatic publicPath is not supported in this browser");
|
|
220
|
-
/******/ scriptUrl = scriptUrl.replace(/#.*$/, "").replace(/\?.*$/, "").replace(/\/[^\/]+$/, "/");
|
|
221
|
-
/******/ __webpack_require__.p = scriptUrl;
|
|
222
|
-
/******/ })();
|
|
223
|
-
/******/
|
|
224
|
-
/******/ /* webpack/runtime/jsonp chunk loading */
|
|
225
|
-
/******/ (() => {
|
|
226
|
-
/******/ // no baseURI
|
|
227
|
-
/******/
|
|
228
|
-
/******/ // object to store loaded and loading chunks
|
|
229
|
-
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
|
230
|
-
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
|
|
231
|
-
/******/ var installedChunks = {
|
|
232
|
-
/******/ "tsparticles.updater.out-modes": 0
|
|
233
|
-
/******/ };
|
|
234
|
-
/******/
|
|
235
|
-
/******/ __webpack_require__.f.j = (chunkId, promises) => {
|
|
236
|
-
/******/ // JSONP chunk loading for javascript
|
|
237
|
-
/******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
|
|
238
|
-
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
|
|
239
|
-
/******/
|
|
240
|
-
/******/ // a Promise means "currently loading".
|
|
241
|
-
/******/ if(installedChunkData) {
|
|
242
|
-
/******/ promises.push(installedChunkData[2]);
|
|
243
|
-
/******/ } else {
|
|
244
|
-
/******/ if(true) { // all chunks have JS
|
|
245
|
-
/******/ // setup Promise in chunk cache
|
|
246
|
-
/******/ var promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));
|
|
247
|
-
/******/ promises.push(installedChunkData[2] = promise);
|
|
248
|
-
/******/
|
|
249
|
-
/******/ // start chunk loading
|
|
250
|
-
/******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
|
|
251
|
-
/******/ // create error before stack unwound to get useful stacktrace later
|
|
252
|
-
/******/ var error = new Error();
|
|
253
|
-
/******/ var loadingEnded = (event) => {
|
|
254
|
-
/******/ if(__webpack_require__.o(installedChunks, chunkId)) {
|
|
255
|
-
/******/ installedChunkData = installedChunks[chunkId];
|
|
256
|
-
/******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
|
|
257
|
-
/******/ if(installedChunkData) {
|
|
258
|
-
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
|
259
|
-
/******/ var realSrc = event && event.target && event.target.src;
|
|
260
|
-
/******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
|
|
261
|
-
/******/ error.name = 'ChunkLoadError';
|
|
262
|
-
/******/ error.type = errorType;
|
|
263
|
-
/******/ error.request = realSrc;
|
|
264
|
-
/******/ installedChunkData[1](error);
|
|
265
|
-
/******/ }
|
|
266
|
-
/******/ }
|
|
267
|
-
/******/ };
|
|
268
|
-
/******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
|
|
269
|
-
/******/ }
|
|
270
|
-
/******/ }
|
|
271
|
-
/******/ }
|
|
272
|
-
/******/ };
|
|
273
|
-
/******/
|
|
274
|
-
/******/ // no prefetching
|
|
275
|
-
/******/
|
|
276
|
-
/******/ // no preloaded
|
|
277
|
-
/******/
|
|
278
|
-
/******/ // no HMR
|
|
279
|
-
/******/
|
|
280
|
-
/******/ // no HMR manifest
|
|
281
|
-
/******/
|
|
282
|
-
/******/ // no on chunks loaded
|
|
283
|
-
/******/
|
|
284
|
-
/******/ // install a JSONP callback for chunk loading
|
|
285
|
-
/******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
|
|
286
|
-
/******/ var chunkIds = data[0];
|
|
287
|
-
/******/ var moreModules = data[1];
|
|
288
|
-
/******/ var runtime = data[2];
|
|
289
|
-
/******/ // add "moreModules" to the modules object,
|
|
290
|
-
/******/ // then flag all "chunkIds" as loaded and fire callback
|
|
291
|
-
/******/ var moduleId, chunkId, i = 0;
|
|
292
|
-
/******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
|
|
293
|
-
/******/ for(moduleId in moreModules) {
|
|
294
|
-
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
|
295
|
-
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
|
296
|
-
/******/ }
|
|
297
|
-
/******/ }
|
|
298
|
-
/******/ if(runtime) var result = runtime(__webpack_require__);
|
|
299
|
-
/******/ }
|
|
300
|
-
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
|
|
301
|
-
/******/ for(;i < chunkIds.length; i++) {
|
|
302
|
-
/******/ chunkId = chunkIds[i];
|
|
303
|
-
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
|
|
304
|
-
/******/ installedChunks[chunkId][0]();
|
|
305
|
-
/******/ }
|
|
306
|
-
/******/ installedChunks[chunkId] = 0;
|
|
307
|
-
/******/ }
|
|
308
|
-
/******/
|
|
309
|
-
/******/ }
|
|
310
|
-
/******/
|
|
311
|
-
/******/ var chunkLoadingGlobal = this["webpackChunk_tsparticles_updater_out_modes"] = this["webpackChunk_tsparticles_updater_out_modes"] || [];
|
|
312
|
-
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
|
|
313
|
-
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
|
|
314
|
-
/******/ })();
|
|
315
|
-
/******/
|
|
316
178
|
/************************************************************************/
|
|
317
179
|
/******/
|
|
318
180
|
/******/ // startup
|