@tsparticles/confetti 3.0.0-beta.3 → 3.0.0-beta.5
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/README.md +14 -9
- package/browser/ConfettiOptions.js +4 -0
- package/browser/confetti.js +16 -12
- package/cjs/ConfettiOptions.js +4 -0
- package/cjs/confetti.js +16 -12
- package/esm/ConfettiOptions.js +4 -0
- package/esm/confetti.js +16 -12
- package/package.json +17 -17
- package/report.html +4 -22
- package/tsparticles.confetti.bundle.js +672 -526
- package/tsparticles.confetti.bundle.min.js +1 -1
- package/tsparticles.confetti.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.confetti.js +30 -231
- package/tsparticles.confetti.min.js +1 -1
- package/tsparticles.confetti.min.js.LICENSE.txt +1 -1
- package/types/ConfettiOptions.d.ts +1 -0
- package/types/IConfettiOptions.d.ts +1 -0
- package/umd/ConfettiOptions.js +4 -0
- package/umd/confetti.js +16 -12
|
@@ -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.0.0-beta.
|
|
7
|
+
* v3.0.0-beta.5
|
|
8
8
|
*/
|
|
9
9
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
10
10
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
@@ -97,6 +97,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
97
97
|
ParticlesDensity: () => (/* reexport */ ParticlesDensity),
|
|
98
98
|
ParticlesInteractorBase: () => (/* reexport */ ParticlesInteractorBase),
|
|
99
99
|
ParticlesNumber: () => (/* reexport */ ParticlesNumber),
|
|
100
|
+
ParticlesNumberLimit: () => (/* reexport */ ParticlesNumberLimit),
|
|
100
101
|
ParticlesOptions: () => (/* reexport */ ParticlesOptions),
|
|
101
102
|
Point: () => (/* reexport */ Point),
|
|
102
103
|
Range: () => (/* reexport */ Range),
|
|
@@ -141,13 +142,13 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
141
142
|
deepExtend: () => (/* reexport */ deepExtend),
|
|
142
143
|
divMode: () => (/* reexport */ divMode),
|
|
143
144
|
divModeExecute: () => (/* reexport */ divModeExecute),
|
|
145
|
+
drawEffect: () => (/* reexport */ drawEffect),
|
|
144
146
|
drawLine: () => (/* reexport */ drawLine),
|
|
145
147
|
drawParticle: () => (/* reexport */ drawParticle),
|
|
146
148
|
drawParticlePlugin: () => (/* reexport */ drawParticlePlugin),
|
|
147
149
|
drawPlugin: () => (/* reexport */ drawPlugin),
|
|
148
150
|
drawShape: () => (/* reexport */ drawShape),
|
|
149
|
-
|
|
150
|
-
drawTriangle: () => (/* reexport */ drawTriangle),
|
|
151
|
+
drawShapeAfterDraw: () => (/* reexport */ drawShapeAfterDraw),
|
|
151
152
|
errorPrefix: () => (/* reexport */ errorPrefix),
|
|
152
153
|
executeOnSingleOrMultiple: () => (/* reexport */ executeOnSingleOrMultiple),
|
|
153
154
|
findItemFromSingleOrMultiple: () => (/* reexport */ findItemFromSingleOrMultiple),
|
|
@@ -171,7 +172,6 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
171
172
|
getSize: () => (/* reexport */ getSize),
|
|
172
173
|
getStyleFromHsl: () => (/* reexport */ getStyleFromHsl),
|
|
173
174
|
getStyleFromRgb: () => (/* reexport */ getStyleFromRgb),
|
|
174
|
-
getValue: () => (/* reexport */ getValue),
|
|
175
175
|
hasMatchMedia: () => (/* reexport */ hasMatchMedia),
|
|
176
176
|
hslToRgb: () => (/* reexport */ hslToRgb),
|
|
177
177
|
hslaToRgba: () => (/* reexport */ hslaToRgba),
|
|
@@ -410,17 +410,6 @@ function setRangeValue(source, value) {
|
|
|
410
410
|
max: Math.max(max, value)
|
|
411
411
|
} : setRangeValue(min, max);
|
|
412
412
|
}
|
|
413
|
-
function getValue(options) {
|
|
414
|
-
const random = options.random,
|
|
415
|
-
{
|
|
416
|
-
enable,
|
|
417
|
-
minimumValue
|
|
418
|
-
} = isBoolean(random) ? {
|
|
419
|
-
enable: random,
|
|
420
|
-
minimumValue: 0
|
|
421
|
-
} : random;
|
|
422
|
-
return enable ? getRangeValue(setRangeValue(options.value, minimumValue)) : getRangeValue(options.value);
|
|
423
|
-
}
|
|
424
413
|
function getDistances(pointA, pointB) {
|
|
425
414
|
const dx = pointA.x - pointB.x,
|
|
426
415
|
dy = pointA.y - pointB.y;
|
|
@@ -439,21 +428,21 @@ function getParticleDirectionAngle(direction, position, center) {
|
|
|
439
428
|
}
|
|
440
429
|
switch (direction) {
|
|
441
430
|
case "top":
|
|
442
|
-
return -Math.PI
|
|
431
|
+
return -Math.PI * 0.5;
|
|
443
432
|
case "top-right":
|
|
444
|
-
return -Math.PI
|
|
433
|
+
return -Math.PI * 0.25;
|
|
445
434
|
case "right":
|
|
446
435
|
return 0;
|
|
447
436
|
case "bottom-right":
|
|
448
|
-
return Math.PI
|
|
437
|
+
return Math.PI * 0.25;
|
|
449
438
|
case "bottom":
|
|
450
|
-
return Math.PI
|
|
439
|
+
return Math.PI * 0.5;
|
|
451
440
|
case "bottom-left":
|
|
452
|
-
return
|
|
441
|
+
return Math.PI * 0.75;
|
|
453
442
|
case "left":
|
|
454
443
|
return Math.PI;
|
|
455
444
|
case "top-left":
|
|
456
|
-
return -
|
|
445
|
+
return -Math.PI * 0.75;
|
|
457
446
|
case "inside":
|
|
458
447
|
return Math.atan2(center.y - position.y, center.x - position.x);
|
|
459
448
|
case "outside":
|
|
@@ -549,7 +538,7 @@ function rectSideBounce(data) {
|
|
|
549
538
|
if (pOtherSide.min < rectOtherSide.min || pOtherSide.min > rectOtherSide.max || pOtherSide.max < rectOtherSide.min || pOtherSide.max > rectOtherSide.max) {
|
|
550
539
|
return res;
|
|
551
540
|
}
|
|
552
|
-
if (pSide.max >= rectSide.min && pSide.max <= (rectSide.max + rectSide.min)
|
|
541
|
+
if (pSide.max >= rectSide.min && pSide.max <= (rectSide.max + rectSide.min) * 0.5 && velocity > 0 || pSide.min <= rectSide.max && pSide.min > (rectSide.max + rectSide.min) * 0.5 && velocity < 0) {
|
|
553
542
|
res.velocity = velocity * -factor;
|
|
554
543
|
res.bounced = true;
|
|
555
544
|
}
|
|
@@ -685,7 +674,7 @@ function circleBounceDataFromParticle(p) {
|
|
|
685
674
|
radius: p.getRadius(),
|
|
686
675
|
mass: p.getMass(),
|
|
687
676
|
velocity: p.velocity,
|
|
688
|
-
factor: Vector.create(
|
|
677
|
+
factor: Vector.create(getRangeValue(p.options.bounce.horizontal.value), getRangeValue(p.options.bounce.vertical.value))
|
|
689
678
|
};
|
|
690
679
|
}
|
|
691
680
|
function circleBounce(p1, p2) {
|
|
@@ -719,6 +708,7 @@ function rectBounce(particle, divBounds) {
|
|
|
719
708
|
const pPos = particle.getPosition(),
|
|
720
709
|
size = particle.getRadius(),
|
|
721
710
|
bounds = calculateBounds(pPos, size),
|
|
711
|
+
bounceOptions = particle.options.bounce,
|
|
722
712
|
resH = rectSideBounce({
|
|
723
713
|
pSide: {
|
|
724
714
|
min: bounds.left,
|
|
@@ -737,7 +727,7 @@ function rectBounce(particle, divBounds) {
|
|
|
737
727
|
max: divBounds.bottom
|
|
738
728
|
},
|
|
739
729
|
velocity: particle.velocity.x,
|
|
740
|
-
factor:
|
|
730
|
+
factor: getRangeValue(bounceOptions.horizontal.value)
|
|
741
731
|
});
|
|
742
732
|
if (resH.bounced) {
|
|
743
733
|
if (resH.velocity !== undefined) {
|
|
@@ -765,7 +755,7 @@ function rectBounce(particle, divBounds) {
|
|
|
765
755
|
max: divBounds.right
|
|
766
756
|
},
|
|
767
757
|
velocity: particle.velocity.y,
|
|
768
|
-
factor:
|
|
758
|
+
factor: getRangeValue(bounceOptions.vertical.value)
|
|
769
759
|
});
|
|
770
760
|
if (resV.bounced) {
|
|
771
761
|
if (resV.velocity !== undefined) {
|
|
@@ -892,24 +882,6 @@ const randomColorValue = "random",
|
|
|
892
882
|
function addColorManager(manager) {
|
|
893
883
|
colorManagers.set(manager.key, manager);
|
|
894
884
|
}
|
|
895
|
-
function hue2rgb(p, q, t) {
|
|
896
|
-
if (t < 0) {
|
|
897
|
-
t += 1;
|
|
898
|
-
}
|
|
899
|
-
if (t > 1) {
|
|
900
|
-
t -= 1;
|
|
901
|
-
}
|
|
902
|
-
if (t < 1 / 6) {
|
|
903
|
-
return p + (q - p) * 6 * t;
|
|
904
|
-
}
|
|
905
|
-
if (t < 1 / 2) {
|
|
906
|
-
return q;
|
|
907
|
-
}
|
|
908
|
-
if (t < 2 / 3) {
|
|
909
|
-
return p + (q - p) * (2 / 3 - t) * 6;
|
|
910
|
-
}
|
|
911
|
-
return p;
|
|
912
|
-
}
|
|
913
885
|
function stringToRgba(input) {
|
|
914
886
|
for (const [, manager] of colorManagers) {
|
|
915
887
|
if (input.startsWith(manager.stringPrefix)) {
|
|
@@ -989,7 +961,7 @@ function rgbToHsl(color) {
|
|
|
989
961
|
min = Math.min(r1, g1, b1),
|
|
990
962
|
res = {
|
|
991
963
|
h: 0,
|
|
992
|
-
l: (max + min)
|
|
964
|
+
l: (max + min) * 0.5,
|
|
993
965
|
s: 0
|
|
994
966
|
};
|
|
995
967
|
if (max !== min) {
|
|
@@ -1014,29 +986,48 @@ function stringToRgb(input) {
|
|
|
1014
986
|
return stringToRgba(input);
|
|
1015
987
|
}
|
|
1016
988
|
function hslToRgb(hsl) {
|
|
1017
|
-
const
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
989
|
+
const h = (hsl.h % 360 + 360) % 360,
|
|
990
|
+
s = Math.max(0, Math.min(100, hsl.s)),
|
|
991
|
+
l = Math.max(0, Math.min(100, hsl.l)),
|
|
992
|
+
hNormalized = h / 360,
|
|
993
|
+
sNormalized = s / 100,
|
|
994
|
+
lNormalized = l / 100;
|
|
995
|
+
if (s === 0) {
|
|
996
|
+
const grayscaleValue = Math.round(lNormalized * 255);
|
|
997
|
+
return {
|
|
998
|
+
r: grayscaleValue,
|
|
999
|
+
g: grayscaleValue,
|
|
1000
|
+
b: grayscaleValue
|
|
1026
1001
|
};
|
|
1027
|
-
if (!hslPercent.s) {
|
|
1028
|
-
result.r = result.g = result.b = hslPercent.l;
|
|
1029
|
-
} else {
|
|
1030
|
-
const q = hslPercent.l < 0.5 ? hslPercent.l * (1 + hslPercent.s) : hslPercent.l + hslPercent.s - hslPercent.l * hslPercent.s,
|
|
1031
|
-
p = 2 * hslPercent.l - q;
|
|
1032
|
-
result.r = hue2rgb(p, q, hslPercent.h + 1 / 3);
|
|
1033
|
-
result.g = hue2rgb(p, q, hslPercent.h);
|
|
1034
|
-
result.b = hue2rgb(p, q, hslPercent.h - 1 / 3);
|
|
1035
1002
|
}
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1003
|
+
const channel = (temp1, temp2, temp3) => {
|
|
1004
|
+
if (temp3 < 0) {
|
|
1005
|
+
temp3 += 1;
|
|
1006
|
+
}
|
|
1007
|
+
if (temp3 > 1) {
|
|
1008
|
+
temp3 -= 1;
|
|
1009
|
+
}
|
|
1010
|
+
if (temp3 * 6 < 1) {
|
|
1011
|
+
return temp1 + (temp2 - temp1) * 6 * temp3;
|
|
1012
|
+
}
|
|
1013
|
+
if (temp3 * 2 < 1) {
|
|
1014
|
+
return temp2;
|
|
1015
|
+
}
|
|
1016
|
+
if (temp3 * 3 < 2) {
|
|
1017
|
+
return temp1 + (temp2 - temp1) * (2 / 3 - temp3) * 6;
|
|
1018
|
+
}
|
|
1019
|
+
return temp1;
|
|
1020
|
+
},
|
|
1021
|
+
temp1 = lNormalized < 0.5 ? lNormalized * (1 + sNormalized) : lNormalized + sNormalized - lNormalized * sNormalized,
|
|
1022
|
+
temp2 = 2 * lNormalized - temp1,
|
|
1023
|
+
red = Math.min(255, 255 * channel(temp2, temp1, hNormalized + 1 / 3)),
|
|
1024
|
+
green = Math.min(255, 255 * channel(temp2, temp1, hNormalized)),
|
|
1025
|
+
blue = Math.min(255, 255 * channel(temp2, temp1, hNormalized - 1 / 3));
|
|
1026
|
+
return {
|
|
1027
|
+
r: Math.round(red),
|
|
1028
|
+
g: Math.round(green),
|
|
1029
|
+
b: Math.round(blue)
|
|
1030
|
+
};
|
|
1040
1031
|
}
|
|
1041
1032
|
function hslaToRgba(hsla) {
|
|
1042
1033
|
const rgbResult = hslToRgb(hsla);
|
|
@@ -1170,13 +1161,6 @@ function drawLine(context, begin, end) {
|
|
|
1170
1161
|
context.lineTo(end.x, end.y);
|
|
1171
1162
|
context.closePath();
|
|
1172
1163
|
}
|
|
1173
|
-
function drawTriangle(context, p1, p2, p3) {
|
|
1174
|
-
context.beginPath();
|
|
1175
|
-
context.moveTo(p1.x, p1.y);
|
|
1176
|
-
context.lineTo(p2.x, p2.y);
|
|
1177
|
-
context.lineTo(p3.x, p3.y);
|
|
1178
|
-
context.closePath();
|
|
1179
|
-
}
|
|
1180
1164
|
function paintBase(context, dimension, baseColor) {
|
|
1181
1165
|
context.fillStyle = baseColor ?? "rgba(0,0,0,0)";
|
|
1182
1166
|
context.fillRect(0, 0, dimension.width, dimension.height);
|
|
@@ -1219,7 +1203,6 @@ function drawParticle(data) {
|
|
|
1219
1203
|
d: rotateData.cos * (transform.d ?? 1)
|
|
1220
1204
|
};
|
|
1221
1205
|
context.setTransform(transformData.a, transformData.b, transformData.c, transformData.d, pos.x, pos.y);
|
|
1222
|
-
context.beginPath();
|
|
1223
1206
|
if (backgroundMask) {
|
|
1224
1207
|
context.globalCompositeOperation = composite;
|
|
1225
1208
|
}
|
|
@@ -1246,20 +1229,47 @@ function drawParticle(data) {
|
|
|
1246
1229
|
opacity,
|
|
1247
1230
|
delta
|
|
1248
1231
|
};
|
|
1232
|
+
context.beginPath();
|
|
1249
1233
|
drawShape(drawData);
|
|
1234
|
+
if (particle.shapeClose) {
|
|
1235
|
+
context.closePath();
|
|
1236
|
+
}
|
|
1250
1237
|
if (strokeWidth > 0) {
|
|
1251
1238
|
context.stroke();
|
|
1252
1239
|
}
|
|
1253
|
-
if (particle.
|
|
1254
|
-
context.closePath();
|
|
1255
|
-
}
|
|
1256
|
-
if (particle.fill) {
|
|
1240
|
+
if (particle.shapeFill) {
|
|
1257
1241
|
context.fill();
|
|
1258
1242
|
}
|
|
1259
|
-
|
|
1243
|
+
drawShapeAfterDraw(drawData);
|
|
1244
|
+
drawEffect(drawData);
|
|
1260
1245
|
context.globalCompositeOperation = "source-over";
|
|
1261
1246
|
context.setTransform(1, 0, 0, 1, 0, 0);
|
|
1262
1247
|
}
|
|
1248
|
+
function drawEffect(data) {
|
|
1249
|
+
const {
|
|
1250
|
+
container,
|
|
1251
|
+
context,
|
|
1252
|
+
particle,
|
|
1253
|
+
radius,
|
|
1254
|
+
opacity,
|
|
1255
|
+
delta
|
|
1256
|
+
} = data;
|
|
1257
|
+
if (!particle.effect) {
|
|
1258
|
+
return;
|
|
1259
|
+
}
|
|
1260
|
+
const drawer = container.effectDrawers.get(particle.effect);
|
|
1261
|
+
if (!drawer) {
|
|
1262
|
+
return;
|
|
1263
|
+
}
|
|
1264
|
+
drawer.draw({
|
|
1265
|
+
context,
|
|
1266
|
+
particle,
|
|
1267
|
+
radius,
|
|
1268
|
+
opacity,
|
|
1269
|
+
delta,
|
|
1270
|
+
pixelRatio: container.retina.pixelRatio
|
|
1271
|
+
});
|
|
1272
|
+
}
|
|
1263
1273
|
function drawShape(data) {
|
|
1264
1274
|
const {
|
|
1265
1275
|
container,
|
|
@@ -1272,7 +1282,7 @@ function drawShape(data) {
|
|
|
1272
1282
|
if (!particle.shape) {
|
|
1273
1283
|
return;
|
|
1274
1284
|
}
|
|
1275
|
-
const drawer = container.
|
|
1285
|
+
const drawer = container.shapeDrawers.get(particle.shape);
|
|
1276
1286
|
if (!drawer) {
|
|
1277
1287
|
return;
|
|
1278
1288
|
}
|
|
@@ -1285,7 +1295,7 @@ function drawShape(data) {
|
|
|
1285
1295
|
pixelRatio: container.retina.pixelRatio
|
|
1286
1296
|
});
|
|
1287
1297
|
}
|
|
1288
|
-
function
|
|
1298
|
+
function drawShapeAfterDraw(data) {
|
|
1289
1299
|
const {
|
|
1290
1300
|
container,
|
|
1291
1301
|
context,
|
|
@@ -1297,11 +1307,11 @@ function drawShapeAfterEffect(data) {
|
|
|
1297
1307
|
if (!particle.shape) {
|
|
1298
1308
|
return;
|
|
1299
1309
|
}
|
|
1300
|
-
const drawer = container.
|
|
1301
|
-
if (!drawer || !drawer.
|
|
1310
|
+
const drawer = container.shapeDrawers.get(particle.shape);
|
|
1311
|
+
if (!drawer || !drawer.afterDraw) {
|
|
1302
1312
|
return;
|
|
1303
1313
|
}
|
|
1304
|
-
drawer.
|
|
1314
|
+
drawer.afterDraw({
|
|
1305
1315
|
context,
|
|
1306
1316
|
particle,
|
|
1307
1317
|
radius,
|
|
@@ -1755,10 +1765,10 @@ class Canvas {
|
|
|
1755
1765
|
this.element.width = size.width = this.element.offsetWidth * pxRatio;
|
|
1756
1766
|
this.element.height = size.height = this.element.offsetHeight * pxRatio;
|
|
1757
1767
|
if (this.container.started) {
|
|
1758
|
-
|
|
1768
|
+
container.particles.setResizeFactor({
|
|
1759
1769
|
width: size.width / oldSize.width,
|
|
1760
1770
|
height: size.height / oldSize.height
|
|
1761
|
-
};
|
|
1771
|
+
});
|
|
1762
1772
|
}
|
|
1763
1773
|
return true;
|
|
1764
1774
|
}
|
|
@@ -2228,10 +2238,10 @@ class BackgroundMask {
|
|
|
2228
2238
|
this.composite = data.composite;
|
|
2229
2239
|
}
|
|
2230
2240
|
if (data.cover !== undefined) {
|
|
2231
|
-
const cover = data.cover
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2241
|
+
const cover = data.cover,
|
|
2242
|
+
color = isString(data.cover) ? {
|
|
2243
|
+
color: data.cover
|
|
2244
|
+
} : data.cover;
|
|
2235
2245
|
this.cover.load(cover.color !== undefined ? cover : {
|
|
2236
2246
|
color: color
|
|
2237
2247
|
});
|
|
@@ -2391,11 +2401,7 @@ class Events {
|
|
|
2391
2401
|
});
|
|
2392
2402
|
}
|
|
2393
2403
|
this.onHover.load(data.onHover);
|
|
2394
|
-
|
|
2395
|
-
this.resize.enable = data.resize;
|
|
2396
|
-
} else {
|
|
2397
|
-
this.resize.load(data.resize);
|
|
2398
|
-
}
|
|
2404
|
+
this.resize.load(data.resize);
|
|
2399
2405
|
}
|
|
2400
2406
|
}
|
|
2401
2407
|
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/Interactivity/Modes/Modes.js
|
|
@@ -2533,17 +2539,16 @@ class Theme {
|
|
|
2533
2539
|
}
|
|
2534
2540
|
}
|
|
2535
2541
|
}
|
|
2536
|
-
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/
|
|
2542
|
+
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/AnimationOptions.js
|
|
2537
2543
|
|
|
2538
|
-
class
|
|
2544
|
+
class AnimationOptions {
|
|
2539
2545
|
constructor() {
|
|
2540
2546
|
this.count = 0;
|
|
2541
2547
|
this.enable = false;
|
|
2542
|
-
this.offset = 0;
|
|
2543
2548
|
this.speed = 1;
|
|
2544
|
-
this.delay = 0;
|
|
2545
2549
|
this.decay = 0;
|
|
2546
|
-
this.
|
|
2550
|
+
this.delay = 0;
|
|
2551
|
+
this.sync = false;
|
|
2547
2552
|
}
|
|
2548
2553
|
load(data) {
|
|
2549
2554
|
if (!data) {
|
|
@@ -2555,9 +2560,6 @@ class ColorAnimation {
|
|
|
2555
2560
|
if (data.enable !== undefined) {
|
|
2556
2561
|
this.enable = data.enable;
|
|
2557
2562
|
}
|
|
2558
|
-
if (data.offset !== undefined) {
|
|
2559
|
-
this.offset = setRangeValue(data.offset);
|
|
2560
|
-
}
|
|
2561
2563
|
if (data.speed !== undefined) {
|
|
2562
2564
|
this.speed = setRangeValue(data.speed);
|
|
2563
2565
|
}
|
|
@@ -2572,6 +2574,44 @@ class ColorAnimation {
|
|
|
2572
2574
|
}
|
|
2573
2575
|
}
|
|
2574
2576
|
}
|
|
2577
|
+
class RangedAnimationOptions extends AnimationOptions {
|
|
2578
|
+
constructor() {
|
|
2579
|
+
super();
|
|
2580
|
+
this.mode = "auto";
|
|
2581
|
+
this.startValue = "random";
|
|
2582
|
+
}
|
|
2583
|
+
load(data) {
|
|
2584
|
+
super.load(data);
|
|
2585
|
+
if (!data) {
|
|
2586
|
+
return;
|
|
2587
|
+
}
|
|
2588
|
+
if (data.mode !== undefined) {
|
|
2589
|
+
this.mode = data.mode;
|
|
2590
|
+
}
|
|
2591
|
+
if (data.startValue !== undefined) {
|
|
2592
|
+
this.startValue = data.startValue;
|
|
2593
|
+
}
|
|
2594
|
+
}
|
|
2595
|
+
}
|
|
2596
|
+
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/ColorAnimation.js
|
|
2597
|
+
|
|
2598
|
+
|
|
2599
|
+
class ColorAnimation extends AnimationOptions {
|
|
2600
|
+
constructor() {
|
|
2601
|
+
super();
|
|
2602
|
+
this.offset = 0;
|
|
2603
|
+
this.sync = true;
|
|
2604
|
+
}
|
|
2605
|
+
load(data) {
|
|
2606
|
+
super.load(data);
|
|
2607
|
+
if (!data) {
|
|
2608
|
+
return;
|
|
2609
|
+
}
|
|
2610
|
+
if (data.offset !== undefined) {
|
|
2611
|
+
this.offset = setRangeValue(data.offset);
|
|
2612
|
+
}
|
|
2613
|
+
}
|
|
2614
|
+
}
|
|
2575
2615
|
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/HslAnimation.js
|
|
2576
2616
|
|
|
2577
2617
|
class HslAnimation {
|
|
@@ -2659,99 +2699,19 @@ class CollisionsOverlap {
|
|
|
2659
2699
|
}
|
|
2660
2700
|
}
|
|
2661
2701
|
}
|
|
2662
|
-
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/AnimationOptions.js
|
|
2663
|
-
|
|
2664
|
-
class AnimationOptions {
|
|
2665
|
-
constructor() {
|
|
2666
|
-
this.count = 0;
|
|
2667
|
-
this.enable = false;
|
|
2668
|
-
this.speed = 1;
|
|
2669
|
-
this.decay = 0;
|
|
2670
|
-
this.delay = 0;
|
|
2671
|
-
this.sync = false;
|
|
2672
|
-
}
|
|
2673
|
-
load(data) {
|
|
2674
|
-
if (!data) {
|
|
2675
|
-
return;
|
|
2676
|
-
}
|
|
2677
|
-
if (data.count !== undefined) {
|
|
2678
|
-
this.count = setRangeValue(data.count);
|
|
2679
|
-
}
|
|
2680
|
-
if (data.enable !== undefined) {
|
|
2681
|
-
this.enable = data.enable;
|
|
2682
|
-
}
|
|
2683
|
-
if (data.speed !== undefined) {
|
|
2684
|
-
this.speed = setRangeValue(data.speed);
|
|
2685
|
-
}
|
|
2686
|
-
if (data.decay !== undefined) {
|
|
2687
|
-
this.decay = setRangeValue(data.decay);
|
|
2688
|
-
}
|
|
2689
|
-
if (data.delay !== undefined) {
|
|
2690
|
-
this.delay = setRangeValue(data.delay);
|
|
2691
|
-
}
|
|
2692
|
-
if (data.sync !== undefined) {
|
|
2693
|
-
this.sync = data.sync;
|
|
2694
|
-
}
|
|
2695
|
-
}
|
|
2696
|
-
}
|
|
2697
|
-
class RangedAnimationOptions extends AnimationOptions {
|
|
2698
|
-
constructor() {
|
|
2699
|
-
super();
|
|
2700
|
-
this.mode = "auto";
|
|
2701
|
-
this.startValue = "random";
|
|
2702
|
-
}
|
|
2703
|
-
load(data) {
|
|
2704
|
-
super.load(data);
|
|
2705
|
-
if (!data) {
|
|
2706
|
-
return;
|
|
2707
|
-
}
|
|
2708
|
-
if (data.mode !== undefined) {
|
|
2709
|
-
this.mode = data.mode;
|
|
2710
|
-
}
|
|
2711
|
-
if (data.startValue !== undefined) {
|
|
2712
|
-
this.startValue = data.startValue;
|
|
2713
|
-
}
|
|
2714
|
-
}
|
|
2715
|
-
}
|
|
2716
|
-
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/Random.js
|
|
2717
|
-
class Random {
|
|
2718
|
-
constructor() {
|
|
2719
|
-
this.enable = false;
|
|
2720
|
-
this.minimumValue = 0;
|
|
2721
|
-
}
|
|
2722
|
-
load(data) {
|
|
2723
|
-
if (!data) {
|
|
2724
|
-
return;
|
|
2725
|
-
}
|
|
2726
|
-
if (data.enable !== undefined) {
|
|
2727
|
-
this.enable = data.enable;
|
|
2728
|
-
}
|
|
2729
|
-
if (data.minimumValue !== undefined) {
|
|
2730
|
-
this.minimumValue = data.minimumValue;
|
|
2731
|
-
}
|
|
2732
|
-
}
|
|
2733
|
-
}
|
|
2734
2702
|
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/ValueWithRandom.js
|
|
2735
2703
|
|
|
2736
2704
|
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
2705
|
class ValueWithRandom {
|
|
2740
2706
|
constructor() {
|
|
2741
|
-
this.random = new Random();
|
|
2742
2707
|
this.value = 0;
|
|
2743
2708
|
}
|
|
2744
2709
|
load(data) {
|
|
2745
2710
|
if (!data) {
|
|
2746
2711
|
return;
|
|
2747
2712
|
}
|
|
2748
|
-
if (isBoolean(data.random)) {
|
|
2749
|
-
this.random.enable = data.random;
|
|
2750
|
-
} else {
|
|
2751
|
-
this.random.load(data.random);
|
|
2752
|
-
}
|
|
2753
2713
|
if (data.value !== undefined) {
|
|
2754
|
-
this.value = setRangeValue(data.value
|
|
2714
|
+
this.value = setRangeValue(data.value);
|
|
2755
2715
|
}
|
|
2756
2716
|
}
|
|
2757
2717
|
}
|
|
@@ -2785,7 +2745,6 @@ class RangedAnimationValueWithRandom extends AnimationValueWithRandom {
|
|
|
2785
2745
|
class ParticlesBounceFactor extends ValueWithRandom {
|
|
2786
2746
|
constructor() {
|
|
2787
2747
|
super();
|
|
2788
|
-
this.random.minimumValue = 0.1;
|
|
2789
2748
|
this.value = 1;
|
|
2790
2749
|
}
|
|
2791
2750
|
}
|
|
@@ -2836,6 +2795,39 @@ class Collisions {
|
|
|
2836
2795
|
this.overlap.load(data.overlap);
|
|
2837
2796
|
}
|
|
2838
2797
|
}
|
|
2798
|
+
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/Particles/Effect/Effect.js
|
|
2799
|
+
|
|
2800
|
+
class Effect {
|
|
2801
|
+
constructor() {
|
|
2802
|
+
this.close = true;
|
|
2803
|
+
this.fill = true;
|
|
2804
|
+
this.options = {};
|
|
2805
|
+
this.type = [];
|
|
2806
|
+
}
|
|
2807
|
+
load(data) {
|
|
2808
|
+
if (!data) {
|
|
2809
|
+
return;
|
|
2810
|
+
}
|
|
2811
|
+
const options = data.options;
|
|
2812
|
+
if (options !== undefined) {
|
|
2813
|
+
for (const effect in options) {
|
|
2814
|
+
const item = options[effect];
|
|
2815
|
+
if (item) {
|
|
2816
|
+
this.options[effect] = deepExtend(this.options[effect] ?? {}, item);
|
|
2817
|
+
}
|
|
2818
|
+
}
|
|
2819
|
+
}
|
|
2820
|
+
if (data.close !== undefined) {
|
|
2821
|
+
this.close = data.close;
|
|
2822
|
+
}
|
|
2823
|
+
if (data.fill !== undefined) {
|
|
2824
|
+
this.fill = data.fill;
|
|
2825
|
+
}
|
|
2826
|
+
if (data.type !== undefined) {
|
|
2827
|
+
this.type = data.type;
|
|
2828
|
+
}
|
|
2829
|
+
}
|
|
2830
|
+
}
|
|
2839
2831
|
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/Particles/Move/MoveAngle.js
|
|
2840
2832
|
|
|
2841
2833
|
class MoveAngle {
|
|
@@ -3164,11 +3156,10 @@ class OpacityAnimation extends RangedAnimationOptions {
|
|
|
3164
3156
|
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/Particles/Opacity/Opacity.js
|
|
3165
3157
|
|
|
3166
3158
|
|
|
3167
|
-
class Opacity extends
|
|
3159
|
+
class Opacity extends RangedAnimationValueWithRandom {
|
|
3168
3160
|
constructor() {
|
|
3169
3161
|
super();
|
|
3170
3162
|
this.animation = new OpacityAnimation();
|
|
3171
|
-
this.random.minimumValue = 0.1;
|
|
3172
3163
|
this.value = 1;
|
|
3173
3164
|
}
|
|
3174
3165
|
load(data) {
|
|
@@ -3206,12 +3197,31 @@ class ParticlesDensity {
|
|
|
3206
3197
|
}
|
|
3207
3198
|
}
|
|
3208
3199
|
}
|
|
3200
|
+
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js
|
|
3201
|
+
class ParticlesNumberLimit {
|
|
3202
|
+
constructor() {
|
|
3203
|
+
this.mode = "delete";
|
|
3204
|
+
this.value = 0;
|
|
3205
|
+
}
|
|
3206
|
+
load(data) {
|
|
3207
|
+
if (!data) {
|
|
3208
|
+
return;
|
|
3209
|
+
}
|
|
3210
|
+
if (data.mode !== undefined) {
|
|
3211
|
+
this.mode = data.mode;
|
|
3212
|
+
}
|
|
3213
|
+
if (data.value !== undefined) {
|
|
3214
|
+
this.value = data.value;
|
|
3215
|
+
}
|
|
3216
|
+
}
|
|
3217
|
+
}
|
|
3209
3218
|
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumber.js
|
|
3210
3219
|
|
|
3220
|
+
|
|
3211
3221
|
class ParticlesNumber {
|
|
3212
3222
|
constructor() {
|
|
3213
3223
|
this.density = new ParticlesDensity();
|
|
3214
|
-
this.limit =
|
|
3224
|
+
this.limit = new ParticlesNumberLimit();
|
|
3215
3225
|
this.value = 0;
|
|
3216
3226
|
}
|
|
3217
3227
|
load(data) {
|
|
@@ -3219,10 +3229,7 @@ class ParticlesNumber {
|
|
|
3219
3229
|
return;
|
|
3220
3230
|
}
|
|
3221
3231
|
this.density.load(data.density);
|
|
3222
|
-
|
|
3223
|
-
if (limit !== undefined) {
|
|
3224
|
-
this.limit = limit;
|
|
3225
|
-
}
|
|
3232
|
+
this.limit.load(data.limit);
|
|
3226
3233
|
if (data.value !== undefined) {
|
|
3227
3234
|
this.value = data.value;
|
|
3228
3235
|
}
|
|
@@ -3317,11 +3324,10 @@ class SizeAnimation extends RangedAnimationOptions {
|
|
|
3317
3324
|
;// CONCATENATED MODULE: ../../engine/dist/browser/Options/Classes/Particles/Size/Size.js
|
|
3318
3325
|
|
|
3319
3326
|
|
|
3320
|
-
class Size extends
|
|
3327
|
+
class Size extends RangedAnimationValueWithRandom {
|
|
3321
3328
|
constructor() {
|
|
3322
3329
|
super();
|
|
3323
3330
|
this.animation = new SizeAnimation();
|
|
3324
|
-
this.random.minimumValue = 1;
|
|
3325
3331
|
this.value = 3;
|
|
3326
3332
|
}
|
|
3327
3333
|
load(data) {
|
|
@@ -3395,6 +3401,7 @@ class ZIndex extends ValueWithRandom {
|
|
|
3395
3401
|
|
|
3396
3402
|
|
|
3397
3403
|
|
|
3404
|
+
|
|
3398
3405
|
class ParticlesOptions {
|
|
3399
3406
|
constructor(engine, container) {
|
|
3400
3407
|
this._engine = engine;
|
|
@@ -3403,6 +3410,7 @@ class ParticlesOptions {
|
|
|
3403
3410
|
this.collisions = new Collisions();
|
|
3404
3411
|
this.color = new AnimatableColor();
|
|
3405
3412
|
this.color.value = "#fff";
|
|
3413
|
+
this.effect = new Effect();
|
|
3406
3414
|
this.groups = {};
|
|
3407
3415
|
this.move = new Move();
|
|
3408
3416
|
this.number = new ParticlesNumber();
|
|
@@ -3418,22 +3426,26 @@ class ParticlesOptions {
|
|
|
3418
3426
|
if (!data) {
|
|
3419
3427
|
return;
|
|
3420
3428
|
}
|
|
3421
|
-
this.bounce.load(data.bounce);
|
|
3422
|
-
this.color.load(AnimatableColor.create(this.color, data.color));
|
|
3423
3429
|
if (data.groups !== undefined) {
|
|
3424
|
-
for (const group
|
|
3430
|
+
for (const group of Object.keys(data.groups)) {
|
|
3431
|
+
if (!Object.hasOwn(data.groups, group)) {
|
|
3432
|
+
continue;
|
|
3433
|
+
}
|
|
3425
3434
|
const item = data.groups[group];
|
|
3426
3435
|
if (item !== undefined) {
|
|
3427
3436
|
this.groups[group] = deepExtend(this.groups[group] ?? {}, item);
|
|
3428
3437
|
}
|
|
3429
3438
|
}
|
|
3430
3439
|
}
|
|
3431
|
-
this.move.load(data.move);
|
|
3432
|
-
this.number.load(data.number);
|
|
3433
|
-
this.opacity.load(data.opacity);
|
|
3434
3440
|
if (data.reduceDuplicates !== undefined) {
|
|
3435
3441
|
this.reduceDuplicates = data.reduceDuplicates;
|
|
3436
3442
|
}
|
|
3443
|
+
this.bounce.load(data.bounce);
|
|
3444
|
+
this.color.load(AnimatableColor.create(this.color, data.color));
|
|
3445
|
+
this.effect.load(data.effect);
|
|
3446
|
+
this.move.load(data.move);
|
|
3447
|
+
this.number.load(data.number);
|
|
3448
|
+
this.opacity.load(data.opacity);
|
|
3437
3449
|
this.shape.load(data.shape);
|
|
3438
3450
|
this.size.load(data.size);
|
|
3439
3451
|
this.shadow.load(data.shadow);
|
|
@@ -3692,6 +3704,16 @@ class InteractionManager {
|
|
|
3692
3704
|
|
|
3693
3705
|
|
|
3694
3706
|
|
|
3707
|
+
function loadEffectData(effect, effectOptions, id, reduceDuplicates) {
|
|
3708
|
+
const effectData = effectOptions.options[effect];
|
|
3709
|
+
if (!effectData) {
|
|
3710
|
+
return;
|
|
3711
|
+
}
|
|
3712
|
+
return deepExtend({
|
|
3713
|
+
close: effectOptions.close,
|
|
3714
|
+
fill: effectOptions.fill
|
|
3715
|
+
}, itemFromSingleOrMultiple(effectData, id, reduceDuplicates));
|
|
3716
|
+
}
|
|
3695
3717
|
function loadShapeData(shape, shapeOptions, id, reduceDuplicates) {
|
|
3696
3718
|
const shapeData = shapeOptions.options[shape];
|
|
3697
3719
|
if (!shapeData) {
|
|
@@ -3770,8 +3792,8 @@ class Particle {
|
|
|
3770
3792
|
const rad = Math.PI / 180 * getRangeValue(moveOptions.angle.value),
|
|
3771
3793
|
radOffset = Math.PI / 180 * getRangeValue(moveOptions.angle.offset),
|
|
3772
3794
|
range = {
|
|
3773
|
-
left: radOffset - rad
|
|
3774
|
-
right: radOffset + rad
|
|
3795
|
+
left: radOffset - rad * 0.5,
|
|
3796
|
+
right: radOffset + rad * 0.5
|
|
3775
3797
|
};
|
|
3776
3798
|
if (!moveOptions.straight) {
|
|
3777
3799
|
res.angle += randomInRange(setRangeValue(range.left, range.right));
|
|
@@ -3802,7 +3824,7 @@ class Particle {
|
|
|
3802
3824
|
return color;
|
|
3803
3825
|
}
|
|
3804
3826
|
const backFactor = this.roll.horizontal && this.roll.vertical ? 2 : 1,
|
|
3805
|
-
backSum = this.roll.horizontal ? Math.PI
|
|
3827
|
+
backSum = this.roll.horizontal ? Math.PI * 0.5 : 0,
|
|
3806
3828
|
rolled = Math.floor(((this.roll.angle ?? 0) + backSum) / (Math.PI / backFactor)) % 2;
|
|
3807
3829
|
if (!rolled) {
|
|
3808
3830
|
return color;
|
|
@@ -3848,20 +3870,16 @@ class Particle {
|
|
|
3848
3870
|
this.bubble.inRange = false;
|
|
3849
3871
|
this.slow.inRange = false;
|
|
3850
3872
|
const container = this.container,
|
|
3851
|
-
pathGenerator = this.pathGenerator
|
|
3873
|
+
pathGenerator = this.pathGenerator,
|
|
3874
|
+
shapeDrawer = container.shapeDrawers.get(this.shape);
|
|
3875
|
+
shapeDrawer && shapeDrawer.particleDestroy && shapeDrawer.particleDestroy(this);
|
|
3852
3876
|
for (const [, plugin] of container.plugins) {
|
|
3853
|
-
|
|
3854
|
-
plugin.particleDestroyed(this, override);
|
|
3855
|
-
}
|
|
3877
|
+
plugin.particleDestroyed && plugin.particleDestroyed(this, override);
|
|
3856
3878
|
}
|
|
3857
3879
|
for (const updater of container.particles.updaters) {
|
|
3858
|
-
|
|
3859
|
-
updater.particleDestroyed(this, override);
|
|
3860
|
-
}
|
|
3861
|
-
}
|
|
3862
|
-
if (pathGenerator) {
|
|
3863
|
-
pathGenerator.reset(this);
|
|
3880
|
+
updater.particleDestroyed && updater.particleDestroyed(this, override);
|
|
3864
3881
|
}
|
|
3882
|
+
pathGenerator && pathGenerator.reset(this);
|
|
3865
3883
|
}
|
|
3866
3884
|
draw(delta) {
|
|
3867
3885
|
const container = this.container,
|
|
@@ -3875,7 +3893,7 @@ class Particle {
|
|
|
3875
3893
|
return this._getRollColor(this.bubble.color ?? getHslFromAnimation(this.color));
|
|
3876
3894
|
}
|
|
3877
3895
|
getMass() {
|
|
3878
|
-
return this.getRadius() ** 2 * Math.PI
|
|
3896
|
+
return this.getRadius() ** 2 * Math.PI * 0.5;
|
|
3879
3897
|
}
|
|
3880
3898
|
getPosition() {
|
|
3881
3899
|
return {
|
|
@@ -3895,9 +3913,11 @@ class Particle {
|
|
|
3895
3913
|
engine = this._engine;
|
|
3896
3914
|
this.id = id;
|
|
3897
3915
|
this.group = group;
|
|
3898
|
-
this.
|
|
3916
|
+
this.effectClose = true;
|
|
3917
|
+
this.effectFill = true;
|
|
3918
|
+
this.shapeClose = true;
|
|
3919
|
+
this.shapeFill = true;
|
|
3899
3920
|
this.pathRotation = false;
|
|
3900
|
-
this.close = true;
|
|
3901
3921
|
this.lastPathTime = 0;
|
|
3902
3922
|
this.destroyed = false;
|
|
3903
3923
|
this.unbreakable = false;
|
|
@@ -3911,22 +3931,40 @@ class Particle {
|
|
|
3911
3931
|
const pxRatio = container.retina.pixelRatio,
|
|
3912
3932
|
mainOptions = container.actualOptions,
|
|
3913
3933
|
particlesOptions = loadParticlesOptions(this._engine, container, mainOptions.particles),
|
|
3934
|
+
effectType = particlesOptions.effect.type,
|
|
3914
3935
|
shapeType = particlesOptions.shape.type,
|
|
3915
3936
|
{
|
|
3916
3937
|
reduceDuplicates
|
|
3917
3938
|
} = particlesOptions;
|
|
3939
|
+
this.effect = itemFromSingleOrMultiple(effectType, this.id, reduceDuplicates);
|
|
3918
3940
|
this.shape = itemFromSingleOrMultiple(shapeType, this.id, reduceDuplicates);
|
|
3919
|
-
const
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3941
|
+
const effectOptions = particlesOptions.effect,
|
|
3942
|
+
shapeOptions = particlesOptions.shape;
|
|
3943
|
+
if (overrideOptions) {
|
|
3944
|
+
if (overrideOptions.effect && overrideOptions.effect.type) {
|
|
3945
|
+
const overrideEffectType = overrideOptions.effect.type,
|
|
3946
|
+
effect = itemFromSingleOrMultiple(overrideEffectType, this.id, reduceDuplicates);
|
|
3947
|
+
if (effect) {
|
|
3948
|
+
this.effect = effect;
|
|
3949
|
+
effectOptions.load(overrideOptions.effect);
|
|
3950
|
+
}
|
|
3951
|
+
}
|
|
3952
|
+
if (overrideOptions.shape && overrideOptions.shape.type) {
|
|
3953
|
+
const overrideShapeType = overrideOptions.shape.type,
|
|
3954
|
+
shape = itemFromSingleOrMultiple(overrideShapeType, this.id, reduceDuplicates);
|
|
3955
|
+
if (shape) {
|
|
3956
|
+
this.shape = shape;
|
|
3957
|
+
shapeOptions.load(overrideOptions.shape);
|
|
3958
|
+
}
|
|
3926
3959
|
}
|
|
3927
3960
|
}
|
|
3961
|
+
this.effectData = loadEffectData(this.effect, effectOptions, this.id, reduceDuplicates);
|
|
3928
3962
|
this.shapeData = loadShapeData(this.shape, shapeOptions, this.id, reduceDuplicates);
|
|
3929
3963
|
particlesOptions.load(overrideOptions);
|
|
3964
|
+
const effectData = this.effectData;
|
|
3965
|
+
if (effectData) {
|
|
3966
|
+
particlesOptions.load(effectData.particles);
|
|
3967
|
+
}
|
|
3930
3968
|
const shapeData = this.shapeData;
|
|
3931
3969
|
if (shapeData) {
|
|
3932
3970
|
particlesOptions.load(shapeData.particles);
|
|
@@ -3935,11 +3973,13 @@ class Particle {
|
|
|
3935
3973
|
interactivity.load(container.actualOptions.interactivity);
|
|
3936
3974
|
interactivity.load(particlesOptions.interactivity);
|
|
3937
3975
|
this.interactivity = interactivity;
|
|
3938
|
-
this.
|
|
3939
|
-
this.
|
|
3976
|
+
this.effectFill = effectData?.fill ?? particlesOptions.effect.fill;
|
|
3977
|
+
this.effectClose = effectData?.close ?? particlesOptions.effect.close;
|
|
3978
|
+
this.shapeFill = shapeData?.fill ?? particlesOptions.shape.fill;
|
|
3979
|
+
this.shapeClose = shapeData?.close ?? particlesOptions.shape.close;
|
|
3940
3980
|
this.options = particlesOptions;
|
|
3941
3981
|
const pathOptions = this.options.move.path;
|
|
3942
|
-
this.pathDelay =
|
|
3982
|
+
this.pathDelay = getRangeValue(pathOptions.delay.value) * 1000;
|
|
3943
3983
|
if (pathOptions.generator) {
|
|
3944
3984
|
this.pathGenerator = this._engine.getPathGenerator(pathOptions.generator);
|
|
3945
3985
|
if (this.pathGenerator && container.addPath(pathOptions.generator, this.pathGenerator)) {
|
|
@@ -3960,34 +4000,46 @@ class Particle {
|
|
|
3960
4000
|
this.velocity = this.initialVelocity.copy();
|
|
3961
4001
|
this.moveDecay = 1 - getRangeValue(this.options.move.decay);
|
|
3962
4002
|
const particles = container.particles;
|
|
3963
|
-
particles.
|
|
3964
|
-
particles.lastZIndex = this.position.z;
|
|
4003
|
+
particles.setLastZIndex(this.position.z);
|
|
3965
4004
|
this.zIndexFactor = this.position.z / container.zLayers;
|
|
3966
4005
|
this.sides = 24;
|
|
3967
|
-
let
|
|
3968
|
-
if (!
|
|
3969
|
-
|
|
3970
|
-
if (
|
|
3971
|
-
container.
|
|
4006
|
+
let effectDrawer = container.effectDrawers.get(this.effect);
|
|
4007
|
+
if (!effectDrawer) {
|
|
4008
|
+
effectDrawer = this._engine.getEffectDrawer(this.effect);
|
|
4009
|
+
if (effectDrawer) {
|
|
4010
|
+
container.effectDrawers.set(this.effect, effectDrawer);
|
|
3972
4011
|
}
|
|
3973
4012
|
}
|
|
3974
|
-
if (
|
|
3975
|
-
|
|
4013
|
+
if (effectDrawer && effectDrawer.loadEffect) {
|
|
4014
|
+
effectDrawer.loadEffect(this);
|
|
3976
4015
|
}
|
|
3977
|
-
|
|
4016
|
+
let shapeDrawer = container.shapeDrawers.get(this.shape);
|
|
4017
|
+
if (!shapeDrawer) {
|
|
4018
|
+
shapeDrawer = this._engine.getShapeDrawer(this.shape);
|
|
4019
|
+
if (shapeDrawer) {
|
|
4020
|
+
container.shapeDrawers.set(this.shape, shapeDrawer);
|
|
4021
|
+
}
|
|
4022
|
+
}
|
|
4023
|
+
if (shapeDrawer && shapeDrawer.loadShape) {
|
|
4024
|
+
shapeDrawer.loadShape(this);
|
|
4025
|
+
}
|
|
4026
|
+
const sideCountFunc = shapeDrawer?.getSidesCount;
|
|
3978
4027
|
if (sideCountFunc) {
|
|
3979
4028
|
this.sides = sideCountFunc(this);
|
|
3980
4029
|
}
|
|
3981
4030
|
this.spawning = false;
|
|
3982
4031
|
this.shadowColor = rangeColorToRgb(this.options.shadow.color);
|
|
3983
|
-
for (const updater of
|
|
4032
|
+
for (const updater of particles.updaters) {
|
|
3984
4033
|
updater.init(this);
|
|
3985
4034
|
}
|
|
3986
|
-
for (const mover of
|
|
4035
|
+
for (const mover of particles.movers) {
|
|
3987
4036
|
mover.init && mover.init(this);
|
|
3988
4037
|
}
|
|
3989
|
-
if (
|
|
3990
|
-
|
|
4038
|
+
if (effectDrawer && effectDrawer.particleInit) {
|
|
4039
|
+
effectDrawer.particleInit(container, this);
|
|
4040
|
+
}
|
|
4041
|
+
if (shapeDrawer && shapeDrawer.particleInit) {
|
|
4042
|
+
shapeDrawer.particleInit(container, this);
|
|
3991
4043
|
}
|
|
3992
4044
|
for (const [, plugin] of container.plugins) {
|
|
3993
4045
|
plugin.particleCreated && plugin.particleCreated(this);
|
|
@@ -4114,7 +4166,7 @@ class QuadTree {
|
|
|
4114
4166
|
capacity
|
|
4115
4167
|
} = this;
|
|
4116
4168
|
for (let i = 0; i < 4; i++) {
|
|
4117
|
-
this._subs.push(new QuadTree(new Rectangle(x + width
|
|
4169
|
+
this._subs.push(new QuadTree(new Rectangle(x + width * 0.5 * (i % 2), y + height * 0.5 * (Math.round(i * 0.5) - i % 2), width * 0.5, height * 0.5), capacity));
|
|
4118
4170
|
}
|
|
4119
4171
|
this._divided = true;
|
|
4120
4172
|
};
|
|
@@ -4170,21 +4222,36 @@ class QuadTree {
|
|
|
4170
4222
|
|
|
4171
4223
|
const qTreeCapacity = 4;
|
|
4172
4224
|
const qTreeRectangle = canvasSize => {
|
|
4173
|
-
|
|
4225
|
+
const {
|
|
4226
|
+
height,
|
|
4227
|
+
width
|
|
4228
|
+
} = canvasSize,
|
|
4229
|
+
posOffset = -0.25,
|
|
4230
|
+
sizeFactor = 1.5;
|
|
4231
|
+
return new Rectangle(posOffset * width, posOffset * height, sizeFactor * width, sizeFactor * height);
|
|
4174
4232
|
};
|
|
4175
4233
|
class Particles {
|
|
4176
4234
|
constructor(engine, container) {
|
|
4177
4235
|
this._applyDensity = (options, manualCount, group) => {
|
|
4236
|
+
const numberOptions = options.number;
|
|
4178
4237
|
if (!options.number.density?.enable) {
|
|
4238
|
+
if (group === undefined) {
|
|
4239
|
+
this._limit = numberOptions.limit.value;
|
|
4240
|
+
} else {
|
|
4241
|
+
this._groupLimits.set(group, numberOptions.limit.value);
|
|
4242
|
+
}
|
|
4179
4243
|
return;
|
|
4180
4244
|
}
|
|
4181
|
-
const
|
|
4182
|
-
densityFactor = this._initDensityFactor(numberOptions.density),
|
|
4245
|
+
const densityFactor = this._initDensityFactor(numberOptions.density),
|
|
4183
4246
|
optParticlesNumber = numberOptions.value,
|
|
4184
|
-
optParticlesLimit = numberOptions.limit > 0 ? numberOptions.limit : optParticlesNumber,
|
|
4247
|
+
optParticlesLimit = numberOptions.limit.value > 0 ? numberOptions.limit.value : optParticlesNumber,
|
|
4185
4248
|
particlesNumber = Math.min(optParticlesNumber, optParticlesLimit) * densityFactor + manualCount,
|
|
4186
4249
|
particlesCount = Math.min(this.count, this.filter(t => t.group === group).length);
|
|
4187
|
-
|
|
4250
|
+
if (group === undefined) {
|
|
4251
|
+
this._limit = numberOptions.limit.value * densityFactor;
|
|
4252
|
+
} else {
|
|
4253
|
+
this._groupLimits.set(group, numberOptions.limit.value * densityFactor);
|
|
4254
|
+
}
|
|
4188
4255
|
if (particlesCount < particlesNumber) {
|
|
4189
4256
|
this.push(Math.abs(particlesNumber - particlesCount), undefined, options, group);
|
|
4190
4257
|
} else if (particlesCount > particlesNumber) {
|
|
@@ -4202,7 +4269,7 @@ class Particles {
|
|
|
4202
4269
|
};
|
|
4203
4270
|
this._pushParticle = (position, overrideOptions, group, initializer) => {
|
|
4204
4271
|
try {
|
|
4205
|
-
let particle = this.
|
|
4272
|
+
let particle = this._pool.pop();
|
|
4206
4273
|
if (particle) {
|
|
4207
4274
|
particle.init(this._nextId, position, overrideOptions, group);
|
|
4208
4275
|
} else {
|
|
@@ -4239,7 +4306,7 @@ class Particles {
|
|
|
4239
4306
|
const zIdx = this._zArray.indexOf(particle);
|
|
4240
4307
|
this._array.splice(index, 1);
|
|
4241
4308
|
this._zArray.splice(zIdx, 1);
|
|
4242
|
-
this.
|
|
4309
|
+
this._pool.push(particle);
|
|
4243
4310
|
this._engine.dispatchEvent("particleRemoved", {
|
|
4244
4311
|
container: this._container,
|
|
4245
4312
|
data: {
|
|
@@ -4253,10 +4320,11 @@ class Particles {
|
|
|
4253
4320
|
this._nextId = 0;
|
|
4254
4321
|
this._array = [];
|
|
4255
4322
|
this._zArray = [];
|
|
4256
|
-
this.
|
|
4257
|
-
this.
|
|
4258
|
-
this.
|
|
4259
|
-
this.
|
|
4323
|
+
this._pool = [];
|
|
4324
|
+
this._limit = 0;
|
|
4325
|
+
this._groupLimits = new Map();
|
|
4326
|
+
this._needsSort = false;
|
|
4327
|
+
this._lastZIndex = 0;
|
|
4260
4328
|
this._interactionManager = new InteractionManager(engine, container);
|
|
4261
4329
|
const canvasSize = container.canvas.size;
|
|
4262
4330
|
this.quadTree = new QuadTree(qTreeRectangle(canvasSize), qTreeCapacity);
|
|
@@ -4274,19 +4342,22 @@ class Particles {
|
|
|
4274
4342
|
}
|
|
4275
4343
|
}
|
|
4276
4344
|
addParticle(position, overrideOptions, group, initializer) {
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
limit = options.particles.number.limit;
|
|
4345
|
+
const limitOptions = this._container.actualOptions.particles.number.limit,
|
|
4346
|
+
limit = group === undefined ? this._limit : this._groupLimits.get(group) ?? this._limit,
|
|
4347
|
+
currentCount = this.count;
|
|
4281
4348
|
if (limit > 0) {
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
|
|
4349
|
+
if (limitOptions.mode === "delete") {
|
|
4350
|
+
const countToRemove = currentCount + 1 - limit;
|
|
4351
|
+
if (countToRemove > 0) {
|
|
4352
|
+
this.removeQuantity(countToRemove);
|
|
4353
|
+
}
|
|
4354
|
+
} else if (limitOptions.mode === "wait") {
|
|
4355
|
+
if (currentCount >= limit) {
|
|
4356
|
+
return;
|
|
4357
|
+
}
|
|
4285
4358
|
}
|
|
4286
4359
|
}
|
|
4287
|
-
|
|
4288
|
-
this.pushing = false;
|
|
4289
|
-
return res;
|
|
4360
|
+
return this._pushParticle(position, overrideOptions, group, initializer);
|
|
4290
4361
|
}
|
|
4291
4362
|
clear() {
|
|
4292
4363
|
this._array = [];
|
|
@@ -4325,8 +4396,8 @@ class Particles {
|
|
|
4325
4396
|
init() {
|
|
4326
4397
|
const container = this._container,
|
|
4327
4398
|
options = container.actualOptions;
|
|
4328
|
-
this.
|
|
4329
|
-
this.
|
|
4399
|
+
this._lastZIndex = 0;
|
|
4400
|
+
this._needsSort = false;
|
|
4330
4401
|
let handled = false;
|
|
4331
4402
|
this.updaters = this._engine.getUpdaters(container, true);
|
|
4332
4403
|
this._interactionManager.init();
|
|
@@ -4393,6 +4464,13 @@ class Particles {
|
|
|
4393
4464
|
}
|
|
4394
4465
|
this._applyDensity(options.particles, options.manualParticles.length);
|
|
4395
4466
|
}
|
|
4467
|
+
setLastZIndex(zIndex) {
|
|
4468
|
+
this._lastZIndex = zIndex;
|
|
4469
|
+
this._needsSort = this._needsSort || this._lastZIndex < zIndex;
|
|
4470
|
+
}
|
|
4471
|
+
setResizeFactor(factor) {
|
|
4472
|
+
this._resizeFactor = factor;
|
|
4473
|
+
}
|
|
4396
4474
|
async update(delta) {
|
|
4397
4475
|
const container = this._container,
|
|
4398
4476
|
particlesToDelete = new Set();
|
|
@@ -4401,10 +4479,10 @@ class Particles {
|
|
|
4401
4479
|
pathGenerator.update();
|
|
4402
4480
|
}
|
|
4403
4481
|
for (const [, plugin] of container.plugins) {
|
|
4404
|
-
plugin.update && plugin.update(delta);
|
|
4482
|
+
plugin.update && (await plugin.update(delta));
|
|
4405
4483
|
}
|
|
4484
|
+
const resizeFactor = this._resizeFactor;
|
|
4406
4485
|
for (const particle of this._array) {
|
|
4407
|
-
const resizeFactor = container.canvas.resizeFactor;
|
|
4408
4486
|
if (resizeFactor && !particle.ignoresResizeRatio) {
|
|
4409
4487
|
particle.position.x *= resizeFactor.width;
|
|
4410
4488
|
particle.position.y *= resizeFactor.height;
|
|
@@ -4432,7 +4510,7 @@ class Particles {
|
|
|
4432
4510
|
const checkDelete = p => !particlesToDelete.has(p);
|
|
4433
4511
|
this._array = this.filter(checkDelete);
|
|
4434
4512
|
this._zArray = this._zArray.filter(checkDelete);
|
|
4435
|
-
this.
|
|
4513
|
+
this._pool.push(...particlesToDelete);
|
|
4436
4514
|
}
|
|
4437
4515
|
await this._interactionManager.externalInteract(delta);
|
|
4438
4516
|
for (const particle of this._array) {
|
|
@@ -4443,12 +4521,12 @@ class Particles {
|
|
|
4443
4521
|
await this._interactionManager.particlesInteract(particle, delta);
|
|
4444
4522
|
}
|
|
4445
4523
|
}
|
|
4446
|
-
delete
|
|
4447
|
-
if (this.
|
|
4524
|
+
delete this._resizeFactor;
|
|
4525
|
+
if (this._needsSort) {
|
|
4448
4526
|
const zArray = this._zArray;
|
|
4449
4527
|
zArray.sort((a, b) => b.position.z - a.position.z || a.id - b.id);
|
|
4450
|
-
this.
|
|
4451
|
-
this.
|
|
4528
|
+
this._lastZIndex = zArray[zArray.length - 1].position.z;
|
|
4529
|
+
this._needsSort = false;
|
|
4452
4530
|
}
|
|
4453
4531
|
}
|
|
4454
4532
|
}
|
|
@@ -4475,7 +4553,6 @@ class Retina {
|
|
|
4475
4553
|
}
|
|
4476
4554
|
const particles = options.particles,
|
|
4477
4555
|
moveOptions = particles.move;
|
|
4478
|
-
this.attractDistance = getRangeValue(moveOptions.attract.distance) * ratio;
|
|
4479
4556
|
this.maxSpeed = getRangeValue(moveOptions.gravity.maxSpeed) * ratio;
|
|
4480
4557
|
this.sizeAnimationSpeed = getRangeValue(particles.size.animation.speed) * ratio;
|
|
4481
4558
|
}
|
|
@@ -4485,7 +4562,6 @@ class Retina {
|
|
|
4485
4562
|
moveOptions = options.move,
|
|
4486
4563
|
moveDistance = moveOptions.distance,
|
|
4487
4564
|
props = particle.retina;
|
|
4488
|
-
props.attractDistance = getRangeValue(moveOptions.attract.distance) * ratio;
|
|
4489
4565
|
props.moveDrift = getRangeValue(moveOptions.drift) * ratio;
|
|
4490
4566
|
props.moveSpeed = getRangeValue(moveOptions.speed) * ratio;
|
|
4491
4567
|
props.sizeAnimationSpeed = getRangeValue(options.size.animation.speed) * ratio;
|
|
@@ -4534,14 +4610,14 @@ class Container {
|
|
|
4534
4610
|
};
|
|
4535
4611
|
this._nextFrame = async timestamp => {
|
|
4536
4612
|
try {
|
|
4537
|
-
if (!this.
|
|
4613
|
+
if (!this._smooth && this._lastFrameTime !== undefined && timestamp < this._lastFrameTime + 1000 / this.fpsLimit) {
|
|
4538
4614
|
this.draw(false);
|
|
4539
4615
|
return;
|
|
4540
4616
|
}
|
|
4541
|
-
this.
|
|
4542
|
-
const delta = initDelta(timestamp - this.
|
|
4617
|
+
this._lastFrameTime ??= timestamp;
|
|
4618
|
+
const delta = initDelta(timestamp - this._lastFrameTime, this.fpsLimit, this._smooth);
|
|
4543
4619
|
this.addLifeTime(delta.value);
|
|
4544
|
-
this.
|
|
4620
|
+
this._lastFrameTime = timestamp;
|
|
4545
4621
|
if (delta.value > 1000) {
|
|
4546
4622
|
this.draw(false);
|
|
4547
4623
|
return;
|
|
@@ -4561,7 +4637,7 @@ class Container {
|
|
|
4561
4637
|
this._engine = engine;
|
|
4562
4638
|
this.id = Symbol(id);
|
|
4563
4639
|
this.fpsLimit = 120;
|
|
4564
|
-
this.
|
|
4640
|
+
this._smooth = false;
|
|
4565
4641
|
this._delay = 0;
|
|
4566
4642
|
this._duration = 0;
|
|
4567
4643
|
this._lifeTime = 0;
|
|
@@ -4569,7 +4645,7 @@ class Container {
|
|
|
4569
4645
|
this.started = false;
|
|
4570
4646
|
this.destroyed = false;
|
|
4571
4647
|
this._paused = true;
|
|
4572
|
-
this.
|
|
4648
|
+
this._lastFrameTime = 0;
|
|
4573
4649
|
this.zLayers = 100;
|
|
4574
4650
|
this.pageHidden = false;
|
|
4575
4651
|
this._sourceOptions = sourceOptions;
|
|
@@ -4585,7 +4661,8 @@ class Container {
|
|
|
4585
4661
|
}
|
|
4586
4662
|
};
|
|
4587
4663
|
this.plugins = new Map();
|
|
4588
|
-
this.
|
|
4664
|
+
this.effectDrawers = new Map();
|
|
4665
|
+
this.shapeDrawers = new Map();
|
|
4589
4666
|
this._options = loadContainerOptions(this._engine, this);
|
|
4590
4667
|
this.actualOptions = loadContainerOptions(this._engine, this);
|
|
4591
4668
|
this._eventListeners = new EventListeners(this);
|
|
@@ -4703,11 +4780,17 @@ class Container {
|
|
|
4703
4780
|
this.stop();
|
|
4704
4781
|
this.particles.destroy();
|
|
4705
4782
|
this.canvas.destroy();
|
|
4706
|
-
for (const [,
|
|
4707
|
-
|
|
4783
|
+
for (const [, effectDrawer] of this.effectDrawers) {
|
|
4784
|
+
effectDrawer.destroy && effectDrawer.destroy(this);
|
|
4785
|
+
}
|
|
4786
|
+
for (const [, shapeDrawer] of this.shapeDrawers) {
|
|
4787
|
+
shapeDrawer.destroy && shapeDrawer.destroy(this);
|
|
4708
4788
|
}
|
|
4709
|
-
for (const key of this.
|
|
4710
|
-
this.
|
|
4789
|
+
for (const key of this.effectDrawers.keys()) {
|
|
4790
|
+
this.effectDrawers.delete(key);
|
|
4791
|
+
}
|
|
4792
|
+
for (const key of this.shapeDrawers.keys()) {
|
|
4793
|
+
this.shapeDrawers.delete(key);
|
|
4711
4794
|
}
|
|
4712
4795
|
this._engine.clearPlugins(this);
|
|
4713
4796
|
this.destroyed = true;
|
|
@@ -4727,7 +4810,7 @@ class Container {
|
|
|
4727
4810
|
let refreshTime = force;
|
|
4728
4811
|
this._drawAnimationFrame = requestAnimationFrame(async timestamp => {
|
|
4729
4812
|
if (refreshTime) {
|
|
4730
|
-
this.
|
|
4813
|
+
this._lastFrameTime = undefined;
|
|
4731
4814
|
refreshTime = false;
|
|
4732
4815
|
}
|
|
4733
4816
|
await this._nextFrame(timestamp);
|
|
@@ -4762,11 +4845,18 @@ class Container {
|
|
|
4762
4845
|
if (!guardCheck(this)) {
|
|
4763
4846
|
return;
|
|
4764
4847
|
}
|
|
4848
|
+
const effects = this._engine.getSupportedEffects();
|
|
4849
|
+
for (const type of effects) {
|
|
4850
|
+
const drawer = this._engine.getEffectDrawer(type);
|
|
4851
|
+
if (drawer) {
|
|
4852
|
+
this.effectDrawers.set(type, drawer);
|
|
4853
|
+
}
|
|
4854
|
+
}
|
|
4765
4855
|
const shapes = this._engine.getSupportedShapes();
|
|
4766
4856
|
for (const type of shapes) {
|
|
4767
4857
|
const drawer = this._engine.getShapeDrawer(type);
|
|
4768
4858
|
if (drawer) {
|
|
4769
|
-
this.
|
|
4859
|
+
this.shapeDrawers.set(type, drawer);
|
|
4770
4860
|
}
|
|
4771
4861
|
}
|
|
4772
4862
|
this._options = loadContainerOptions(this._engine, this, this._initialSourceOptions, this.sourceOptions);
|
|
@@ -4785,8 +4875,11 @@ class Container {
|
|
|
4785
4875
|
this._delay = getRangeValue(this.actualOptions.delay) * 1000;
|
|
4786
4876
|
this._lifeTime = 0;
|
|
4787
4877
|
this.fpsLimit = this.actualOptions.fpsLimit > 0 ? this.actualOptions.fpsLimit : 120;
|
|
4788
|
-
this.
|
|
4789
|
-
for (const [, drawer] of this.
|
|
4878
|
+
this._smooth = this.actualOptions.smooth;
|
|
4879
|
+
for (const [, drawer] of this.effectDrawers) {
|
|
4880
|
+
drawer.init && (await drawer.init(this));
|
|
4881
|
+
}
|
|
4882
|
+
for (const [, drawer] of this.shapeDrawers) {
|
|
4790
4883
|
drawer.init && (await drawer.init(this));
|
|
4791
4884
|
}
|
|
4792
4885
|
for (const [, plugin] of this.plugins) {
|
|
@@ -4927,10 +5020,10 @@ class Container {
|
|
|
4927
5020
|
this.actualOptions.responsive = [];
|
|
4928
5021
|
const newMaxWidth = this.actualOptions.setResponsive(this.canvas.size.width, this.retina.pixelRatio, this._options);
|
|
4929
5022
|
this.actualOptions.setTheme(this._currentTheme);
|
|
4930
|
-
if (this.
|
|
5023
|
+
if (this._responsiveMaxWidth === newMaxWidth) {
|
|
4931
5024
|
return false;
|
|
4932
5025
|
}
|
|
4933
|
-
this.
|
|
5026
|
+
this._responsiveMaxWidth = newMaxWidth;
|
|
4934
5027
|
return true;
|
|
4935
5028
|
}
|
|
4936
5029
|
}
|
|
@@ -5021,7 +5114,8 @@ class Engine {
|
|
|
5021
5114
|
this.movers = new Map();
|
|
5022
5115
|
this.updaters = new Map();
|
|
5023
5116
|
this.presets = new Map();
|
|
5024
|
-
this.
|
|
5117
|
+
this.effectDrawers = new Map();
|
|
5118
|
+
this.shapeDrawers = new Map();
|
|
5025
5119
|
this.pathGenerators = new Map();
|
|
5026
5120
|
}
|
|
5027
5121
|
get configs() {
|
|
@@ -5032,7 +5126,7 @@ class Engine {
|
|
|
5032
5126
|
return res;
|
|
5033
5127
|
}
|
|
5034
5128
|
get version() {
|
|
5035
|
-
return "3.0.0-beta.
|
|
5129
|
+
return "3.0.0-beta.5";
|
|
5036
5130
|
}
|
|
5037
5131
|
addConfig(config) {
|
|
5038
5132
|
const name = config.name ?? "default";
|
|
@@ -5044,6 +5138,12 @@ class Engine {
|
|
|
5044
5138
|
}
|
|
5045
5139
|
});
|
|
5046
5140
|
}
|
|
5141
|
+
async addEffect(effect, drawer, refresh = true) {
|
|
5142
|
+
executeOnSingleOrMultiple(effect, type => {
|
|
5143
|
+
!this.getEffectDrawer(type) && this.effectDrawers.set(type, drawer);
|
|
5144
|
+
});
|
|
5145
|
+
await this.refresh(refresh);
|
|
5146
|
+
}
|
|
5047
5147
|
addEventListener(type, listener) {
|
|
5048
5148
|
this._eventDispatcher.addEventListener(type, listener);
|
|
5049
5149
|
}
|
|
@@ -5073,7 +5173,7 @@ class Engine {
|
|
|
5073
5173
|
}
|
|
5074
5174
|
async addShape(shape, drawer, refresh = true) {
|
|
5075
5175
|
executeOnSingleOrMultiple(shape, type => {
|
|
5076
|
-
!this.getShapeDrawer(type) && this.
|
|
5176
|
+
!this.getShapeDrawer(type) && this.shapeDrawers.set(type, drawer);
|
|
5077
5177
|
});
|
|
5078
5178
|
await this.refresh(refresh);
|
|
5079
5179
|
}
|
|
@@ -5104,6 +5204,9 @@ class Engine {
|
|
|
5104
5204
|
}
|
|
5105
5205
|
return res;
|
|
5106
5206
|
}
|
|
5207
|
+
getEffectDrawer(type) {
|
|
5208
|
+
return this.effectDrawers.get(type);
|
|
5209
|
+
}
|
|
5107
5210
|
getInteractors(container, force = false) {
|
|
5108
5211
|
return getItemsFromInitializer(container, this.interactors, this._initializers.interactors, force);
|
|
5109
5212
|
}
|
|
@@ -5120,10 +5223,13 @@ class Engine {
|
|
|
5120
5223
|
return this.presets.get(preset);
|
|
5121
5224
|
}
|
|
5122
5225
|
getShapeDrawer(type) {
|
|
5123
|
-
return this.
|
|
5226
|
+
return this.shapeDrawers.get(type);
|
|
5227
|
+
}
|
|
5228
|
+
getSupportedEffects() {
|
|
5229
|
+
return this.effectDrawers.keys();
|
|
5124
5230
|
}
|
|
5125
5231
|
getSupportedShapes() {
|
|
5126
|
-
return this.
|
|
5232
|
+
return this.shapeDrawers.keys();
|
|
5127
5233
|
}
|
|
5128
5234
|
getUpdaters(container, force = false) {
|
|
5129
5235
|
return getItemsFromInitializer(container, this.updaters, this._initializers.updaters, force);
|
|
@@ -5419,7 +5525,6 @@ class ParticlesInteractorBase {
|
|
|
5419
5525
|
|
|
5420
5526
|
|
|
5421
5527
|
|
|
5422
|
-
|
|
5423
5528
|
|
|
5424
5529
|
|
|
5425
5530
|
;// CONCATENATED MODULE: ../../engine/dist/browser/index.js
|
|
@@ -5453,6 +5558,7 @@ class ConfettiOptions {
|
|
|
5453
5558
|
this.scalar = 1;
|
|
5454
5559
|
this.zIndex = 100;
|
|
5455
5560
|
this.disableForReducedMotion = true;
|
|
5561
|
+
this.flat = false;
|
|
5456
5562
|
this.shapeOptions = {};
|
|
5457
5563
|
}
|
|
5458
5564
|
get origin() {
|
|
@@ -5491,6 +5597,9 @@ class ConfettiOptions {
|
|
|
5491
5597
|
if (data.decay !== undefined) {
|
|
5492
5598
|
this.decay = data.decay;
|
|
5493
5599
|
}
|
|
5600
|
+
if (data.flat !== undefined) {
|
|
5601
|
+
this.flat = data.flat;
|
|
5602
|
+
}
|
|
5494
5603
|
if (data.gravity !== undefined) {
|
|
5495
5604
|
this.gravity = data.gravity;
|
|
5496
5605
|
}
|
|
@@ -5571,10 +5680,10 @@ function applyDistance(particle) {
|
|
|
5571
5680
|
if ((hDistance && dxFixed >= hDistance || vDistance && dyFixed >= vDistance) && !particle.misplaced) {
|
|
5572
5681
|
particle.misplaced = !!hDistance && dxFixed > hDistance || !!vDistance && dyFixed > vDistance;
|
|
5573
5682
|
if (hDistance) {
|
|
5574
|
-
particle.velocity.x = particle.velocity.y
|
|
5683
|
+
particle.velocity.x = particle.velocity.y * 0.5 - particle.velocity.x;
|
|
5575
5684
|
}
|
|
5576
5685
|
if (vDistance) {
|
|
5577
|
-
particle.velocity.y = particle.velocity.x
|
|
5686
|
+
particle.velocity.y = particle.velocity.x * 0.5 - particle.velocity.y;
|
|
5578
5687
|
}
|
|
5579
5688
|
} else if ((!hDistance || dxFixed < hDistance) && (!vDistance || dyFixed < vDistance) && particle.misplaced) {
|
|
5580
5689
|
particle.misplaced = false;
|
|
@@ -5632,15 +5741,16 @@ function spin(particle, moveSpeed) {
|
|
|
5632
5741
|
particle.position.x = particle.spin.center.x + particle.spin.radius * updateFunc.x(particle.spin.angle);
|
|
5633
5742
|
particle.position.y = particle.spin.center.y + particle.spin.radius * updateFunc.y(particle.spin.angle);
|
|
5634
5743
|
particle.spin.radius += particle.spin.acceleration;
|
|
5635
|
-
const maxCanvasSize = Math.max(container.canvas.size.width, container.canvas.size.height)
|
|
5636
|
-
|
|
5637
|
-
|
|
5744
|
+
const maxCanvasSize = Math.max(container.canvas.size.width, container.canvas.size.height),
|
|
5745
|
+
halfMaxSize = maxCanvasSize * 0.5;
|
|
5746
|
+
if (particle.spin.radius > halfMaxSize) {
|
|
5747
|
+
particle.spin.radius = halfMaxSize;
|
|
5638
5748
|
particle.spin.acceleration *= -1;
|
|
5639
5749
|
} else if (particle.spin.radius < 0) {
|
|
5640
5750
|
particle.spin.radius = 0;
|
|
5641
5751
|
particle.spin.acceleration *= -1;
|
|
5642
5752
|
}
|
|
5643
|
-
particle.spin.angle += moveSpeed
|
|
5753
|
+
particle.spin.angle += moveSpeed * 0.01 * (1 - particle.spin.radius / maxCanvasSize);
|
|
5644
5754
|
}
|
|
5645
5755
|
function applyPath(particle, delta) {
|
|
5646
5756
|
const particlesOptions = particle.options,
|
|
@@ -5684,8 +5794,8 @@ class BaseMover {
|
|
|
5684
5794
|
y: 50
|
|
5685
5795
|
},
|
|
5686
5796
|
spinCenter = {
|
|
5687
|
-
x: spinPos.x
|
|
5688
|
-
y: spinPos.y
|
|
5797
|
+
x: spinPos.x * 0.01 * container.canvas.size.width,
|
|
5798
|
+
y: spinPos.y * 0.01 * container.canvas.size.height
|
|
5689
5799
|
},
|
|
5690
5800
|
pos = particle.getPosition(),
|
|
5691
5801
|
distance = getDistance(pos, spinCenter),
|
|
@@ -6008,7 +6118,7 @@ function bounceHorizontal(data) {
|
|
|
6008
6118
|
const velocity = data.particle.velocity.x;
|
|
6009
6119
|
let bounced = false;
|
|
6010
6120
|
if (data.direction === "right" && data.bounds.right >= data.canvasSize.width && velocity > 0 || data.direction === "left" && data.bounds.left <= 0 && velocity < 0) {
|
|
6011
|
-
const newVelocity =
|
|
6121
|
+
const newVelocity = getRangeValue(data.particle.options.bounce.horizontal.value);
|
|
6012
6122
|
data.particle.velocity.x *= -newVelocity;
|
|
6013
6123
|
bounced = true;
|
|
6014
6124
|
}
|
|
@@ -6037,7 +6147,7 @@ function bounceVertical(data) {
|
|
|
6037
6147
|
const velocity = data.particle.velocity.y;
|
|
6038
6148
|
let bounced = false;
|
|
6039
6149
|
if (data.direction === "bottom" && data.bounds.bottom >= data.canvasSize.height && velocity > 0 || data.direction === "top" && data.bounds.top <= 0 && velocity < 0) {
|
|
6040
|
-
const newVelocity =
|
|
6150
|
+
const newVelocity = getRangeValue(data.particle.options.bounce.vertical.value);
|
|
6041
6151
|
data.particle.velocity.y *= -newVelocity;
|
|
6042
6152
|
bounced = true;
|
|
6043
6153
|
}
|
|
@@ -6731,35 +6841,6 @@ async function loadCardsShape(engine, refresh = true) {
|
|
|
6731
6841
|
await engine.addShape(["diamond", "diamonds"], new DiamondDrawer(), refresh);
|
|
6732
6842
|
await engine.addShape(["club", "clubs"], new ClubDrawer(), refresh);
|
|
6733
6843
|
}
|
|
6734
|
-
;// CONCATENATED MODULE: ../../plugins/emitters/dist/browser/Shapes/Circle/CircleShape.js
|
|
6735
|
-
|
|
6736
|
-
class CircleShape {
|
|
6737
|
-
randomPosition(position, size, fill) {
|
|
6738
|
-
const generateTheta = (x, y) => {
|
|
6739
|
-
const u = getRandom() / 4.0,
|
|
6740
|
-
theta = Math.atan(y / x * Math.tan(2 * Math.PI * u)),
|
|
6741
|
-
v = getRandom();
|
|
6742
|
-
if (v < 0.25) {
|
|
6743
|
-
return theta;
|
|
6744
|
-
} else if (v < 0.5) {
|
|
6745
|
-
return Math.PI - theta;
|
|
6746
|
-
} else if (v < 0.75) {
|
|
6747
|
-
return Math.PI + theta;
|
|
6748
|
-
} else {
|
|
6749
|
-
return -theta;
|
|
6750
|
-
}
|
|
6751
|
-
},
|
|
6752
|
-
radius = (x, y, theta) => x * y / Math.sqrt((y * Math.cos(theta)) ** 2 + (x * Math.sin(theta)) ** 2),
|
|
6753
|
-
[a, b] = [size.width / 2, size.height / 2],
|
|
6754
|
-
randomTheta = generateTheta(a, b),
|
|
6755
|
-
maxRadius = radius(a, b, randomTheta),
|
|
6756
|
-
randomRadius = fill ? maxRadius * Math.sqrt(getRandom()) : maxRadius;
|
|
6757
|
-
return {
|
|
6758
|
-
x: position.x + randomRadius * Math.cos(randomTheta),
|
|
6759
|
-
y: position.y + randomRadius * Math.sin(randomTheta)
|
|
6760
|
-
};
|
|
6761
|
-
}
|
|
6762
|
-
}
|
|
6763
6844
|
;// CONCATENATED MODULE: ../../plugins/emitters/dist/browser/Options/Classes/EmitterLife.js
|
|
6764
6845
|
|
|
6765
6846
|
class EmitterLife {
|
|
@@ -6803,6 +6884,46 @@ class EmitterRate {
|
|
|
6803
6884
|
}
|
|
6804
6885
|
}
|
|
6805
6886
|
}
|
|
6887
|
+
;// CONCATENATED MODULE: ../../plugins/emitters/dist/browser/Options/Classes/EmitterShapeReplace.js
|
|
6888
|
+
class EmitterShapeReplace {
|
|
6889
|
+
constructor() {
|
|
6890
|
+
this.color = false;
|
|
6891
|
+
this.opacity = false;
|
|
6892
|
+
}
|
|
6893
|
+
load(data) {
|
|
6894
|
+
if (!data) {
|
|
6895
|
+
return;
|
|
6896
|
+
}
|
|
6897
|
+
if (data.color !== undefined) {
|
|
6898
|
+
this.color = data.color;
|
|
6899
|
+
}
|
|
6900
|
+
if (data.opacity !== undefined) {
|
|
6901
|
+
this.opacity = data.opacity;
|
|
6902
|
+
}
|
|
6903
|
+
}
|
|
6904
|
+
}
|
|
6905
|
+
;// CONCATENATED MODULE: ../../plugins/emitters/dist/browser/Options/Classes/EmitterShape.js
|
|
6906
|
+
|
|
6907
|
+
|
|
6908
|
+
class EmitterShape {
|
|
6909
|
+
constructor() {
|
|
6910
|
+
this.options = {};
|
|
6911
|
+
this.replace = new EmitterShapeReplace();
|
|
6912
|
+
this.type = "square";
|
|
6913
|
+
}
|
|
6914
|
+
load(data) {
|
|
6915
|
+
if (!data) {
|
|
6916
|
+
return;
|
|
6917
|
+
}
|
|
6918
|
+
if (data.options !== undefined) {
|
|
6919
|
+
this.options = deepExtend({}, data.options ?? {});
|
|
6920
|
+
}
|
|
6921
|
+
this.replace.load(data.replace);
|
|
6922
|
+
if (data.type !== undefined) {
|
|
6923
|
+
this.type = data.type;
|
|
6924
|
+
}
|
|
6925
|
+
}
|
|
6926
|
+
}
|
|
6806
6927
|
;// CONCATENATED MODULE: ../../plugins/emitters/dist/browser/Options/Classes/EmitterSize.js
|
|
6807
6928
|
class EmitterSize {
|
|
6808
6929
|
constructor() {
|
|
@@ -6830,13 +6951,14 @@ class EmitterSize {
|
|
|
6830
6951
|
|
|
6831
6952
|
|
|
6832
6953
|
|
|
6954
|
+
|
|
6833
6955
|
class Emitter {
|
|
6834
6956
|
constructor() {
|
|
6835
6957
|
this.autoPlay = true;
|
|
6836
6958
|
this.fill = true;
|
|
6837
6959
|
this.life = new EmitterLife();
|
|
6838
6960
|
this.rate = new EmitterRate();
|
|
6839
|
-
this.shape =
|
|
6961
|
+
this.shape = new EmitterShape();
|
|
6840
6962
|
this.startCount = 0;
|
|
6841
6963
|
}
|
|
6842
6964
|
load(data) {
|
|
@@ -6865,9 +6987,7 @@ class Emitter {
|
|
|
6865
6987
|
return deepExtend({}, particles);
|
|
6866
6988
|
});
|
|
6867
6989
|
this.rate.load(data.rate);
|
|
6868
|
-
|
|
6869
|
-
this.shape = data.shape;
|
|
6870
|
-
}
|
|
6990
|
+
this.shape.load(data.shape);
|
|
6871
6991
|
if (data.position !== undefined) {
|
|
6872
6992
|
this.position = {};
|
|
6873
6993
|
if (data.position.x !== undefined) {
|
|
@@ -6892,17 +7012,24 @@ class Emitter {
|
|
|
6892
7012
|
|
|
6893
7013
|
|
|
6894
7014
|
|
|
7015
|
+
function setParticlesOptionsColor(particlesOptions, color) {
|
|
7016
|
+
if (particlesOptions.color) {
|
|
7017
|
+
particlesOptions.color.value = color;
|
|
7018
|
+
} else {
|
|
7019
|
+
particlesOptions.color = {
|
|
7020
|
+
value: color
|
|
7021
|
+
};
|
|
7022
|
+
}
|
|
7023
|
+
}
|
|
6895
7024
|
class EmitterInstance {
|
|
6896
7025
|
constructor(engine, emitters, container, options, position) {
|
|
6897
7026
|
this.emitters = emitters;
|
|
6898
7027
|
this.container = container;
|
|
6899
|
-
this._calcPosition = () => {
|
|
6900
|
-
return calcPositionOrRandomFromSizeRanged({
|
|
6901
|
-
size: this.container.canvas.size,
|
|
6902
|
-
position: this.options.position
|
|
6903
|
-
});
|
|
6904
|
-
};
|
|
6905
7028
|
this._destroy = () => {
|
|
7029
|
+
this._mutationObserver?.disconnect();
|
|
7030
|
+
this._mutationObserver = undefined;
|
|
7031
|
+
this._resizeObserver?.disconnect();
|
|
7032
|
+
this._resizeObserver = undefined;
|
|
6906
7033
|
this.emitters.removeEmitter(this);
|
|
6907
7034
|
this._engine.dispatchEvent("emitterDestroyed", {
|
|
6908
7035
|
container: this.container,
|
|
@@ -6911,41 +7038,6 @@ class EmitterInstance {
|
|
|
6911
7038
|
}
|
|
6912
7039
|
});
|
|
6913
7040
|
};
|
|
6914
|
-
this._emit = () => {
|
|
6915
|
-
if (this._paused) {
|
|
6916
|
-
return;
|
|
6917
|
-
}
|
|
6918
|
-
const quantity = getRangeValue(this.options.rate.quantity);
|
|
6919
|
-
this._emitParticles(quantity);
|
|
6920
|
-
};
|
|
6921
|
-
this._emitParticles = quantity => {
|
|
6922
|
-
const position = this.getPosition(),
|
|
6923
|
-
size = this.getSize(),
|
|
6924
|
-
singleParticlesOptions = itemFromSingleOrMultiple(this._particlesOptions);
|
|
6925
|
-
for (let i = 0; i < quantity; i++) {
|
|
6926
|
-
const particlesOptions = deepExtend({}, singleParticlesOptions);
|
|
6927
|
-
if (this.spawnColor) {
|
|
6928
|
-
const hslAnimation = this.options.spawnColor?.animation;
|
|
6929
|
-
if (hslAnimation) {
|
|
6930
|
-
this.spawnColor.h = this._setColorAnimation(hslAnimation.h, this.spawnColor.h, 360);
|
|
6931
|
-
this.spawnColor.s = this._setColorAnimation(hslAnimation.s, this.spawnColor.s, 100);
|
|
6932
|
-
this.spawnColor.l = this._setColorAnimation(hslAnimation.l, this.spawnColor.l, 100);
|
|
6933
|
-
}
|
|
6934
|
-
if (!particlesOptions.color) {
|
|
6935
|
-
particlesOptions.color = {
|
|
6936
|
-
value: this.spawnColor
|
|
6937
|
-
};
|
|
6938
|
-
} else {
|
|
6939
|
-
particlesOptions.color.value = this.spawnColor;
|
|
6940
|
-
}
|
|
6941
|
-
}
|
|
6942
|
-
if (!position) {
|
|
6943
|
-
return;
|
|
6944
|
-
}
|
|
6945
|
-
const pPosition = this._shape?.randomPosition(position, size, this.fill) ?? position;
|
|
6946
|
-
this.container.particles.addParticle(pPosition, particlesOptions);
|
|
6947
|
-
}
|
|
6948
|
-
};
|
|
6949
7041
|
this._prepareToDie = () => {
|
|
6950
7042
|
if (this._paused) {
|
|
6951
7043
|
return;
|
|
@@ -6980,7 +7072,6 @@ class EmitterInstance {
|
|
|
6980
7072
|
this._spawnDelay = getRangeValue(this.options.life.delay ?? 0) * 1000 / this.container.retina.reduceFactor;
|
|
6981
7073
|
this.position = this._initialPosition ?? this._calcPosition();
|
|
6982
7074
|
this.name = this.options.name;
|
|
6983
|
-
this._shape = this._engine.emitterShapeManager?.getShape(this.options.shape);
|
|
6984
7075
|
this.fill = this.options.fill;
|
|
6985
7076
|
this._firstSpawn = !this.options.life.wait;
|
|
6986
7077
|
this._startParticlesAdded = false;
|
|
@@ -6993,17 +7084,31 @@ class EmitterInstance {
|
|
|
6993
7084
|
}
|
|
6994
7085
|
this._paused = !this.options.autoPlay;
|
|
6995
7086
|
this._particlesOptions = particlesOptions;
|
|
6996
|
-
this.
|
|
6997
|
-
|
|
6998
|
-
size.load({
|
|
6999
|
-
height: 0,
|
|
7000
|
-
mode: "percent",
|
|
7001
|
-
width: 0
|
|
7002
|
-
});
|
|
7003
|
-
return size;
|
|
7004
|
-
})();
|
|
7087
|
+
this._size = this._calcSize();
|
|
7088
|
+
this.size = getSize(this._size, this.container.canvas.size);
|
|
7005
7089
|
this._lifeCount = this.options.life.count ?? -1;
|
|
7006
7090
|
this._immortal = this._lifeCount <= 0;
|
|
7091
|
+
if (this.options.domId) {
|
|
7092
|
+
const element = document.getElementById(this.options.domId);
|
|
7093
|
+
if (element) {
|
|
7094
|
+
this._mutationObserver = new MutationObserver(() => {
|
|
7095
|
+
this.resize();
|
|
7096
|
+
});
|
|
7097
|
+
this._resizeObserver = new ResizeObserver(() => {
|
|
7098
|
+
this.resize();
|
|
7099
|
+
});
|
|
7100
|
+
this._mutationObserver.observe(element, {
|
|
7101
|
+
attributes: true,
|
|
7102
|
+
attributeFilter: ["style", "width", "height"]
|
|
7103
|
+
});
|
|
7104
|
+
this._resizeObserver.observe(element);
|
|
7105
|
+
}
|
|
7106
|
+
}
|
|
7107
|
+
const shapeOptions = this.options.shape,
|
|
7108
|
+
shapeGenerator = this._engine.emitterShapeManager?.getShapeGenerator(shapeOptions.type);
|
|
7109
|
+
if (shapeGenerator) {
|
|
7110
|
+
this._shape = shapeGenerator.generate(this.position, this.size, this.fill, shapeOptions.options);
|
|
7111
|
+
}
|
|
7007
7112
|
this._engine.dispatchEvent("emitterCreated", {
|
|
7008
7113
|
container,
|
|
7009
7114
|
data: {
|
|
@@ -7020,33 +7125,8 @@ class EmitterInstance {
|
|
|
7020
7125
|
this._paused = false;
|
|
7021
7126
|
this.play();
|
|
7022
7127
|
}
|
|
7023
|
-
|
|
7024
|
-
|
|
7025
|
-
const container = this.container,
|
|
7026
|
-
element = document.getElementById(this.options.domId);
|
|
7027
|
-
if (element) {
|
|
7028
|
-
const elRect = element.getBoundingClientRect();
|
|
7029
|
-
return {
|
|
7030
|
-
x: (elRect.x + elRect.width / 2) * container.retina.pixelRatio,
|
|
7031
|
-
y: (elRect.y + elRect.height / 2) * container.retina.pixelRatio
|
|
7032
|
-
};
|
|
7033
|
-
}
|
|
7034
|
-
}
|
|
7035
|
-
return this.position;
|
|
7036
|
-
}
|
|
7037
|
-
getSize() {
|
|
7038
|
-
const container = this.container;
|
|
7039
|
-
if (this.options.domId) {
|
|
7040
|
-
const element = document.getElementById(this.options.domId);
|
|
7041
|
-
if (element) {
|
|
7042
|
-
const elRect = element.getBoundingClientRect();
|
|
7043
|
-
return {
|
|
7044
|
-
width: elRect.width * container.retina.pixelRatio,
|
|
7045
|
-
height: elRect.height * container.retina.pixelRatio
|
|
7046
|
-
};
|
|
7047
|
-
}
|
|
7048
|
-
}
|
|
7049
|
-
return getSize(this.size, container.canvas.size);
|
|
7128
|
+
async init() {
|
|
7129
|
+
await this._shape?.init();
|
|
7050
7130
|
}
|
|
7051
7131
|
pause() {
|
|
7052
7132
|
if (this._paused) {
|
|
@@ -7072,8 +7152,11 @@ class EmitterInstance {
|
|
|
7072
7152
|
resize() {
|
|
7073
7153
|
const initialPosition = this._initialPosition;
|
|
7074
7154
|
this.position = initialPosition && isPointInside(initialPosition, this.container.canvas.size, Vector.origin) ? initialPosition : this._calcPosition();
|
|
7155
|
+
this._size = this._calcSize();
|
|
7156
|
+
this.size = getSize(this._size, this.container.canvas.size);
|
|
7157
|
+
this._shape?.resize(this.position, this.size);
|
|
7075
7158
|
}
|
|
7076
|
-
update(delta) {
|
|
7159
|
+
async update(delta) {
|
|
7077
7160
|
if (this._paused) {
|
|
7078
7161
|
return;
|
|
7079
7162
|
}
|
|
@@ -7084,7 +7167,7 @@ class EmitterInstance {
|
|
|
7084
7167
|
}
|
|
7085
7168
|
if (!this._startParticlesAdded) {
|
|
7086
7169
|
this._startParticlesAdded = true;
|
|
7087
|
-
this._emitParticles(this.options.startCount);
|
|
7170
|
+
await this._emitParticles(this.options.startCount);
|
|
7088
7171
|
}
|
|
7089
7172
|
if (this._duration !== undefined) {
|
|
7090
7173
|
this._currentDuration += delta.value;
|
|
@@ -7125,6 +7208,94 @@ class EmitterInstance {
|
|
|
7125
7208
|
}
|
|
7126
7209
|
}
|
|
7127
7210
|
}
|
|
7211
|
+
_calcPosition() {
|
|
7212
|
+
if (this.options.domId) {
|
|
7213
|
+
const container = this.container,
|
|
7214
|
+
element = document.getElementById(this.options.domId);
|
|
7215
|
+
if (element) {
|
|
7216
|
+
const elRect = element.getBoundingClientRect();
|
|
7217
|
+
return {
|
|
7218
|
+
x: (elRect.x + elRect.width / 2) * container.retina.pixelRatio,
|
|
7219
|
+
y: (elRect.y + elRect.height / 2) * container.retina.pixelRatio
|
|
7220
|
+
};
|
|
7221
|
+
}
|
|
7222
|
+
}
|
|
7223
|
+
return calcPositionOrRandomFromSizeRanged({
|
|
7224
|
+
size: this.container.canvas.size,
|
|
7225
|
+
position: this.options.position
|
|
7226
|
+
});
|
|
7227
|
+
}
|
|
7228
|
+
_calcSize() {
|
|
7229
|
+
const container = this.container;
|
|
7230
|
+
if (this.options.domId) {
|
|
7231
|
+
const element = document.getElementById(this.options.domId);
|
|
7232
|
+
if (element) {
|
|
7233
|
+
const elRect = element.getBoundingClientRect();
|
|
7234
|
+
return {
|
|
7235
|
+
width: elRect.width * container.retina.pixelRatio,
|
|
7236
|
+
height: elRect.height * container.retina.pixelRatio,
|
|
7237
|
+
mode: "precise"
|
|
7238
|
+
};
|
|
7239
|
+
}
|
|
7240
|
+
}
|
|
7241
|
+
return this.options.size ?? (() => {
|
|
7242
|
+
const size = new EmitterSize();
|
|
7243
|
+
size.load({
|
|
7244
|
+
height: 0,
|
|
7245
|
+
mode: "percent",
|
|
7246
|
+
width: 0
|
|
7247
|
+
});
|
|
7248
|
+
return size;
|
|
7249
|
+
})();
|
|
7250
|
+
}
|
|
7251
|
+
async _emit() {
|
|
7252
|
+
if (this._paused) {
|
|
7253
|
+
return;
|
|
7254
|
+
}
|
|
7255
|
+
const quantity = getRangeValue(this.options.rate.quantity);
|
|
7256
|
+
await this._emitParticles(quantity);
|
|
7257
|
+
}
|
|
7258
|
+
async _emitParticles(quantity) {
|
|
7259
|
+
const singleParticlesOptions = itemFromSingleOrMultiple(this._particlesOptions);
|
|
7260
|
+
for (let i = 0; i < quantity; i++) {
|
|
7261
|
+
const particlesOptions = deepExtend({}, singleParticlesOptions);
|
|
7262
|
+
if (this.spawnColor) {
|
|
7263
|
+
const hslAnimation = this.options.spawnColor?.animation;
|
|
7264
|
+
if (hslAnimation) {
|
|
7265
|
+
this.spawnColor.h = this._setColorAnimation(hslAnimation.h, this.spawnColor.h, 360);
|
|
7266
|
+
this.spawnColor.s = this._setColorAnimation(hslAnimation.s, this.spawnColor.s, 100);
|
|
7267
|
+
this.spawnColor.l = this._setColorAnimation(hslAnimation.l, this.spawnColor.l, 100);
|
|
7268
|
+
}
|
|
7269
|
+
setParticlesOptionsColor(particlesOptions, this.spawnColor);
|
|
7270
|
+
}
|
|
7271
|
+
const shapeOptions = this.options.shape;
|
|
7272
|
+
let position = this.position;
|
|
7273
|
+
if (this._shape) {
|
|
7274
|
+
const shapePosData = await this._shape.randomPosition();
|
|
7275
|
+
if (shapePosData) {
|
|
7276
|
+
position = shapePosData.position;
|
|
7277
|
+
const replaceData = shapeOptions.replace;
|
|
7278
|
+
if (replaceData.color && shapePosData.color) {
|
|
7279
|
+
setParticlesOptionsColor(particlesOptions, shapePosData.color);
|
|
7280
|
+
}
|
|
7281
|
+
if (replaceData.opacity) {
|
|
7282
|
+
if (particlesOptions.opacity) {
|
|
7283
|
+
particlesOptions.opacity.value = shapePosData.opacity;
|
|
7284
|
+
} else {
|
|
7285
|
+
particlesOptions.opacity = {
|
|
7286
|
+
value: shapePosData.opacity
|
|
7287
|
+
};
|
|
7288
|
+
}
|
|
7289
|
+
}
|
|
7290
|
+
} else {
|
|
7291
|
+
position = null;
|
|
7292
|
+
}
|
|
7293
|
+
}
|
|
7294
|
+
if (position) {
|
|
7295
|
+
this.container.particles.addParticle(position, particlesOptions);
|
|
7296
|
+
}
|
|
7297
|
+
}
|
|
7298
|
+
}
|
|
7128
7299
|
}
|
|
7129
7300
|
;// CONCATENATED MODULE: ../../plugins/emitters/dist/browser/Emitters.js
|
|
7130
7301
|
|
|
@@ -7144,7 +7315,7 @@ class Emitters {
|
|
|
7144
7315
|
value: []
|
|
7145
7316
|
};
|
|
7146
7317
|
container.getEmitter = idxOrName => idxOrName === undefined || isNumber(idxOrName) ? this.array[idxOrName || 0] : this.array.find(t => t.name === idxOrName);
|
|
7147
|
-
container.addEmitter = (options, position) => this.addEmitter(options, position);
|
|
7318
|
+
container.addEmitter = async (options, position) => this.addEmitter(options, position);
|
|
7148
7319
|
container.removeEmitter = idxOrName => {
|
|
7149
7320
|
const emitter = container.getEmitter(idxOrName);
|
|
7150
7321
|
if (emitter) {
|
|
@@ -7164,10 +7335,11 @@ class Emitters {
|
|
|
7164
7335
|
}
|
|
7165
7336
|
};
|
|
7166
7337
|
}
|
|
7167
|
-
addEmitter(options, position) {
|
|
7338
|
+
async addEmitter(options, position) {
|
|
7168
7339
|
const emitterOptions = new Emitter();
|
|
7169
7340
|
emitterOptions.load(options);
|
|
7170
7341
|
const emitter = new EmitterInstance(this._engine, this, this.container, emitterOptions, position);
|
|
7342
|
+
await emitter.init();
|
|
7171
7343
|
this.array.push(emitter);
|
|
7172
7344
|
return emitter;
|
|
7173
7345
|
}
|
|
@@ -7211,10 +7383,10 @@ class Emitters {
|
|
|
7211
7383
|
}
|
|
7212
7384
|
if (isArray(this.emitters)) {
|
|
7213
7385
|
for (const emitterOptions of this.emitters) {
|
|
7214
|
-
this.addEmitter(emitterOptions);
|
|
7386
|
+
await this.addEmitter(emitterOptions);
|
|
7215
7387
|
}
|
|
7216
7388
|
} else {
|
|
7217
|
-
this.addEmitter(this.emitters);
|
|
7389
|
+
await this.addEmitter(this.emitters);
|
|
7218
7390
|
}
|
|
7219
7391
|
}
|
|
7220
7392
|
pause() {
|
|
@@ -7241,71 +7413,28 @@ class Emitters {
|
|
|
7241
7413
|
stop() {
|
|
7242
7414
|
this.array = [];
|
|
7243
7415
|
}
|
|
7244
|
-
update(delta) {
|
|
7416
|
+
async update(delta) {
|
|
7245
7417
|
for (const emitter of this.array) {
|
|
7246
|
-
emitter.update(delta);
|
|
7418
|
+
await emitter.update(delta);
|
|
7247
7419
|
}
|
|
7248
7420
|
}
|
|
7249
7421
|
}
|
|
7250
7422
|
;// CONCATENATED MODULE: ../../plugins/emitters/dist/browser/ShapeManager.js
|
|
7251
|
-
const
|
|
7423
|
+
const shapeGeneratorss = new Map();
|
|
7252
7424
|
class ShapeManager {
|
|
7253
7425
|
constructor(engine) {
|
|
7254
7426
|
this._engine = engine;
|
|
7255
7427
|
}
|
|
7256
|
-
|
|
7257
|
-
if (!this.
|
|
7258
|
-
|
|
7428
|
+
addShapeGenerator(name, generator) {
|
|
7429
|
+
if (!this.getShapeGenerator(name)) {
|
|
7430
|
+
shapeGeneratorss.set(name, generator);
|
|
7259
7431
|
}
|
|
7260
7432
|
}
|
|
7261
|
-
|
|
7262
|
-
return
|
|
7433
|
+
getShapeGenerator(name) {
|
|
7434
|
+
return shapeGeneratorss.get(name);
|
|
7263
7435
|
}
|
|
7264
|
-
|
|
7265
|
-
return
|
|
7266
|
-
}
|
|
7267
|
-
}
|
|
7268
|
-
;// CONCATENATED MODULE: ../../plugins/emitters/dist/browser/Shapes/Square/SquareShape.js
|
|
7269
|
-
|
|
7270
|
-
function randomSquareCoordinate(position, offset) {
|
|
7271
|
-
return position + offset * (getRandom() - 0.5);
|
|
7272
|
-
}
|
|
7273
|
-
class SquareShape {
|
|
7274
|
-
randomPosition(position, size, fill) {
|
|
7275
|
-
if (fill) {
|
|
7276
|
-
return {
|
|
7277
|
-
x: randomSquareCoordinate(position.x, size.width),
|
|
7278
|
-
y: randomSquareCoordinate(position.y, size.height)
|
|
7279
|
-
};
|
|
7280
|
-
} else {
|
|
7281
|
-
const halfW = size.width / 2,
|
|
7282
|
-
halfH = size.height / 2,
|
|
7283
|
-
side = Math.floor(getRandom() * 4),
|
|
7284
|
-
v = (getRandom() - 0.5) * 2;
|
|
7285
|
-
switch (side) {
|
|
7286
|
-
case 0:
|
|
7287
|
-
return {
|
|
7288
|
-
x: position.x + v * halfW,
|
|
7289
|
-
y: position.y - halfH
|
|
7290
|
-
};
|
|
7291
|
-
case 1:
|
|
7292
|
-
return {
|
|
7293
|
-
x: position.x - halfW,
|
|
7294
|
-
y: position.y + v * halfH
|
|
7295
|
-
};
|
|
7296
|
-
case 2:
|
|
7297
|
-
return {
|
|
7298
|
-
x: position.x + v * halfW,
|
|
7299
|
-
y: position.y + halfH
|
|
7300
|
-
};
|
|
7301
|
-
case 3:
|
|
7302
|
-
default:
|
|
7303
|
-
return {
|
|
7304
|
-
x: position.x + halfW,
|
|
7305
|
-
y: position.y + v * halfH
|
|
7306
|
-
};
|
|
7307
|
-
}
|
|
7308
|
-
}
|
|
7436
|
+
getSupportedShapeGenerators() {
|
|
7437
|
+
return shapeGeneratorss.keys();
|
|
7309
7438
|
}
|
|
7310
7439
|
}
|
|
7311
7440
|
;// CONCATENATED MODULE: ../../plugins/emitters/dist/browser/index.js
|
|
@@ -7313,8 +7442,6 @@ class SquareShape {
|
|
|
7313
7442
|
|
|
7314
7443
|
|
|
7315
7444
|
|
|
7316
|
-
|
|
7317
|
-
|
|
7318
7445
|
class EmittersPlugin {
|
|
7319
7446
|
constructor(engine) {
|
|
7320
7447
|
this._engine = engine;
|
|
@@ -7399,38 +7526,42 @@ async function loadEmittersPlugin(engine, refresh = true) {
|
|
|
7399
7526
|
if (!engine.emitterShapeManager) {
|
|
7400
7527
|
engine.emitterShapeManager = new ShapeManager(engine);
|
|
7401
7528
|
}
|
|
7402
|
-
if (!engine.
|
|
7403
|
-
engine.
|
|
7404
|
-
engine.emitterShapeManager?.
|
|
7529
|
+
if (!engine.addEmitterShapeGenerator) {
|
|
7530
|
+
engine.addEmitterShapeGenerator = (name, generator) => {
|
|
7531
|
+
engine.emitterShapeManager?.addShapeGenerator(name, generator);
|
|
7405
7532
|
};
|
|
7406
7533
|
}
|
|
7407
7534
|
const plugin = new EmittersPlugin(engine);
|
|
7408
7535
|
await engine.addPlugin(plugin, refresh);
|
|
7409
|
-
engine.addEmitterShape("circle", new CircleShape());
|
|
7410
|
-
engine.addEmitterShape("square", new SquareShape());
|
|
7411
7536
|
}
|
|
7412
7537
|
|
|
7413
7538
|
|
|
7414
7539
|
|
|
7415
7540
|
|
|
7541
|
+
|
|
7542
|
+
|
|
7543
|
+
|
|
7416
7544
|
;// CONCATENATED MODULE: ../../shapes/heart/dist/browser/HeartDrawer.js
|
|
7417
7545
|
class HeartDrawer_HeartDrawer {
|
|
7418
7546
|
draw(data) {
|
|
7419
7547
|
const {
|
|
7420
|
-
|
|
7421
|
-
|
|
7422
|
-
|
|
7423
|
-
|
|
7548
|
+
context,
|
|
7549
|
+
radius
|
|
7550
|
+
} = data,
|
|
7551
|
+
diameter = radius * 2,
|
|
7552
|
+
halfRadius = radius * 0.5,
|
|
7553
|
+
radiusAndHalf = radius + halfRadius,
|
|
7554
|
+
x = -radius,
|
|
7424
7555
|
y = -radius;
|
|
7425
7556
|
context.moveTo(x, y + radius / 2);
|
|
7426
|
-
context.quadraticCurveTo(x, y, x +
|
|
7427
|
-
context.quadraticCurveTo(x + radius, y, x + radius, y +
|
|
7428
|
-
context.quadraticCurveTo(x + radius, y, x +
|
|
7429
|
-
context.quadraticCurveTo(x +
|
|
7430
|
-
context.quadraticCurveTo(x +
|
|
7431
|
-
context.lineTo(x + radius, y +
|
|
7432
|
-
context.lineTo(x +
|
|
7433
|
-
context.quadraticCurveTo(x, y + radius, x, y +
|
|
7557
|
+
context.quadraticCurveTo(x, y, x + halfRadius, y);
|
|
7558
|
+
context.quadraticCurveTo(x + radius, y, x + radius, y + halfRadius);
|
|
7559
|
+
context.quadraticCurveTo(x + radius, y, x + radiusAndHalf, y);
|
|
7560
|
+
context.quadraticCurveTo(x + diameter, y, x + diameter, y + halfRadius);
|
|
7561
|
+
context.quadraticCurveTo(x + diameter, y + radius, x + radiusAndHalf, y + radiusAndHalf);
|
|
7562
|
+
context.lineTo(x + radius, y + diameter);
|
|
7563
|
+
context.lineTo(x + halfRadius, y + radiusAndHalf);
|
|
7564
|
+
context.quadraticCurveTo(x, y + radius, x, y + halfRadius);
|
|
7434
7565
|
}
|
|
7435
7566
|
}
|
|
7436
7567
|
;// CONCATENATED MODULE: ../../shapes/heart/dist/browser/index.js
|
|
@@ -8080,8 +8211,9 @@ class ImageDrawer {
|
|
|
8080
8211
|
pos = {
|
|
8081
8212
|
x: -radius,
|
|
8082
8213
|
y: -radius
|
|
8083
|
-
}
|
|
8084
|
-
|
|
8214
|
+
},
|
|
8215
|
+
diameter = radius * 2;
|
|
8216
|
+
context.drawImage(element, pos.x, pos.y, diameter, diameter / ratio);
|
|
8085
8217
|
}
|
|
8086
8218
|
context.globalAlpha = 1;
|
|
8087
8219
|
}
|
|
@@ -8104,8 +8236,11 @@ class ImageDrawer {
|
|
|
8104
8236
|
if (!this._engine.images) {
|
|
8105
8237
|
this._engine.images = [];
|
|
8106
8238
|
}
|
|
8107
|
-
const imageData = particle.shapeData
|
|
8108
|
-
|
|
8239
|
+
const imageData = particle.shapeData;
|
|
8240
|
+
if (!imageData) {
|
|
8241
|
+
return;
|
|
8242
|
+
}
|
|
8243
|
+
const image = this._engine.images.find(t => t.name === imageData.name || t.source === imageData.src);
|
|
8109
8244
|
if (!image) {
|
|
8110
8245
|
this.loadImageShape(imageData).then(() => {
|
|
8111
8246
|
this.loadShape(particle);
|
|
@@ -8120,8 +8255,11 @@ class ImageDrawer {
|
|
|
8120
8255
|
this._engine.images = [];
|
|
8121
8256
|
}
|
|
8122
8257
|
const images = this._engine.images,
|
|
8123
|
-
imageData = particle.shapeData
|
|
8124
|
-
|
|
8258
|
+
imageData = particle.shapeData;
|
|
8259
|
+
if (!imageData) {
|
|
8260
|
+
return;
|
|
8261
|
+
}
|
|
8262
|
+
const color = particle.getFillColor(),
|
|
8125
8263
|
image = images.find(t => t.name === imageData.name || t.source === imageData.src);
|
|
8126
8264
|
if (!image) {
|
|
8127
8265
|
return;
|
|
@@ -8154,16 +8292,16 @@ class ImageDrawer {
|
|
|
8154
8292
|
if (!imageRes.ratio) {
|
|
8155
8293
|
imageRes.ratio = 1;
|
|
8156
8294
|
}
|
|
8157
|
-
const fill = imageData.fill ?? particle.
|
|
8158
|
-
close = imageData.close ?? particle.
|
|
8295
|
+
const fill = imageData.fill ?? particle.shapeFill,
|
|
8296
|
+
close = imageData.close ?? particle.shapeClose,
|
|
8159
8297
|
imageShape = {
|
|
8160
8298
|
image: imageRes,
|
|
8161
8299
|
fill,
|
|
8162
8300
|
close
|
|
8163
8301
|
};
|
|
8164
8302
|
particle.image = imageShape.image;
|
|
8165
|
-
particle.
|
|
8166
|
-
particle.
|
|
8303
|
+
particle.shapeFill = imageShape.fill;
|
|
8304
|
+
particle.shapeClose = imageShape.close;
|
|
8167
8305
|
})();
|
|
8168
8306
|
}
|
|
8169
8307
|
}
|
|
@@ -8296,7 +8434,6 @@ class LifeDelay extends ValueWithRandom {
|
|
|
8296
8434
|
class LifeDuration extends ValueWithRandom {
|
|
8297
8435
|
constructor() {
|
|
8298
8436
|
super();
|
|
8299
|
-
this.random.minimumValue = 0.0001;
|
|
8300
8437
|
this.sync = false;
|
|
8301
8438
|
}
|
|
8302
8439
|
load(data) {
|
|
@@ -8975,8 +9112,23 @@ async function loadStarShape(engine, refresh = true) {
|
|
|
8975
9112
|
}
|
|
8976
9113
|
;// CONCATENATED MODULE: ../../shapes/text/dist/browser/TextDrawer.js
|
|
8977
9114
|
|
|
8978
|
-
const validTypes = ["text", "character", "char"];
|
|
9115
|
+
const validTypes = ["text", "character", "char", "multiline-text"];
|
|
8979
9116
|
class TextDrawer {
|
|
9117
|
+
constructor() {
|
|
9118
|
+
this._drawLine = (context, line, radius, opacity, index, fill) => {
|
|
9119
|
+
const offsetX = line.length * radius / 2,
|
|
9120
|
+
pos = {
|
|
9121
|
+
x: -offsetX,
|
|
9122
|
+
y: radius / 2
|
|
9123
|
+
},
|
|
9124
|
+
diameter = radius * 2;
|
|
9125
|
+
if (fill) {
|
|
9126
|
+
context.fillText(line, pos.x, pos.y + diameter * index);
|
|
9127
|
+
} else {
|
|
9128
|
+
context.strokeText(line, pos.x, pos.y + diameter * index);
|
|
9129
|
+
}
|
|
9130
|
+
};
|
|
9131
|
+
}
|
|
8980
9132
|
draw(data) {
|
|
8981
9133
|
const {
|
|
8982
9134
|
context,
|
|
@@ -8985,7 +9137,7 @@ class TextDrawer {
|
|
|
8985
9137
|
opacity
|
|
8986
9138
|
} = data,
|
|
8987
9139
|
character = particle.shapeData;
|
|
8988
|
-
if (character
|
|
9140
|
+
if (!character) {
|
|
8989
9141
|
return;
|
|
8990
9142
|
}
|
|
8991
9143
|
const textData = character.value;
|
|
@@ -9000,24 +9152,18 @@ class TextDrawer {
|
|
|
9000
9152
|
weight = character.weight ?? "400",
|
|
9001
9153
|
size = Math.round(radius) * 2,
|
|
9002
9154
|
font = character.font ?? "Verdana",
|
|
9003
|
-
fill = particle.
|
|
9004
|
-
|
|
9155
|
+
fill = particle.shapeFill;
|
|
9156
|
+
const lines = text?.split("\n");
|
|
9157
|
+
if (!lines) {
|
|
9158
|
+
return;
|
|
9159
|
+
}
|
|
9005
9160
|
context.font = `${style} ${weight} ${size}px "${font}"`;
|
|
9006
|
-
const pos = {
|
|
9007
|
-
x: -offsetX,
|
|
9008
|
-
y: radius / 2
|
|
9009
|
-
};
|
|
9010
9161
|
context.globalAlpha = opacity;
|
|
9011
|
-
|
|
9012
|
-
|
|
9013
|
-
} else {
|
|
9014
|
-
context.strokeText(text, pos.x, pos.y);
|
|
9162
|
+
for (let i = 0; i < lines.length; i++) {
|
|
9163
|
+
this._drawLine(context, lines[i], radius, opacity, i, fill);
|
|
9015
9164
|
}
|
|
9016
9165
|
context.globalAlpha = 1;
|
|
9017
9166
|
}
|
|
9018
|
-
getSidesCount() {
|
|
9019
|
-
return 12;
|
|
9020
|
-
}
|
|
9021
9167
|
async init(container) {
|
|
9022
9168
|
const options = container.actualOptions;
|
|
9023
9169
|
if (validTypes.find(t => isInArray(t, options.particles.shape.type))) {
|
|
@@ -9529,20 +9675,20 @@ async function setConfetti(params) {
|
|
|
9529
9675
|
}
|
|
9530
9676
|
},
|
|
9531
9677
|
rotate: {
|
|
9532
|
-
value: {
|
|
9678
|
+
value: actualOptions.flat ? 0 : {
|
|
9533
9679
|
min: 0,
|
|
9534
9680
|
max: 360
|
|
9535
9681
|
},
|
|
9536
9682
|
direction: "random",
|
|
9537
9683
|
animation: {
|
|
9538
|
-
enable:
|
|
9684
|
+
enable: actualOptions.flat,
|
|
9539
9685
|
speed: 60
|
|
9540
9686
|
}
|
|
9541
9687
|
},
|
|
9542
9688
|
tilt: {
|
|
9543
9689
|
direction: "random",
|
|
9544
|
-
enable:
|
|
9545
|
-
value: {
|
|
9690
|
+
enable: actualOptions.flat,
|
|
9691
|
+
value: actualOptions.flat ? 0 : {
|
|
9546
9692
|
min: 0,
|
|
9547
9693
|
max: 360
|
|
9548
9694
|
},
|
|
@@ -9556,7 +9702,7 @@ async function setConfetti(params) {
|
|
|
9556
9702
|
enable: true,
|
|
9557
9703
|
value: 25
|
|
9558
9704
|
},
|
|
9559
|
-
enable:
|
|
9705
|
+
enable: actualOptions.flat,
|
|
9560
9706
|
speed: {
|
|
9561
9707
|
min: 15,
|
|
9562
9708
|
max: 25
|
|
@@ -9564,7 +9710,7 @@ async function setConfetti(params) {
|
|
|
9564
9710
|
},
|
|
9565
9711
|
wobble: {
|
|
9566
9712
|
distance: 30,
|
|
9567
|
-
enable:
|
|
9713
|
+
enable: actualOptions.flat,
|
|
9568
9714
|
speed: {
|
|
9569
9715
|
min: -15,
|
|
9570
9716
|
max: 15
|