@tsparticles/updater-out-modes 3.2.2 → 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 +7 -6
- package/browser/DestroyOutMode.js +6 -7
- package/browser/NoneOutMode.js +7 -8
- package/browser/OutOfCanvasUpdater.js +17 -16
- package/browser/OutOutMode.js +10 -11
- package/browser/Utils.js +19 -19
- package/browser/index.js +3 -3
- package/cjs/BounceOutMode.js +8 -30
- package/cjs/DestroyOutMode.js +5 -6
- package/cjs/NoneOutMode.js +6 -7
- package/cjs/OutOfCanvasUpdater.js +21 -43
- package/cjs/OutOutMode.js +9 -10
- package/cjs/Utils.js +18 -18
- package/cjs/index.js +3 -26
- package/esm/BounceOutMode.js +7 -6
- package/esm/DestroyOutMode.js +6 -7
- package/esm/NoneOutMode.js +7 -8
- package/esm/OutOfCanvasUpdater.js +17 -16
- package/esm/OutOutMode.js +10 -11
- 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/types/BounceOutMode.d.ts +1 -1
- package/types/DestroyOutMode.d.ts +1 -1
- package/types/IOutModeManager.d.ts +1 -1
- package/types/NoneOutMode.d.ts +1 -1
- package/types/OutOfCanvasUpdater.d.ts +2 -2
- package/types/OutOutMode.d.ts +1 -1
- package/umd/BounceOutMode.js +9 -32
- package/umd/DestroyOutMode.js +5 -6
- package/umd/NoneOutMode.js +6 -7
- package/umd/OutOfCanvasUpdater.js +22 -45
- package/umd/OutOutMode.js +9 -10
- package/umd/Utils.js +18 -18
- package/umd/index.js +4 -28
- package/103.min.js +0 -2
- package/103.min.js.LICENSE.txt +0 -1
- package/388.min.js +0 -2
- package/388.min.js.LICENSE.txt +0 -1
- package/53.min.js +0 -2
- package/53.min.js.LICENSE.txt +0 -1
- package/569.min.js +0 -2
- package/569.min.js.LICENSE.txt +0 -1
- package/886.min.js +0 -2
- package/886.min.js.LICENSE.txt +0 -1
- package/920.min.js +0 -2
- package/920.min.js.LICENSE.txt +0 -1
- package/dist_browser_BounceOutMode_js.js +0 -30
- package/dist_browser_DestroyOutMode_js.js +0 -30
- package/dist_browser_NoneOutMode_js.js +0 -30
- package/dist_browser_OutOfCanvasUpdater_js.js +0 -30
- package/dist_browser_OutOutMode_js.js +0 -30
- package/dist_browser_Utils_js.js +0 -30
|
@@ -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) 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
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see tsparticles.updater.out-modes.min.js.LICENSE.txt */
|
|
2
|
-
!function(e
|
|
2
|
+
!function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],e);else{var o="object"==typeof exports?e(require("@tsparticles/engine")):e(t.window);for(var i in o)("object"==typeof exports?exports:t)[i]=o[i]}}(this,(t=>(()=>{var e={303:e=>{e.exports=t}},o={};function i(t){var n=o[t];if(void 0!==n)return n.exports;var s=o[t]={exports:{}};return e[t](s,s.exports,i),s.exports}i.d=(t,e)=>{for(var o in e)i.o(e,o)&&!i.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),i.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};return(()=>{i.r(n),i.d(n,{loadOutModesUpdater:()=>d});var t=i(303);class e{constructor(e){this.container=e,this.modes=[t.OutMode.bounce,t.OutMode.split]}update(e,o,i,n){if(!this.modes.includes(n))return;const s=this.container;let r=!1;for(const[,t]of s.plugins)if(void 0!==t.particleBounce&&(r=t.particleBounce(e,i,o)),r)break;if(r)return;const a=e.getPosition(),c=e.offset,d=e.getRadius(),u=(0,t.calculateBounds)(a,d),p=s.canvas.size;!function(e){if(e.outMode!==t.OutMode.bounce&&e.outMode!==t.OutMode.split||e.direction!==t.OutModeDirection.left&&e.direction!==t.OutModeDirection.right)return;e.bounds.right<0&&e.direction===t.OutModeDirection.left?e.particle.position.x=e.size+e.offset.x:e.bounds.left>e.canvasSize.width&&e.direction===t.OutModeDirection.right&&(e.particle.position.x=e.canvasSize.width-e.size-e.offset.x);const o=e.particle.velocity.x;let i=!1;if(e.direction===t.OutModeDirection.right&&e.bounds.right>=e.canvasSize.width&&o>0||e.direction===t.OutModeDirection.left&&e.bounds.left<=0&&o<0){const o=(0,t.getRangeValue)(e.particle.options.bounce.horizontal.value);e.particle.velocity.x*=-o,i=!0}if(!i)return;const n=e.offset.x+e.size;e.bounds.right>=e.canvasSize.width&&e.direction===t.OutModeDirection.right?e.particle.position.x=e.canvasSize.width-n:e.bounds.left<=0&&e.direction===t.OutModeDirection.left&&(e.particle.position.x=n),e.outMode===t.OutMode.split&&e.particle.destroy()}({particle:e,outMode:n,direction:o,bounds:u,canvasSize:p,offset:c,size:d}),function(e){if(e.outMode!==t.OutMode.bounce&&e.outMode!==t.OutMode.split||e.direction!==t.OutModeDirection.bottom&&e.direction!==t.OutModeDirection.top)return;e.bounds.bottom<0&&e.direction===t.OutModeDirection.top?e.particle.position.y=e.size+e.offset.y:e.bounds.top>e.canvasSize.height&&e.direction===t.OutModeDirection.bottom&&(e.particle.position.y=e.canvasSize.height-e.size-e.offset.y);const o=e.particle.velocity.y;let i=!1;if(e.direction===t.OutModeDirection.bottom&&e.bounds.bottom>=e.canvasSize.height&&o>0||e.direction===t.OutModeDirection.top&&e.bounds.top<=0&&o<0){const o=(0,t.getRangeValue)(e.particle.options.bounce.vertical.value);e.particle.velocity.y*=-o,i=!0}if(!i)return;const n=e.offset.y+e.size;e.bounds.bottom>=e.canvasSize.height&&e.direction===t.OutModeDirection.bottom?e.particle.position.y=e.canvasSize.height-n:e.bounds.top<=0&&e.direction===t.OutModeDirection.top&&(e.particle.position.y=n),e.outMode===t.OutMode.split&&e.particle.destroy()}({particle:e,outMode:n,direction:o,bounds:u,canvasSize:p,offset:c,size:d})}}class o{constructor(e){this.container=e,this.modes=[t.OutMode.destroy]}update(e,o,i,n){if(!this.modes.includes(n))return;const s=this.container;switch(e.outType){case t.ParticleOutType.normal:case t.ParticleOutType.outside:if((0,t.isPointInside)(e.position,s.canvas.size,t.Vector.origin,e.getRadius(),o))return;break;case t.ParticleOutType.inside:{const{dx:o,dy:i}=(0,t.getDistances)(e.position,e.moveCenter),{x:n,y:s}=e.velocity;if(n<0&&o>e.moveCenter.radius||s<0&&i>e.moveCenter.radius||n>=0&&o<-e.moveCenter.radius||s>=0&&i<-e.moveCenter.radius)return;break}}s.particles.remove(e,void 0,!0)}}class s{constructor(e){this.container=e,this.modes=[t.OutMode.none]}update(e,o,i,n){if(!this.modes.includes(n))return;if((e.options.move.distance.horizontal&&(o===t.OutModeDirection.left||o===t.OutModeDirection.right))??(e.options.move.distance.vertical&&(o===t.OutModeDirection.top||o===t.OutModeDirection.bottom)))return;const s=e.options.move.gravity,r=this.container,a=r.canvas.size,c=e.getRadius();if(s.enable){const i=e.position;(!s.inverse&&i.y>a.height+c&&o===t.OutModeDirection.bottom||s.inverse&&i.y<-c&&o===t.OutModeDirection.top)&&r.particles.remove(e)}else{if(e.velocity.y>0&&e.position.y<=a.height+c||e.velocity.y<0&&e.position.y>=-c||e.velocity.x>0&&e.position.x<=a.width+c||e.velocity.x<0&&e.position.x>=-c)return;(0,t.isPointInside)(e.position,r.canvas.size,t.Vector.origin,c,o)||r.particles.remove(e)}}}class r{constructor(e){this.container=e,this.modes=[t.OutMode.out]}update(e,o,i,n){if(!this.modes.includes(n))return;const s=this.container;switch(e.outType){case t.ParticleOutType.inside:{const{x:o,y:i}=e.velocity,n=t.Vector.origin;n.length=e.moveCenter.radius,n.angle=e.velocity.angle+Math.PI,n.addTo(t.Vector.create(e.moveCenter));const{dx:r,dy:a}=(0,t.getDistances)(e.position,n);if(o<=0&&r>=0||i<=0&&a>=0||o>=0&&r<=0||i>=0&&a<=0)return;e.position.x=Math.floor((0,t.randomInRange)({min:0,max:s.canvas.size.width})),e.position.y=Math.floor((0,t.randomInRange)({min:0,max:s.canvas.size.height}));const{dx:c,dy:d}=(0,t.getDistances)(e.position,e.moveCenter);e.direction=Math.atan2(-d,-c),e.velocity.angle=e.direction;break}default:if((0,t.isPointInside)(e.position,s.canvas.size,t.Vector.origin,e.getRadius(),o))return;switch(e.outType){case t.ParticleOutType.outside:{e.position.x=Math.floor((0,t.randomInRange)({min:-e.moveCenter.radius,max:e.moveCenter.radius}))+e.moveCenter.x,e.position.y=Math.floor((0,t.randomInRange)({min:-e.moveCenter.radius,max:e.moveCenter.radius}))+e.moveCenter.y;const{dx:o,dy:i}=(0,t.getDistances)(e.position,e.moveCenter);e.moveCenter.radius&&(e.direction=Math.atan2(i,o),e.velocity.angle=e.direction);break}case t.ParticleOutType.normal:{const i=e.options.move.warp,n=s.canvas.size,r={bottom:n.height+e.getRadius()+e.offset.y,left:-e.getRadius()-e.offset.x,right:n.width+e.getRadius()+e.offset.x,top:-e.getRadius()-e.offset.y},a=e.getRadius(),c=(0,t.calculateBounds)(e.position,a);o===t.OutModeDirection.right&&c.left>n.width+e.offset.x?(e.position.x=r.left,e.initialPosition.x=e.position.x,i||(e.position.y=(0,t.getRandom)()*n.height,e.initialPosition.y=e.position.y)):o===t.OutModeDirection.left&&c.right<-e.offset.x&&(e.position.x=r.right,e.initialPosition.x=e.position.x,i||(e.position.y=(0,t.getRandom)()*n.height,e.initialPosition.y=e.position.y)),o===t.OutModeDirection.bottom&&c.top>n.height+e.offset.y?(i||(e.position.x=(0,t.getRandom)()*n.width,e.initialPosition.x=e.position.x),e.position.y=r.top,e.initialPosition.y=e.position.y):o===t.OutModeDirection.top&&c.bottom<-e.offset.y&&(i||(e.position.x=(0,t.getRandom)()*n.width,e.initialPosition.x=e.position.x),e.position.y=r.bottom,e.initialPosition.y=e.position.y);break}}}}}const a=(t,e)=>t.default===e||t.bottom===e||t.left===e||t.right===e||t.top===e;class c{constructor(t){this._updateOutMode=(t,e,o,i)=>{for(const n of this.updaters)n.update(t,i,e,o)},this.container=t,this.updaters=[]}init(i){this.updaters=[];const n=i.options.move.outModes;a(n,t.OutMode.bounce)?this.updaters.push(new e(this.container)):a(n,t.OutMode.out)?this.updaters.push(new r(this.container)):a(n,t.OutMode.destroy)?this.updaters.push(new o(this.container)):a(n,t.OutMode.none)&&this.updaters.push(new s(this.container))}isEnabled(t){return!t.destroyed&&!t.spawning}update(e,o){const i=e.options.move.outModes;this._updateOutMode(e,o,i.bottom??i.default,t.OutModeDirection.bottom),this._updateOutMode(e,o,i.left??i.default,t.OutModeDirection.left),this._updateOutMode(e,o,i.right??i.default,t.OutModeDirection.right),this._updateOutMode(e,o,i.top??i.default,t.OutModeDirection.top)}}async function d(t,e=!0){await t.addParticleUpdater("outModes",(t=>Promise.resolve(new c(t))),e)}})(),n})()));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles Out Modes Updater v3.
|
|
1
|
+
/*! tsParticles Out Modes Updater v3.4.0 by Matteo Bruni */
|
package/types/BounceOutMode.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ export declare class BounceOutMode implements IOutModeManager {
|
|
|
4
4
|
private readonly container;
|
|
5
5
|
modes: (OutMode | keyof typeof OutMode)[];
|
|
6
6
|
constructor(container: Container);
|
|
7
|
-
update(particle: Particle, direction: OutModeDirection, delta: IDelta, outMode: OutMode | keyof typeof OutMode):
|
|
7
|
+
update(particle: Particle, direction: OutModeDirection, delta: IDelta, outMode: OutMode | keyof typeof OutMode): void;
|
|
8
8
|
}
|
|
@@ -4,5 +4,5 @@ export declare class DestroyOutMode implements IOutModeManager {
|
|
|
4
4
|
private readonly container;
|
|
5
5
|
modes: (OutMode | keyof typeof OutMode)[];
|
|
6
6
|
constructor(container: Container);
|
|
7
|
-
update(particle: Particle, direction: OutModeDirection, _delta: IDelta, outMode: OutMode | keyof typeof OutMode):
|
|
7
|
+
update(particle: Particle, direction: OutModeDirection, _delta: IDelta, outMode: OutMode | keyof typeof OutMode): void;
|
|
8
8
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IDelta, OutMode, OutModeDirection, Particle } from "@tsparticles/engine";
|
|
2
2
|
export interface IOutModeManager {
|
|
3
3
|
modes: (OutMode | keyof typeof OutMode)[];
|
|
4
|
-
update(particle: Particle, direction: OutModeDirection, delta: IDelta, outMode: OutMode | keyof typeof OutMode):
|
|
4
|
+
update(particle: Particle, direction: OutModeDirection, delta: IDelta, outMode: OutMode | keyof typeof OutMode): void;
|
|
5
5
|
}
|
package/types/NoneOutMode.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ export declare class NoneOutMode implements IOutModeManager {
|
|
|
4
4
|
private readonly container;
|
|
5
5
|
modes: (OutMode | keyof typeof OutMode)[];
|
|
6
6
|
constructor(container: Container);
|
|
7
|
-
update(particle: Particle, direction: OutModeDirection, delta: IDelta, outMode: OutMode | keyof typeof OutMode):
|
|
7
|
+
update(particle: Particle, direction: OutModeDirection, delta: IDelta, outMode: OutMode | keyof typeof OutMode): void;
|
|
8
8
|
}
|
|
@@ -4,8 +4,8 @@ export declare class OutOfCanvasUpdater implements IParticleUpdater {
|
|
|
4
4
|
updaters: IOutModeManager[];
|
|
5
5
|
private readonly container;
|
|
6
6
|
constructor(container: Container);
|
|
7
|
-
init(particle: Particle):
|
|
7
|
+
init(particle: Particle): void;
|
|
8
8
|
isEnabled(particle: Particle): boolean;
|
|
9
|
-
update(particle: Particle, delta: IDelta):
|
|
9
|
+
update(particle: Particle, delta: IDelta): void;
|
|
10
10
|
private readonly _updateOutMode;
|
|
11
11
|
}
|
package/types/OutOutMode.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ export declare class OutOutMode implements IOutModeManager {
|
|
|
4
4
|
private readonly container;
|
|
5
5
|
modes: (OutMode | keyof typeof OutMode)[];
|
|
6
6
|
constructor(container: Container);
|
|
7
|
-
update(particle: Particle, direction: OutModeDirection, delta: IDelta, outMode: OutMode | keyof typeof OutMode):
|
|
7
|
+
update(particle: Particle, direction: OutModeDirection, delta: IDelta, outMode: OutMode | keyof typeof OutMode): void;
|
|
8
8
|
}
|
package/umd/BounceOutMode.js
CHANGED
|
@@ -1,49 +1,26 @@
|
|
|
1
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
2
|
-
if (k2 === undefined) k2 = k;
|
|
3
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
4
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
5
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
6
|
-
}
|
|
7
|
-
Object.defineProperty(o, k2, desc);
|
|
8
|
-
}) : (function(o, m, k, k2) {
|
|
9
|
-
if (k2 === undefined) k2 = k;
|
|
10
|
-
o[k2] = m[k];
|
|
11
|
-
}));
|
|
12
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
13
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
14
|
-
}) : function(o, v) {
|
|
15
|
-
o["default"] = v;
|
|
16
|
-
});
|
|
17
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
18
|
-
if (mod && mod.__esModule) return mod;
|
|
19
|
-
var result = {};
|
|
20
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
21
|
-
__setModuleDefault(result, mod);
|
|
22
|
-
return result;
|
|
23
|
-
};
|
|
24
1
|
(function (factory) {
|
|
25
2
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
26
3
|
var v = factory(require, exports);
|
|
27
4
|
if (v !== undefined) module.exports = v;
|
|
28
5
|
}
|
|
29
6
|
else if (typeof define === "function" && define.amd) {
|
|
30
|
-
define(["require", "exports", "@tsparticles/engine"], factory);
|
|
7
|
+
define(["require", "exports", "@tsparticles/engine", "./Utils.js"], factory);
|
|
31
8
|
}
|
|
32
9
|
})(function (require, exports) {
|
|
33
10
|
"use strict";
|
|
34
|
-
var __syncRequire = typeof module === "object" && typeof module.exports === "object";
|
|
35
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
12
|
exports.BounceOutMode = void 0;
|
|
37
13
|
const engine_1 = require("@tsparticles/engine");
|
|
14
|
+
const Utils_js_1 = require("./Utils.js");
|
|
38
15
|
class BounceOutMode {
|
|
39
16
|
constructor(container) {
|
|
40
17
|
this.container = container;
|
|
41
18
|
this.modes = [
|
|
42
|
-
|
|
43
|
-
|
|
19
|
+
engine_1.OutMode.bounce,
|
|
20
|
+
engine_1.OutMode.split,
|
|
44
21
|
];
|
|
45
22
|
}
|
|
46
|
-
|
|
23
|
+
update(particle, direction, delta, outMode) {
|
|
47
24
|
if (!this.modes.includes(outMode)) {
|
|
48
25
|
return;
|
|
49
26
|
}
|
|
@@ -51,7 +28,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
51
28
|
let handled = false;
|
|
52
29
|
for (const [, plugin] of container.plugins) {
|
|
53
30
|
if (plugin.particleBounce !== undefined) {
|
|
54
|
-
handled =
|
|
31
|
+
handled = plugin.particleBounce(particle, delta, direction);
|
|
55
32
|
}
|
|
56
33
|
if (handled) {
|
|
57
34
|
break;
|
|
@@ -60,9 +37,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
60
37
|
if (handled) {
|
|
61
38
|
return;
|
|
62
39
|
}
|
|
63
|
-
const pos = particle.getPosition(), offset = particle.offset, size = particle.getRadius(), bounds = (0, engine_1.calculateBounds)(pos, size), canvasSize = container.canvas.size
|
|
64
|
-
bounceHorizontal({ particle, outMode, direction, bounds, canvasSize, offset, size });
|
|
65
|
-
bounceVertical({ particle, outMode, direction, bounds, canvasSize, offset, size });
|
|
40
|
+
const pos = particle.getPosition(), offset = particle.offset, size = particle.getRadius(), bounds = (0, engine_1.calculateBounds)(pos, size), canvasSize = container.canvas.size;
|
|
41
|
+
(0, Utils_js_1.bounceHorizontal)({ particle, outMode, direction, bounds, canvasSize, offset, size });
|
|
42
|
+
(0, Utils_js_1.bounceVertical)({ particle, outMode, direction, bounds, canvasSize, offset, size });
|
|
66
43
|
}
|
|
67
44
|
}
|
|
68
45
|
exports.BounceOutMode = BounceOutMode;
|
package/umd/DestroyOutMode.js
CHANGED
|
@@ -15,21 +15,21 @@
|
|
|
15
15
|
class DestroyOutMode {
|
|
16
16
|
constructor(container) {
|
|
17
17
|
this.container = container;
|
|
18
|
-
this.modes = [
|
|
18
|
+
this.modes = [engine_1.OutMode.destroy];
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
update(particle, direction, _delta, outMode) {
|
|
21
21
|
if (!this.modes.includes(outMode)) {
|
|
22
22
|
return;
|
|
23
23
|
}
|
|
24
24
|
const container = this.container;
|
|
25
25
|
switch (particle.outType) {
|
|
26
|
-
case
|
|
27
|
-
case
|
|
26
|
+
case engine_1.ParticleOutType.normal:
|
|
27
|
+
case engine_1.ParticleOutType.outside:
|
|
28
28
|
if ((0, engine_1.isPointInside)(particle.position, container.canvas.size, engine_1.Vector.origin, particle.getRadius(), direction)) {
|
|
29
29
|
return;
|
|
30
30
|
}
|
|
31
31
|
break;
|
|
32
|
-
case
|
|
32
|
+
case engine_1.ParticleOutType.inside: {
|
|
33
33
|
const { dx, dy } = (0, engine_1.getDistances)(particle.position, particle.moveCenter), { x: vx, y: vy } = particle.velocity;
|
|
34
34
|
if ((vx < minVelocity && dx > particle.moveCenter.radius) ||
|
|
35
35
|
(vy < minVelocity && dy > particle.moveCenter.radius) ||
|
|
@@ -41,7 +41,6 @@
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
container.particles.remove(particle, undefined, true);
|
|
44
|
-
await Promise.resolve();
|
|
45
44
|
}
|
|
46
45
|
}
|
|
47
46
|
exports.DestroyOutMode = DestroyOutMode;
|
package/umd/NoneOutMode.js
CHANGED
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
class NoneOutMode {
|
|
16
16
|
constructor(container) {
|
|
17
17
|
this.container = container;
|
|
18
|
-
this.modes = [
|
|
18
|
+
this.modes = [engine_1.OutMode.none];
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
update(particle, direction, delta, outMode) {
|
|
21
21
|
if (!this.modes.includes(outMode)) {
|
|
22
22
|
return;
|
|
23
23
|
}
|
|
24
24
|
if ((particle.options.move.distance.horizontal &&
|
|
25
|
-
(direction ===
|
|
25
|
+
(direction === engine_1.OutModeDirection.left || direction === engine_1.OutModeDirection.right)) ??
|
|
26
26
|
(particle.options.move.distance.vertical &&
|
|
27
|
-
(direction ===
|
|
27
|
+
(direction === engine_1.OutModeDirection.top || direction === engine_1.OutModeDirection.bottom))) {
|
|
28
28
|
return;
|
|
29
29
|
}
|
|
30
30
|
const gravityOptions = particle.options.move.gravity, container = this.container, canvasSize = container.canvas.size, pRadius = particle.getRadius();
|
|
@@ -43,12 +43,11 @@
|
|
|
43
43
|
const position = particle.position;
|
|
44
44
|
if ((!gravityOptions.inverse &&
|
|
45
45
|
position.y > canvasSize.height + pRadius &&
|
|
46
|
-
direction ===
|
|
47
|
-
(gravityOptions.inverse && position.y < -pRadius && direction ===
|
|
46
|
+
direction === engine_1.OutModeDirection.bottom) ||
|
|
47
|
+
(gravityOptions.inverse && position.y < -pRadius && direction === engine_1.OutModeDirection.top)) {
|
|
48
48
|
container.particles.remove(particle);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
|
-
await Promise.resolve();
|
|
52
51
|
}
|
|
53
52
|
}
|
|
54
53
|
exports.NoneOutMode = NoneOutMode;
|