@tsparticles/path-svg 3.7.0 → 3.8.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/SVGPathGenerator.js +3 -3
- package/browser/index.js +1 -2
- package/cjs/SVGPathGenerator.js +7 -7
- package/cjs/index.js +1 -2
- package/esm/SVGPathGenerator.js +3 -3
- package/esm/index.js +1 -2
- package/package.json +2 -2
- package/report.html +1 -1
- package/tsparticles.path.svg.js +3 -3
- package/tsparticles.path.svg.min.js +1 -1
- package/tsparticles.path.svg.min.js.LICENSE.txt +1 -1
- package/umd/SVGPathGenerator.js +7 -7
- package/umd/index.js +2 -3
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { PixelMode, Vector, getPosition, getRandom,
|
|
1
|
+
import { PixelMode, Vector, getPosition, getRandom, half, randomInRange, } from "@tsparticles/engine";
|
|
2
2
|
var SVGPathDirection;
|
|
3
3
|
(function (SVGPathDirection) {
|
|
4
4
|
SVGPathDirection[SVGPathDirection["normal"] = 0] = "normal";
|
|
5
5
|
SVGPathDirection[SVGPathDirection["reverse"] = 1] = "reverse";
|
|
6
6
|
})(SVGPathDirection || (SVGPathDirection = {}));
|
|
7
|
-
const defaultSpeed = 1,
|
|
7
|
+
const defaultSpeed = 1, minStep = 0, minIndex = 0, minWidth = 0, minScale = 1;
|
|
8
8
|
export class SVGPathGenerator {
|
|
9
9
|
constructor() {
|
|
10
10
|
this._paths = [];
|
|
@@ -17,7 +17,7 @@ export class SVGPathGenerator {
|
|
|
17
17
|
generate(particle, delta) {
|
|
18
18
|
const container = particle.container, pxRatio = container.retina.pixelRatio;
|
|
19
19
|
if (particle.svgDirection === undefined) {
|
|
20
|
-
particle.svgDirection = getRandom() >
|
|
20
|
+
particle.svgDirection = getRandom() > half ? SVGPathDirection.normal : SVGPathDirection.reverse;
|
|
21
21
|
}
|
|
22
22
|
if (particle.svgPathIndex === undefined) {
|
|
23
23
|
particle.svgPathIndex = Math.floor(Math.random() * this._paths.length);
|
package/browser/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { assertValidVersion } from "@tsparticles/engine";
|
|
2
1
|
import { SVGPathGenerator } from "./SVGPathGenerator.js";
|
|
3
2
|
export const svgPathName = "svgPathGenerator";
|
|
4
3
|
export async function loadSVGPath(engine, refresh = true) {
|
|
5
|
-
|
|
4
|
+
engine.checkVersion("3.8.0");
|
|
6
5
|
await engine.addPathGenerator(svgPathName, new SVGPathGenerator(), refresh);
|
|
7
6
|
}
|
package/cjs/SVGPathGenerator.js
CHANGED
|
@@ -7,7 +7,7 @@ var SVGPathDirection;
|
|
|
7
7
|
SVGPathDirection[SVGPathDirection["normal"] = 0] = "normal";
|
|
8
8
|
SVGPathDirection[SVGPathDirection["reverse"] = 1] = "reverse";
|
|
9
9
|
})(SVGPathDirection || (SVGPathDirection = {}));
|
|
10
|
-
const defaultSpeed = 1,
|
|
10
|
+
const defaultSpeed = 1, minStep = 0, minIndex = 0, minWidth = 0, minScale = 1;
|
|
11
11
|
class SVGPathGenerator {
|
|
12
12
|
constructor() {
|
|
13
13
|
this._paths = [];
|
|
@@ -20,21 +20,21 @@ class SVGPathGenerator {
|
|
|
20
20
|
generate(particle, delta) {
|
|
21
21
|
const container = particle.container, pxRatio = container.retina.pixelRatio;
|
|
22
22
|
if (particle.svgDirection === undefined) {
|
|
23
|
-
particle.svgDirection = (0, engine_1.getRandom)() > engine_1.
|
|
23
|
+
particle.svgDirection = (0, engine_1.getRandom)() > engine_1.half ? SVGPathDirection.normal : SVGPathDirection.reverse;
|
|
24
24
|
}
|
|
25
25
|
if (particle.svgPathIndex === undefined) {
|
|
26
26
|
particle.svgPathIndex = Math.floor(Math.random() * this._paths.length);
|
|
27
27
|
}
|
|
28
28
|
if (particle.svgSpeed === undefined) {
|
|
29
|
-
particle.svgSpeed = particle.velocity.mult((particle.retina.moveSpeed ?? defaultSpeed) * half).length;
|
|
29
|
+
particle.svgSpeed = particle.velocity.mult((particle.retina.moveSpeed ?? defaultSpeed) * engine_1.half).length;
|
|
30
30
|
}
|
|
31
31
|
if (particle.svgStep === undefined) {
|
|
32
32
|
particle.svgStep = (0, engine_1.randomInRange)({ min: 0, max: this._paths[particle.svgPathIndex].length }) * pxRatio;
|
|
33
33
|
}
|
|
34
34
|
if (particle.svgOffset === undefined) {
|
|
35
35
|
particle.svgOffset = {
|
|
36
|
-
width: (0, engine_1.randomInRange)({ min: -this._width * half, max: this._width * half }) * pxRatio,
|
|
37
|
-
height: (0, engine_1.randomInRange)({ min: -this._width * half, max: this._width * half }) * pxRatio,
|
|
36
|
+
width: (0, engine_1.randomInRange)({ min: -this._width * engine_1.half, max: this._width * engine_1.half }) * pxRatio,
|
|
37
|
+
height: (0, engine_1.randomInRange)({ min: -this._width * engine_1.half, max: this._width * engine_1.half }) * pxRatio,
|
|
38
38
|
};
|
|
39
39
|
}
|
|
40
40
|
if (particle.svgInitialPosition === undefined) {
|
|
@@ -83,12 +83,12 @@ class SVGPathGenerator {
|
|
|
83
83
|
if (path) {
|
|
84
84
|
const pathElement = path.element, pos = pathElement.getPointAtLength(particle.svgStep), canvasSize = particle.container.canvas.size, offset = (0, engine_1.getPosition)(this._offset, canvasSize), scale = this._scale * pxRatio;
|
|
85
85
|
particle.position.x =
|
|
86
|
-
(pos.x - this._size.width * half) * scale +
|
|
86
|
+
(pos.x - this._size.width * engine_1.half) * scale +
|
|
87
87
|
particle.svgInitialPosition.x +
|
|
88
88
|
offset.x +
|
|
89
89
|
particle.svgOffset.width;
|
|
90
90
|
particle.position.y =
|
|
91
|
-
(pos.y - this._size.height * half) * scale +
|
|
91
|
+
(pos.y - this._size.height * engine_1.half) * scale +
|
|
92
92
|
particle.svgInitialPosition.y +
|
|
93
93
|
offset.y +
|
|
94
94
|
particle.svgOffset.height;
|
package/cjs/index.js
CHANGED
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.svgPathName = void 0;
|
|
4
4
|
exports.loadSVGPath = loadSVGPath;
|
|
5
|
-
const engine_1 = require("@tsparticles/engine");
|
|
6
5
|
const SVGPathGenerator_js_1 = require("./SVGPathGenerator.js");
|
|
7
6
|
exports.svgPathName = "svgPathGenerator";
|
|
8
7
|
async function loadSVGPath(engine, refresh = true) {
|
|
9
|
-
|
|
8
|
+
engine.checkVersion("3.8.0");
|
|
10
9
|
await engine.addPathGenerator(exports.svgPathName, new SVGPathGenerator_js_1.SVGPathGenerator(), refresh);
|
|
11
10
|
}
|
package/esm/SVGPathGenerator.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { PixelMode, Vector, getPosition, getRandom,
|
|
1
|
+
import { PixelMode, Vector, getPosition, getRandom, half, randomInRange, } from "@tsparticles/engine";
|
|
2
2
|
var SVGPathDirection;
|
|
3
3
|
(function (SVGPathDirection) {
|
|
4
4
|
SVGPathDirection[SVGPathDirection["normal"] = 0] = "normal";
|
|
5
5
|
SVGPathDirection[SVGPathDirection["reverse"] = 1] = "reverse";
|
|
6
6
|
})(SVGPathDirection || (SVGPathDirection = {}));
|
|
7
|
-
const defaultSpeed = 1,
|
|
7
|
+
const defaultSpeed = 1, minStep = 0, minIndex = 0, minWidth = 0, minScale = 1;
|
|
8
8
|
export class SVGPathGenerator {
|
|
9
9
|
constructor() {
|
|
10
10
|
this._paths = [];
|
|
@@ -17,7 +17,7 @@ export class SVGPathGenerator {
|
|
|
17
17
|
generate(particle, delta) {
|
|
18
18
|
const container = particle.container, pxRatio = container.retina.pixelRatio;
|
|
19
19
|
if (particle.svgDirection === undefined) {
|
|
20
|
-
particle.svgDirection = getRandom() >
|
|
20
|
+
particle.svgDirection = getRandom() > half ? SVGPathDirection.normal : SVGPathDirection.reverse;
|
|
21
21
|
}
|
|
22
22
|
if (particle.svgPathIndex === undefined) {
|
|
23
23
|
particle.svgPathIndex = Math.floor(Math.random() * this._paths.length);
|
package/esm/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { assertValidVersion } from "@tsparticles/engine";
|
|
2
1
|
import { SVGPathGenerator } from "./SVGPathGenerator.js";
|
|
3
2
|
export const svgPathName = "svgPathGenerator";
|
|
4
3
|
export async function loadSVGPath(engine, refresh = true) {
|
|
5
|
-
|
|
4
|
+
engine.checkVersion("3.8.0");
|
|
6
5
|
await engine.addPathGenerator(svgPathName, new SVGPathGenerator(), refresh);
|
|
7
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/path-svg",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0",
|
|
4
4
|
"description": "tsParticles svg path",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"./package.json": "./package.json"
|
|
102
102
|
},
|
|
103
103
|
"dependencies": {
|
|
104
|
-
"@tsparticles/engine": "3.
|
|
104
|
+
"@tsparticles/engine": "3.8.0"
|
|
105
105
|
},
|
|
106
106
|
"publishConfig": {
|
|
107
107
|
"access": "public"
|
package/report.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>@tsparticles/path-svg [
|
|
6
|
+
<title>@tsparticles/path-svg [23 Jan 2025 at 08:59]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|
package/tsparticles.path.svg.js
CHANGED
|
@@ -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.8.0
|
|
8
8
|
*/
|
|
9
9
|
/*
|
|
10
10
|
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
@@ -34,7 +34,7 @@ return /******/ (() => { // webpackBootstrap
|
|
|
34
34
|
\******************************************/
|
|
35
35
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
36
36
|
|
|
37
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ SVGPathGenerator: () => (/* binding */ SVGPathGenerator)\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\nvar SVGPathDirection;\n(function (SVGPathDirection) {\n SVGPathDirection[SVGPathDirection[\"normal\"] = 0] = \"normal\";\n SVGPathDirection[SVGPathDirection[\"reverse\"] = 1] = \"reverse\";\n})(SVGPathDirection || (SVGPathDirection = {}));\nconst defaultSpeed = 1,\n
|
|
37
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ SVGPathGenerator: () => (/* binding */ SVGPathGenerator)\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\nvar SVGPathDirection;\n(function (SVGPathDirection) {\n SVGPathDirection[SVGPathDirection[\"normal\"] = 0] = \"normal\";\n SVGPathDirection[SVGPathDirection[\"reverse\"] = 1] = \"reverse\";\n})(SVGPathDirection || (SVGPathDirection = {}));\nconst defaultSpeed = 1,\n minStep = 0,\n minIndex = 0,\n minWidth = 0,\n minScale = 1;\nclass SVGPathGenerator {\n constructor() {\n this._paths = [];\n this._reverse = false;\n this._size = {\n width: 0,\n height: 0\n };\n this._scale = 1;\n this._offset = {\n x: 0,\n y: 0,\n mode: _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.PixelMode.percent\n };\n this._width = 0;\n }\n generate(particle, delta) {\n const container = particle.container,\n pxRatio = container.retina.pixelRatio;\n if (particle.svgDirection === undefined) {\n particle.svgDirection = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() > _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half ? SVGPathDirection.normal : SVGPathDirection.reverse;\n }\n if (particle.svgPathIndex === undefined) {\n particle.svgPathIndex = Math.floor(Math.random() * this._paths.length);\n }\n if (particle.svgSpeed === undefined) {\n particle.svgSpeed = particle.velocity.mult((particle.retina.moveSpeed ?? defaultSpeed) * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half).length;\n }\n if (particle.svgStep === undefined) {\n particle.svgStep = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: 0,\n max: this._paths[particle.svgPathIndex].length\n }) * pxRatio;\n }\n if (particle.svgOffset === undefined) {\n particle.svgOffset = {\n width: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: -this._width * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half,\n max: this._width * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half\n }) * pxRatio,\n height: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: -this._width * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half,\n max: this._width * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half\n }) * pxRatio\n };\n }\n if (particle.svgInitialPosition === undefined) {\n particle.svgInitialPosition = {\n ...particle.position\n };\n }\n particle.velocity.x = 0;\n particle.velocity.y = 0;\n if (particle.svgDirection === SVGPathDirection.normal) {\n particle.svgStep += particle.svgSpeed * delta.factor;\n } else {\n particle.svgStep -= particle.svgSpeed * delta.factor;\n }\n let path = this._paths[particle.svgPathIndex];\n if (path) {\n const pathLength = path.length,\n indexOffset = 1;\n if (particle.svgStep >= pathLength) {\n particle.svgPathIndex = particle.svgPathIndex + indexOffset;\n if (particle.svgPathIndex >= this._paths.length) {\n if (this._reverse) {\n particle.svgPathIndex = this._paths.length - indexOffset;\n particle.svgDirection = SVGPathDirection.reverse;\n } else {\n particle.svgPathIndex = 0;\n particle.svgStep = 0;\n }\n }\n } else if (particle.svgStep <= minStep) {\n particle.svgPathIndex = particle.svgPathIndex - indexOffset;\n if (particle.svgPathIndex < minIndex) {\n if (this._reverse) {\n particle.svgPathIndex = 0;\n particle.svgDirection = SVGPathDirection.normal;\n } else {\n particle.svgPathIndex = this._paths.length - indexOffset;\n path = this._paths[particle.svgPathIndex];\n particle.svgStep = path.length;\n }\n }\n }\n path = this._paths[particle.svgPathIndex];\n }\n if (path) {\n const pathElement = path.element,\n pos = pathElement.getPointAtLength(particle.svgStep),\n canvasSize = particle.container.canvas.size,\n offset = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getPosition)(this._offset, canvasSize),\n scale = this._scale * pxRatio;\n particle.position.x = (pos.x - this._size.width * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half) * scale + particle.svgInitialPosition.x + offset.x + particle.svgOffset.width;\n particle.position.y = (pos.y - this._size.height * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half) * scale + particle.svgInitialPosition.y + offset.y + particle.svgOffset.height;\n }\n return _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin;\n }\n init(container) {\n const options = container.actualOptions.particles.move.path.options,\n position = options.position ?? this._offset;\n this._reverse = options.reverse ?? this._reverse;\n this._scale = options.scale ?? minScale;\n this._offset.x = position.x;\n this._offset.y = position.y;\n this._offset.mode = position.mode;\n this._width = options.width ?? minWidth;\n if (options.url && !options.path) {\n const url = options.url;\n void (async () => {\n const response = await fetch(url),\n data = await response.text();\n const parser = new DOMParser(),\n doc = parser.parseFromString(data, \"image/svg+xml\"),\n firstIndex = 0,\n svg = doc.getElementsByTagName(\"svg\")[firstIndex];\n let svgPaths = svg.getElementsByTagName(\"path\");\n if (!svgPaths.length) {\n svgPaths = doc.getElementsByTagName(\"path\");\n }\n this._paths = [];\n for (let i = 0; i < svgPaths.length; i++) {\n const path = svgPaths.item(i);\n if (path) {\n this._paths.push({\n element: path,\n length: path.getTotalLength()\n });\n }\n }\n this._size.height = parseFloat(svg.getAttribute(\"height\") ?? \"0\");\n this._size.width = parseFloat(svg.getAttribute(\"width\") ?? \"0\");\n })();\n } else if (options.path) {\n const path = options.path;\n this._paths = [];\n for (const item of path.data) {\n const element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"path\");\n element.setAttribute(\"d\", item);\n this._paths.push({\n element,\n length: element.getTotalLength()\n });\n }\n this._size.height = path.size.height;\n this._size.width = path.size.width;\n }\n }\n reset() {}\n update() {}\n}\n\n//# sourceURL=webpack://@tsparticles/path-svg/./dist/browser/SVGPathGenerator.js?");
|
|
38
38
|
|
|
39
39
|
/***/ }),
|
|
40
40
|
|
|
@@ -44,7 +44,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
44
44
|
\*******************************/
|
|
45
45
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
46
46
|
|
|
47
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadSVGPath: () => (/* binding */ loadSVGPath),\n/* harmony export */ svgPathName: () => (/* binding */ svgPathName)\n/* harmony export */ });\n/* harmony import */ var
|
|
47
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadSVGPath: () => (/* binding */ loadSVGPath),\n/* harmony export */ svgPathName: () => (/* binding */ svgPathName)\n/* harmony export */ });\n/* harmony import */ var _SVGPathGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SVGPathGenerator.js */ \"./dist/browser/SVGPathGenerator.js\");\n\nconst svgPathName = \"svgPathGenerator\";\nasync function loadSVGPath(engine, refresh = true) {\n engine.checkVersion(\"3.8.0\");\n await engine.addPathGenerator(svgPathName, new _SVGPathGenerator_js__WEBPACK_IMPORTED_MODULE_0__.SVGPathGenerator(), refresh);\n}\n\n//# sourceURL=webpack://@tsparticles/path-svg/./dist/browser/index.js?");
|
|
48
48
|
|
|
49
49
|
/***/ }),
|
|
50
50
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see tsparticles.path.svg.min.js.LICENSE.txt */
|
|
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 s="object"==typeof exports?e(require("@tsparticles/engine")):e(t.window);for(var i in s)("object"==typeof exports?exports:t)[i]=s[i]}}(this,(t=>(()=>{var e={303:e=>{e.exports=t}},s={};function i(t){var n=s[t];if(void 0!==n)return n.exports;var
|
|
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 s="object"==typeof exports?e(require("@tsparticles/engine")):e(t.window);for(var i in s)("object"==typeof exports?exports:t)[i]=s[i]}}(this,(t=>(()=>{var e={303:e=>{e.exports=t}},s={};function i(t){var n=s[t];if(void 0!==n)return n.exports;var h=s[t]={exports:{}};return e[t](h,h.exports,i),h.exports}i.d=(t,e)=>{for(var s in e)i.o(e,s)&&!i.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},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={};i.r(n),i.d(n,{loadSVGPath:()=>g,svgPathName:()=>r});var h,o=i(303);!function(t){t[t.normal=0]="normal",t[t.reverse=1]="reverse"}(h||(h={}));class a{constructor(){this._paths=[],this._reverse=!1,this._size={width:0,height:0},this._scale=1,this._offset={x:0,y:0,mode:o.PixelMode.percent},this._width=0}generate(t,e){const s=t.container.retina.pixelRatio;void 0===t.svgDirection&&(t.svgDirection=(0,o.getRandom)()>o.half?h.normal:h.reverse),void 0===t.svgPathIndex&&(t.svgPathIndex=Math.floor(Math.random()*this._paths.length)),void 0===t.svgSpeed&&(t.svgSpeed=t.velocity.mult((t.retina.moveSpeed??1)*o.half).length),void 0===t.svgStep&&(t.svgStep=(0,o.randomInRange)({min:0,max:this._paths[t.svgPathIndex].length})*s),void 0===t.svgOffset&&(t.svgOffset={width:(0,o.randomInRange)({min:-this._width*o.half,max:this._width*o.half})*s,height:(0,o.randomInRange)({min:-this._width*o.half,max:this._width*o.half})*s}),void 0===t.svgInitialPosition&&(t.svgInitialPosition={...t.position}),t.velocity.x=0,t.velocity.y=0,t.svgDirection===h.normal?t.svgStep+=t.svgSpeed*e.factor:t.svgStep-=t.svgSpeed*e.factor;let i=this._paths[t.svgPathIndex];if(i){const e=i.length,s=1;t.svgStep>=e?(t.svgPathIndex=t.svgPathIndex+s,t.svgPathIndex>=this._paths.length&&(this._reverse?(t.svgPathIndex=this._paths.length-s,t.svgDirection=h.reverse):(t.svgPathIndex=0,t.svgStep=0))):t.svgStep<=0&&(t.svgPathIndex=t.svgPathIndex-s,t.svgPathIndex<0&&(this._reverse?(t.svgPathIndex=0,t.svgDirection=h.normal):(t.svgPathIndex=this._paths.length-s,i=this._paths[t.svgPathIndex],t.svgStep=i.length))),i=this._paths[t.svgPathIndex]}if(i){const e=i.element.getPointAtLength(t.svgStep),n=t.container.canvas.size,h=(0,o.getPosition)(this._offset,n),a=this._scale*s;t.position.x=(e.x-this._size.width*o.half)*a+t.svgInitialPosition.x+h.x+t.svgOffset.width,t.position.y=(e.y-this._size.height*o.half)*a+t.svgInitialPosition.y+h.y+t.svgOffset.height}return o.Vector.origin}init(t){const e=t.actualOptions.particles.move.path.options,s=e.position??this._offset;if(this._reverse=e.reverse??this._reverse,this._scale=e.scale??1,this._offset.x=s.x,this._offset.y=s.y,this._offset.mode=s.mode,this._width=e.width??0,e.url&&!e.path){const t=e.url;(async()=>{const e=await fetch(t),s=await e.text(),i=(new DOMParser).parseFromString(s,"image/svg+xml"),n=i.getElementsByTagName("svg")[0];let h=n.getElementsByTagName("path");h.length||(h=i.getElementsByTagName("path")),this._paths=[];for(let t=0;t<h.length;t++){const e=h.item(t);e&&this._paths.push({element:e,length:e.getTotalLength()})}this._size.height=parseFloat(n.getAttribute("height")??"0"),this._size.width=parseFloat(n.getAttribute("width")??"0")})()}else if(e.path){const t=e.path;this._paths=[];for(const e of t.data){const t=document.createElementNS("http://www.w3.org/2000/svg","path");t.setAttribute("d",e),this._paths.push({element:t,length:t.getTotalLength()})}this._size.height=t.size.height,this._size.width=t.size.width}}reset(){}update(){}}const r="svgPathGenerator";async function g(t,e=!0){t.checkVersion("3.8.0"),await t.addPathGenerator(r,new a,e)}return n})()));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles SVG Path v3.
|
|
1
|
+
/*! tsParticles SVG Path v3.8.0 by Matteo Bruni */
|
package/umd/SVGPathGenerator.js
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
SVGPathDirection[SVGPathDirection["normal"] = 0] = "normal";
|
|
17
17
|
SVGPathDirection[SVGPathDirection["reverse"] = 1] = "reverse";
|
|
18
18
|
})(SVGPathDirection || (SVGPathDirection = {}));
|
|
19
|
-
const defaultSpeed = 1,
|
|
19
|
+
const defaultSpeed = 1, minStep = 0, minIndex = 0, minWidth = 0, minScale = 1;
|
|
20
20
|
class SVGPathGenerator {
|
|
21
21
|
constructor() {
|
|
22
22
|
this._paths = [];
|
|
@@ -29,21 +29,21 @@
|
|
|
29
29
|
generate(particle, delta) {
|
|
30
30
|
const container = particle.container, pxRatio = container.retina.pixelRatio;
|
|
31
31
|
if (particle.svgDirection === undefined) {
|
|
32
|
-
particle.svgDirection = (0, engine_1.getRandom)() > engine_1.
|
|
32
|
+
particle.svgDirection = (0, engine_1.getRandom)() > engine_1.half ? SVGPathDirection.normal : SVGPathDirection.reverse;
|
|
33
33
|
}
|
|
34
34
|
if (particle.svgPathIndex === undefined) {
|
|
35
35
|
particle.svgPathIndex = Math.floor(Math.random() * this._paths.length);
|
|
36
36
|
}
|
|
37
37
|
if (particle.svgSpeed === undefined) {
|
|
38
|
-
particle.svgSpeed = particle.velocity.mult((particle.retina.moveSpeed ?? defaultSpeed) * half).length;
|
|
38
|
+
particle.svgSpeed = particle.velocity.mult((particle.retina.moveSpeed ?? defaultSpeed) * engine_1.half).length;
|
|
39
39
|
}
|
|
40
40
|
if (particle.svgStep === undefined) {
|
|
41
41
|
particle.svgStep = (0, engine_1.randomInRange)({ min: 0, max: this._paths[particle.svgPathIndex].length }) * pxRatio;
|
|
42
42
|
}
|
|
43
43
|
if (particle.svgOffset === undefined) {
|
|
44
44
|
particle.svgOffset = {
|
|
45
|
-
width: (0, engine_1.randomInRange)({ min: -this._width * half, max: this._width * half }) * pxRatio,
|
|
46
|
-
height: (0, engine_1.randomInRange)({ min: -this._width * half, max: this._width * half }) * pxRatio,
|
|
45
|
+
width: (0, engine_1.randomInRange)({ min: -this._width * engine_1.half, max: this._width * engine_1.half }) * pxRatio,
|
|
46
|
+
height: (0, engine_1.randomInRange)({ min: -this._width * engine_1.half, max: this._width * engine_1.half }) * pxRatio,
|
|
47
47
|
};
|
|
48
48
|
}
|
|
49
49
|
if (particle.svgInitialPosition === undefined) {
|
|
@@ -92,12 +92,12 @@
|
|
|
92
92
|
if (path) {
|
|
93
93
|
const pathElement = path.element, pos = pathElement.getPointAtLength(particle.svgStep), canvasSize = particle.container.canvas.size, offset = (0, engine_1.getPosition)(this._offset, canvasSize), scale = this._scale * pxRatio;
|
|
94
94
|
particle.position.x =
|
|
95
|
-
(pos.x - this._size.width * half) * scale +
|
|
95
|
+
(pos.x - this._size.width * engine_1.half) * scale +
|
|
96
96
|
particle.svgInitialPosition.x +
|
|
97
97
|
offset.x +
|
|
98
98
|
particle.svgOffset.width;
|
|
99
99
|
particle.position.y =
|
|
100
|
-
(pos.y - this._size.height * half) * scale +
|
|
100
|
+
(pos.y - this._size.height * engine_1.half) * scale +
|
|
101
101
|
particle.svgInitialPosition.y +
|
|
102
102
|
offset.y +
|
|
103
103
|
particle.svgOffset.height;
|
package/umd/index.js
CHANGED
|
@@ -4,18 +4,17 @@
|
|
|
4
4
|
if (v !== undefined) module.exports = v;
|
|
5
5
|
}
|
|
6
6
|
else if (typeof define === "function" && define.amd) {
|
|
7
|
-
define(["require", "exports", "
|
|
7
|
+
define(["require", "exports", "./SVGPathGenerator.js"], factory);
|
|
8
8
|
}
|
|
9
9
|
})(function (require, exports) {
|
|
10
10
|
"use strict";
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.svgPathName = void 0;
|
|
13
13
|
exports.loadSVGPath = loadSVGPath;
|
|
14
|
-
const engine_1 = require("@tsparticles/engine");
|
|
15
14
|
const SVGPathGenerator_js_1 = require("./SVGPathGenerator.js");
|
|
16
15
|
exports.svgPathName = "svgPathGenerator";
|
|
17
16
|
async function loadSVGPath(engine, refresh = true) {
|
|
18
|
-
|
|
17
|
+
engine.checkVersion("3.8.0");
|
|
19
18
|
await engine.addPathGenerator(exports.svgPathName, new SVGPathGenerator_js_1.SVGPathGenerator(), refresh);
|
|
20
19
|
}
|
|
21
20
|
});
|