@tsparticles/interaction-external-attract 4.0.0-beta.1 → 4.0.0-beta.11

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/480.min.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";(this.webpackChunk_tsparticles_interaction_external_attract=this.webpackChunk_tsparticles_interaction_external_attract||[]).push([[480],{480(t,i,e){e.d(i,{Attractor:()=>l});var a=e(702),n=e(303);let c=n.Vector.origin;function r(t,i,e,a,r,s){let o=i.actualOptions.interactivity?.modes.attract;if(o)for(let l of i.particles.grid.query(r,s)){let{dx:i,dy:r,distance:s}=(0,n.getDistances)(l.position,e),u=o.speed*o.factor,d=(0,n.clamp)(t.getEasing(o.easing)(n.identity-s/a)*u,1,o.maxSpeed);c.x=s?i/s*d:u,c.y=s?r/s*d:u,l.position.subFrom(c)}}var s=e(445);let o="attract";class l extends a.ExternalInteractorBase{handleClickMode;_maxDistance;_pluginManager;constructor(t,i){super(i),this._pluginManager=t,this._maxDistance=0,i.attract??={particles:[]},this.handleClickMode=(t,e)=>{let a=this.container.actualOptions,c=a.interactivity?.modes.attract;if(c&&t===o){for(let t of(i.attract??={particles:[]},i.attract.clicking=!0,i.attract.count=0,i.attract.particles))this.isEnabled(e,t)&&t.velocity.setTo(t.initialVelocity);i.attract.particles=[],i.attract.finish=!1,setTimeout(()=>{i.destroyed||(i.attract??={particles:[]},i.attract.clicking=!1)},c.duration*n.millisecondsToSeconds)}}}get maxDistance(){return this._maxDistance}clear(){}init(){let t=this.container,i=t.actualOptions.interactivity?.modes.attract;i&&(this._maxDistance=i.distance,t.retina.attractModeDistance=i.distance*t.retina.pixelRatio)}interact(t){let i=this.container.actualOptions,e=t.status===a.mouseMoveEvent,c=i.interactivity?.events;if(!c)return;let{enable:s,mode:l}=c.onHover,{enable:u,mode:d}=c.onClick;if(e&&s&&(0,n.isInArray)(o,l)){var p,h,m;let i,e;p=this._pluginManager,h=this.container,m=i=>this.isEnabled(t,i),i=t.mouse.position,(e=h.retina.attractModeDistance)&&!(e<0)&&i&&r(p,h,i,e,new n.Circle(i.x,i.y,e),t=>m(t))}else u&&(0,n.isInArray)(o,d)&&function(t,i,e,a){i.attract??={particles:[]};let{attract:c}=i;if(c.finish||(c.count??=0,c.count++,c.count===i.particles.count&&(c.finish=!0)),c.clicking){let c=e.mouse.clickPosition,s=i.retina.attractModeDistance;if(!s||s<0||!c)return;r(t,i,c,s,new n.Circle(c.x,c.y,s),t=>a(t))}else!1===c.clicking&&(c.particles=[])}(this._pluginManager,this.container,t,i=>this.isEnabled(t,i))}isEnabled(t,i){let e=this.container.actualOptions,a=t.mouse,c=(i?.interactivity??e.interactivity)?.events;if((!a.position||!c?.onHover.enable)&&(!a.clickPosition||!c?.onClick.enable))return!1;let r=c.onHover.mode,s=c.onClick.mode;return(0,n.isInArray)(o,r)||(0,n.isInArray)(o,s)}loadModeOptions(t,...i){for(let e of(t.attract??=new s.K,i))t.attract.load(e?.attract)}reset(){}}}}]);
package/README.md CHANGED
@@ -9,6 +9,12 @@
9
9
  [tsParticles](https://github.com/tsparticles/tsparticles) interaction plugin for attract effect around mouse or HTML
10
10
  elements.
11
11
 
12
+ ## Quick checklist
13
+
14
+ 1. Install `@tsparticles/engine` (or use the CDN bundle below)
15
+ 2. Call the package loader function(s) before `tsParticles.load(...)`
16
+ 3. Apply the package options in your `tsParticles.load(...)` config
17
+
12
18
  ## How to use it
13
19
 
14
20
  ### CDN / Vanilla JS / jQuery
@@ -79,3 +85,35 @@ import { loadExternalAttractInteraction } from "@tsparticles/interaction-externa
79
85
  await loadExternalAttractInteraction(tsParticles);
80
86
  })();
81
87
  ```
88
+
89
+ ## Option mapping
90
+
91
+ - Event mode key: `interactivity.events.onHover.mode` or `interactivity.events.onClick.mode` with value `"attract"`
92
+ - Mode options key: `interactivity.modes.attract`
93
+
94
+ ```json
95
+ {
96
+ "interactivity": {
97
+ "events": {
98
+ "onHover": {
99
+ "enable": true,
100
+ "mode": "attract"
101
+ }
102
+ },
103
+ "modes": {
104
+ "attract": {}
105
+ }
106
+ }
107
+ }
108
+ ```
109
+
110
+ ## Common pitfalls
111
+
112
+ - Calling `tsParticles.load(...)` before `loadInteractivityPlugin(...)`
113
+ - Verify required peer packages before enabling advanced options
114
+ - Change one option group at a time to isolate regressions quickly
115
+
116
+ ## Related docs
117
+
118
+ - All packages catalog: <https://github.com/tsparticles/tsparticles>
119
+ - Main docs: <https://particles.js.org/docs/>
package/browser/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export async function loadExternalAttractInteraction(engine) {
2
- engine.checkVersion("4.0.0-beta.1");
2
+ engine.checkVersion("4.0.0-beta.11");
3
3
  await engine.pluginManager.register(async (e) => {
4
4
  const { ensureInteractivityPluginLoaded } = await import("@tsparticles/plugin-interactivity");
5
5
  ensureInteractivityPluginLoaded(e);
package/cjs/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export async function loadExternalAttractInteraction(engine) {
2
- engine.checkVersion("4.0.0-beta.1");
2
+ engine.checkVersion("4.0.0-beta.11");
3
3
  await engine.pluginManager.register(async (e) => {
4
4
  const { ensureInteractivityPluginLoaded } = await import("@tsparticles/plugin-interactivity");
5
5
  ensureInteractivityPluginLoaded(e);
@@ -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
- * v4.0.0-beta.1
7
+ * v4.0.0-beta.11
8
8
  */
9
9
  "use strict";
10
10
  /*
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export async function loadExternalAttractInteraction(engine) {
2
- engine.checkVersion("4.0.0-beta.1");
2
+ engine.checkVersion("4.0.0-beta.11");
3
3
  await engine.pluginManager.register(async (e) => {
4
4
  const { ensureInteractivityPluginLoaded } = await import("@tsparticles/plugin-interactivity");
5
5
  ensureInteractivityPluginLoaded(e);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/interaction-external-attract",
3
- "version": "4.0.0-beta.1",
3
+ "version": "4.0.0-beta.11",
4
4
  "description": "tsParticles attract external interaction",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -81,17 +81,20 @@
81
81
  "browser": "./browser/index.js",
82
82
  "import": "./esm/index.js",
83
83
  "require": "./cjs/index.js",
84
- "umd": "./umd/index.js",
85
- "default": "./cjs/index.js"
84
+ "default": "./esm/index.js"
86
85
  },
87
86
  "./package.json": "./package.json"
88
87
  },
89
- "dependencies": {
88
+ "peerDepdendencies": {
90
89
  "@tsparticles/engine": "4.0.0-beta.1",
91
90
  "@tsparticles/plugin-interactivity": "4.0.0-beta.1"
92
91
  },
93
92
  "publishConfig": {
94
93
  "access": "public"
95
94
  },
96
- "type": "module"
95
+ "type": "module",
96
+ "peerDependencies": {
97
+ "@tsparticles/engine": "4.0.0-beta.11",
98
+ "@tsparticles/plugin-interactivity": "4.0.0-beta.11"
99
+ }
97
100
  }
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/interaction-external-attract [31 Mar 2026 at 08:46]</title>
6
+ <title>@tsparticles/interaction-external-attract [8 Apr 2026 at 17:11]</title>
7
7
  <link
8
8
  rel="shortcut icon"
9
9
  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="
@@ -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
- * v4.0.0-beta.1
7
+ * v4.0.0-beta.11
8
8
  */
9
9
  /*
10
10
  * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
@@ -64,7 +64,7 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
64
64
  \*******************************/
65
65
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
66
66
 
67
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Attract: () => (/* reexport safe */ _Options_Classes_Attract_js__WEBPACK_IMPORTED_MODULE_0__.Attract),\n/* harmony export */ loadExternalAttractInteraction: () => (/* binding */ loadExternalAttractInteraction)\n/* harmony export */ });\n/* harmony import */ var _Options_Classes_Attract_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Options/Classes/Attract.js */ \"./dist/browser/Options/Classes/Attract.js\");\nasync function loadExternalAttractInteraction(engine) {\n engine.checkVersion(\"4.0.0-beta.1\");\n await engine.pluginManager.register(async (e)=>{\n const { ensureInteractivityPluginLoaded } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/plugin-interactivity */ \"@tsparticles/plugin-interactivity\", 19));\n ensureInteractivityPluginLoaded(e);\n e.pluginManager.addInteractor?.(\"externalAttract\", async (container)=>{\n const { Attractor } = await __webpack_require__.e(/*! import() */ \"dist_browser_Attractor_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Attractor.js */ \"./dist/browser/Attractor.js\"));\n return new Attractor(e.pluginManager, container);\n });\n });\n}\n\n\n\n//# sourceURL=webpack://@tsparticles/interaction-external-attract/./dist/browser/index.js?\n}");
67
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Attract: () => (/* reexport safe */ _Options_Classes_Attract_js__WEBPACK_IMPORTED_MODULE_0__.Attract),\n/* harmony export */ loadExternalAttractInteraction: () => (/* binding */ loadExternalAttractInteraction)\n/* harmony export */ });\n/* harmony import */ var _Options_Classes_Attract_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Options/Classes/Attract.js */ \"./dist/browser/Options/Classes/Attract.js\");\nasync function loadExternalAttractInteraction(engine) {\n engine.checkVersion(\"4.0.0-beta.11\");\n await engine.pluginManager.register(async (e)=>{\n const { ensureInteractivityPluginLoaded } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/plugin-interactivity */ \"@tsparticles/plugin-interactivity\", 19));\n ensureInteractivityPluginLoaded(e);\n e.pluginManager.addInteractor?.(\"externalAttract\", async (container)=>{\n const { Attractor } = await __webpack_require__.e(/*! import() */ \"dist_browser_Attractor_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Attractor.js */ \"./dist/browser/Attractor.js\"));\n return new Attractor(e.pluginManager, container);\n });\n });\n}\n\n\n\n//# sourceURL=webpack://@tsparticles/interaction-external-attract/./dist/browser/index.js?\n}");
68
68
 
69
69
  /***/ }
70
70
 
@@ -1,2 +1,2 @@
1
- !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"),require("@tsparticles/plugin-interactivity"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine","@tsparticles/plugin-interactivity"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine"),require("@tsparticles/plugin-interactivity")):t(e.window,e.window);for(var i in r)("object"==typeof exports?exports:e)[i]=r[i]}}(this,(e,t)=>(()=>{"use strict";var r,i,a,n={303(t){t.exports=e},702(e){e.exports=t},804(e,t,r){r.d(t,{K:()=>a});var i=r(303);class a{distance;duration;easing;factor;maxSpeed;speed;constructor(){this.distance=200,this.duration=.4,this.easing=i.EasingType.easeOutQuad,this.factor=1,this.maxSpeed=50,this.speed=1}load(e){(0,i.isNull)(e)||(void 0!==e.distance&&(this.distance=e.distance),void 0!==e.duration&&(this.duration=e.duration),void 0!==e.easing&&(this.easing=e.easing),void 0!==e.factor&&(this.factor=e.factor),void 0!==e.maxSpeed&&(this.maxSpeed=e.maxSpeed),void 0!==e.speed&&(this.speed=e.speed))}}}},o={};function s(e){var t=o[e];if(void 0!==t)return t.exports;var r=o[e]={exports:{}};return n[e](r,r.exports,s),r.exports}s.m=n,p=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,s.t=function(e,t){if(1&t&&(e=this(e)),8&t||"object"==typeof e&&e&&(4&t&&e.__esModule||16&t&&"function"==typeof e.then))return e;var r=Object.create(null);s.r(r);var i={};c=c||[null,p({}),p([]),p(p)];for(var a=2&t&&e;("object"==typeof a||"function"==typeof a)&&!~c.indexOf(a);a=p(a))Object.getOwnPropertyNames(a).forEach(t=>i[t]=()=>e[t]);return i.default=()=>e,s.d(r,i),r},s.d=(e,t)=>{for(var r in t)s.o(t,r)&&!s.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},s.f={},s.e=e=>Promise.all(Object.keys(s.f).reduce((t,r)=>(s.f[r](e,t),t),[])),s.u=e=>""+e+".min.js",s.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),s.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),l={},s.l=(e,t,r,i)=>{if(l[e])return void l[e].push(t);if(void 0!==r)for(var a,n,o=document.getElementsByTagName("script"),c=0;c<o.length;c++){var p=o[c];if(p.getAttribute("src")==e||p.getAttribute("data-webpack")=="@tsparticles/interaction-external-attract:"+r){a=p;break}}a||(n=!0,(a=document.createElement("script")).charset="utf-8",s.nc&&a.setAttribute("nonce",s.nc),a.setAttribute("data-webpack","@tsparticles/interaction-external-attract:"+r),a.src=e),l[e]=[t];var u=(t,r)=>{a.onerror=a.onload=null,clearTimeout(d);var i=l[e];if(delete l[e],a.parentNode&&a.parentNode.removeChild(a),i&&i.forEach(e=>e(r)),t)return t(r)},d=setTimeout(u.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=u.bind(null,a.onerror),a.onload=u.bind(null,a.onload),n&&document.head.appendChild(a)},s.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.g.importScripts&&(u=s.g.location+"");var c,p,l,u,d=s.g.document;if(!u&&d&&(d.currentScript&&"SCRIPT"===d.currentScript.tagName.toUpperCase()&&(u=d.currentScript.src),!u)){var f=d.getElementsByTagName("script");if(f.length)for(var h=f.length-1;h>-1&&(!u||!/^http(s?):/.test(u));)u=f[h--].src}if(!u)throw Error("Automatic publicPath is not supported in this browser");s.p=u=u.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r={261:0},s.f.j=(e,t)=>{var i=s.o(r,e)?r[e]:void 0;if(0!==i)if(i)t.push(i[2]);else{var a=new Promise((t,a)=>i=r[e]=[t,a]);t.push(i[2]=a);var n=s.p+s.u(e),o=Error();s.l(n,t=>{if(s.o(r,e)&&(0!==(i=r[e])&&(r[e]=void 0),i)){var a=t&&("load"===t.type?"missing":t.type),n=t&&t.target&&t.target.src;o.message="Loading chunk "+e+` failed.
2
- (`+a+": "+n+")",o.name="ChunkLoadError",o.type=a,o.request=n,i[1](o)}},"chunk-"+e,e)}},i=(e,t)=>{var i,a,[n,o,c]=t,p=0;if(n.some(e=>0!==r[e])){for(i in o)s.o(o,i)&&(s.m[i]=o[i]);c&&c(s)}for(e&&e(t);p<n.length;p++)a=n[p],s.o(r,a)&&r[a]&&r[a][0](),r[a]=0},(a=this.webpackChunk_tsparticles_interaction_external_attract=this.webpackChunk_tsparticles_interaction_external_attract||[]).forEach(i.bind(null,0)),a.push=i.bind(null,a.push.bind(a));var g={};s.r(g),s.d(g,{Attract:()=>b.K,loadExternalAttractInteraction:()=>v});var b=s(804);async function v(e){e.checkVersion("4.0.0-beta.1"),await e.pluginManager.register(async e=>{let{ensureInteractivityPluginLoaded:t}=await Promise.resolve().then(s.t.bind(s,702,19));t(e),e.pluginManager.addInteractor?.("externalAttract",async t=>{let{Attractor:r}=await s.e(92).then(s.bind(s,92));return new r(e.pluginManager,t)})})}return g})());
1
+ !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"),require("@tsparticles/plugin-interactivity"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine","@tsparticles/plugin-interactivity"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine"),require("@tsparticles/plugin-interactivity")):t(e.window,e.window);for(var i in r)("object"==typeof exports?exports:e)[i]=r[i]}}(this,(e,t)=>(()=>{"use strict";var r,i,a,n={303(t){t.exports=e},702(e){e.exports=t},445(e,t,r){r.d(t,{K:()=>a});var i=r(303);class a{distance;duration;easing;factor;maxSpeed;speed;constructor(){this.distance=200,this.duration=.4,this.easing=i.EasingType.easeOutQuad,this.factor=1,this.maxSpeed=50,this.speed=1}load(e){(0,i.isNull)(e)||(void 0!==e.distance&&(this.distance=e.distance),void 0!==e.duration&&(this.duration=e.duration),void 0!==e.easing&&(this.easing=e.easing),void 0!==e.factor&&(this.factor=e.factor),void 0!==e.maxSpeed&&(this.maxSpeed=e.maxSpeed),void 0!==e.speed&&(this.speed=e.speed))}}}},o={};function s(e){var t=o[e];if(void 0!==t)return t.exports;var r=o[e]={exports:{}};return n[e](r,r.exports,s),r.exports}s.m=n,p=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,s.t=function(e,t){if(1&t&&(e=this(e)),8&t||"object"==typeof e&&e&&(4&t&&e.__esModule||16&t&&"function"==typeof e.then))return e;var r=Object.create(null);s.r(r);var i={};c=c||[null,p({}),p([]),p(p)];for(var a=2&t&&e;("object"==typeof a||"function"==typeof a)&&!~c.indexOf(a);a=p(a))Object.getOwnPropertyNames(a).forEach(t=>i[t]=()=>e[t]);return i.default=()=>e,s.d(r,i),r},s.d=(e,t)=>{for(var r in t)s.o(t,r)&&!s.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},s.f={},s.e=e=>Promise.all(Object.keys(s.f).reduce((t,r)=>(s.f[r](e,t),t),[])),s.u=e=>""+e+".min.js",s.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),s.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),l={},s.l=(e,t,r,i)=>{if(l[e])return void l[e].push(t);if(void 0!==r)for(var a,n,o=document.getElementsByTagName("script"),c=0;c<o.length;c++){var p=o[c];if(p.getAttribute("src")==e||p.getAttribute("data-webpack")=="@tsparticles/interaction-external-attract:"+r){a=p;break}}a||(n=!0,(a=document.createElement("script")).charset="utf-8",s.nc&&a.setAttribute("nonce",s.nc),a.setAttribute("data-webpack","@tsparticles/interaction-external-attract:"+r),a.src=e),l[e]=[t];var u=(t,r)=>{a.onerror=a.onload=null,clearTimeout(d);var i=l[e];if(delete l[e],a.parentNode&&a.parentNode.removeChild(a),i&&i.forEach(e=>e(r)),t)return t(r)},d=setTimeout(u.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=u.bind(null,a.onerror),a.onload=u.bind(null,a.onload),n&&document.head.appendChild(a)},s.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.g.importScripts&&(u=s.g.location+"");var c,p,l,u,d=s.g.document;if(!u&&d&&(d.currentScript&&"SCRIPT"===d.currentScript.tagName.toUpperCase()&&(u=d.currentScript.src),!u)){var f=d.getElementsByTagName("script");if(f.length)for(var h=f.length-1;h>-1&&(!u||!/^http(s?):/.test(u));)u=f[h--].src}if(!u)throw Error("Automatic publicPath is not supported in this browser");s.p=u=u.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r={261:0},s.f.j=(e,t)=>{var i=s.o(r,e)?r[e]:void 0;if(0!==i)if(i)t.push(i[2]);else{var a=new Promise((t,a)=>i=r[e]=[t,a]);t.push(i[2]=a);var n=s.p+s.u(e),o=Error();s.l(n,t=>{if(s.o(r,e)&&(0!==(i=r[e])&&(r[e]=void 0),i)){var a=t&&("load"===t.type?"missing":t.type),n=t&&t.target&&t.target.src;o.message="Loading chunk "+e+` failed.
2
+ (`+a+": "+n+")",o.name="ChunkLoadError",o.type=a,o.request=n,i[1](o)}},"chunk-"+e,e)}},i=(e,t)=>{var i,a,[n,o,c]=t,p=0;if(n.some(e=>0!==r[e])){for(i in o)s.o(o,i)&&(s.m[i]=o[i]);c&&c(s)}for(e&&e(t);p<n.length;p++)a=n[p],s.o(r,a)&&r[a]&&r[a][0](),r[a]=0},(a=this.webpackChunk_tsparticles_interaction_external_attract=this.webpackChunk_tsparticles_interaction_external_attract||[]).forEach(i.bind(null,0)),a.push=i.bind(null,a.push.bind(a));var g={};s.r(g),s.d(g,{Attract:()=>b.K,loadExternalAttractInteraction:()=>v});var b=s(445);async function v(e){e.checkVersion("4.0.0-beta.11"),await e.pluginManager.register(async e=>{let{ensureInteractivityPluginLoaded:t}=await Promise.resolve().then(s.t.bind(s,702,19));t(e),e.pluginManager.addInteractor?.("externalAttract",async t=>{let{Attractor:r}=await s.e(480).then(s.bind(s,480));return new r(e.pluginManager,t)})})}return g})());
package/92.min.js DELETED
@@ -1 +0,0 @@
1
- "use strict";(this.webpackChunk_tsparticles_interaction_external_attract=this.webpackChunk_tsparticles_interaction_external_attract||[]).push([[92],{92(t,i,e){e.d(i,{Attractor:()=>l});var a=e(702),n=e(303);let c=n.Vector.origin;function r(t,i,e,a,r,s){let o=i.actualOptions.interactivity?.modes.attract;if(o)for(let l of i.particles.grid.query(r,s)){let{dx:i,dy:r,distance:s}=(0,n.getDistances)(l.position,e),u=o.speed*o.factor,d=(0,n.clamp)(t.getEasing(o.easing)(n.identity-s/a)*u,1,o.maxSpeed);c.x=s?i/s*d:u,c.y=s?r/s*d:u,l.position.subFrom(c)}}var s=e(804);let o="attract";class l extends a.ExternalInteractorBase{handleClickMode;_maxDistance;_pluginManager;constructor(t,i){super(i),this._pluginManager=t,this._maxDistance=0,i.attract??={particles:[]},this.handleClickMode=(t,e)=>{let a=this.container.actualOptions,c=a.interactivity?.modes.attract;if(c&&t===o){for(let t of(i.attract??={particles:[]},i.attract.clicking=!0,i.attract.count=0,i.attract.particles))this.isEnabled(e,t)&&t.velocity.setTo(t.initialVelocity);i.attract.particles=[],i.attract.finish=!1,setTimeout(()=>{i.destroyed||(i.attract??={particles:[]},i.attract.clicking=!1)},c.duration*n.millisecondsToSeconds)}}}get maxDistance(){return this._maxDistance}clear(){}init(){let t=this.container,i=t.actualOptions.interactivity?.modes.attract;i&&(this._maxDistance=i.distance,t.retina.attractModeDistance=i.distance*t.retina.pixelRatio)}interact(t){let i=this.container.actualOptions,e=t.status===a.mouseMoveEvent,c=i.interactivity?.events;if(!c)return;let{enable:s,mode:l}=c.onHover,{enable:u,mode:d}=c.onClick;if(e&&s&&(0,n.isInArray)(o,l)){var p,h,m;let i,e;p=this._pluginManager,h=this.container,m=i=>this.isEnabled(t,i),i=t.mouse.position,(e=h.retina.attractModeDistance)&&!(e<0)&&i&&r(p,h,i,e,new n.Circle(i.x,i.y,e),t=>m(t))}else u&&(0,n.isInArray)(o,d)&&function(t,i,e,a){i.attract??={particles:[]};let{attract:c}=i;if(c.finish||(c.count??=0,c.count++,c.count===i.particles.count&&(c.finish=!0)),c.clicking){let c=e.mouse.clickPosition,s=i.retina.attractModeDistance;if(!s||s<0||!c)return;r(t,i,c,s,new n.Circle(c.x,c.y,s),t=>a(t))}else!1===c.clicking&&(c.particles=[])}(this._pluginManager,this.container,t,i=>this.isEnabled(t,i))}isEnabled(t,i){let e=this.container.actualOptions,a=t.mouse,c=(i?.interactivity??e.interactivity)?.events;if((!a.position||!c?.onHover.enable)&&(!a.clickPosition||!c?.onClick.enable))return!1;let r=c.onHover.mode,s=c.onClick.mode;return(0,n.isInArray)(o,r)||(0,n.isInArray)(o,s)}loadModeOptions(t,...i){for(let e of(t.attract??=new s.K,i))t.attract.load(e?.attract)}reset(){}}}}]);
package/umd/Attractor.js DELETED
@@ -1,96 +0,0 @@
1
- (function (factory) {
2
- if (typeof module === "object" && typeof module.exports === "object") {
3
- var v = factory(require, exports);
4
- if (v !== undefined) module.exports = v;
5
- }
6
- else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports", "@tsparticles/plugin-interactivity", "@tsparticles/engine", "./Utils.js", "./Options/Classes/Attract.js"], factory);
8
- }
9
- })(function (require, exports) {
10
- "use strict";
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.Attractor = void 0;
13
- const plugin_interactivity_1 = require("@tsparticles/plugin-interactivity");
14
- const engine_1 = require("@tsparticles/engine");
15
- const Utils_js_1 = require("./Utils.js");
16
- const Attract_js_1 = require("./Options/Classes/Attract.js");
17
- const attractMode = "attract";
18
- class Attractor extends plugin_interactivity_1.ExternalInteractorBase {
19
- handleClickMode;
20
- _maxDistance;
21
- _pluginManager;
22
- constructor(pluginManager, container) {
23
- super(container);
24
- this._pluginManager = pluginManager;
25
- this._maxDistance = 0;
26
- container.attract ??= { particles: [] };
27
- this.handleClickMode = (mode, interactivityData) => {
28
- const options = this.container.actualOptions, attract = options.interactivity?.modes.attract;
29
- if (!attract || mode !== attractMode) {
30
- return;
31
- }
32
- container.attract ??= { particles: [] };
33
- container.attract.clicking = true;
34
- container.attract.count = 0;
35
- for (const particle of container.attract.particles) {
36
- if (!this.isEnabled(interactivityData, particle)) {
37
- continue;
38
- }
39
- particle.velocity.setTo(particle.initialVelocity);
40
- }
41
- container.attract.particles = [];
42
- container.attract.finish = false;
43
- setTimeout(() => {
44
- if (container.destroyed) {
45
- return;
46
- }
47
- container.attract ??= { particles: [] };
48
- container.attract.clicking = false;
49
- }, attract.duration * engine_1.millisecondsToSeconds);
50
- };
51
- }
52
- get maxDistance() {
53
- return this._maxDistance;
54
- }
55
- clear() {
56
- }
57
- init() {
58
- const container = this.container, attract = container.actualOptions.interactivity?.modes.attract;
59
- if (!attract) {
60
- return;
61
- }
62
- this._maxDistance = attract.distance;
63
- container.retina.attractModeDistance = attract.distance * container.retina.pixelRatio;
64
- }
65
- interact(interactivityData) {
66
- const container = this.container, options = container.actualOptions, mouseMoveStatus = interactivityData.status === plugin_interactivity_1.mouseMoveEvent, events = options.interactivity?.events;
67
- if (!events) {
68
- return;
69
- }
70
- const { enable: hoverEnabled, mode: hoverMode } = events.onHover, { enable: clickEnabled, mode: clickMode } = events.onClick;
71
- if (mouseMoveStatus && hoverEnabled && (0, engine_1.isInArray)(attractMode, hoverMode)) {
72
- (0, Utils_js_1.hoverAttract)(this._pluginManager, this.container, interactivityData, p => this.isEnabled(interactivityData, p));
73
- }
74
- else if (clickEnabled && (0, engine_1.isInArray)(attractMode, clickMode)) {
75
- (0, Utils_js_1.clickAttract)(this._pluginManager, this.container, interactivityData, p => this.isEnabled(interactivityData, p));
76
- }
77
- }
78
- isEnabled(interactivityData, particle) {
79
- const container = this.container, options = container.actualOptions, mouse = interactivityData.mouse, events = (particle?.interactivity ?? options.interactivity)?.events;
80
- if ((!mouse.position || !events?.onHover.enable) && (!mouse.clickPosition || !events?.onClick.enable)) {
81
- return false;
82
- }
83
- const hoverMode = events.onHover.mode, clickMode = events.onClick.mode;
84
- return (0, engine_1.isInArray)(attractMode, hoverMode) || (0, engine_1.isInArray)(attractMode, clickMode);
85
- }
86
- loadModeOptions(options, ...sources) {
87
- options.attract ??= new Attract_js_1.Attract();
88
- for (const source of sources) {
89
- options.attract.load(source?.attract);
90
- }
91
- }
92
- reset() {
93
- }
94
- }
95
- exports.Attractor = Attractor;
96
- });
@@ -1,54 +0,0 @@
1
- (function (factory) {
2
- if (typeof module === "object" && typeof module.exports === "object") {
3
- var v = factory(require, exports);
4
- if (v !== undefined) module.exports = v;
5
- }
6
- else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports", "@tsparticles/engine"], factory);
8
- }
9
- })(function (require, exports) {
10
- "use strict";
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.Attract = void 0;
13
- const engine_1 = require("@tsparticles/engine");
14
- class Attract {
15
- distance;
16
- duration;
17
- easing;
18
- factor;
19
- maxSpeed;
20
- speed;
21
- constructor() {
22
- this.distance = 200;
23
- this.duration = 0.4;
24
- this.easing = engine_1.EasingType.easeOutQuad;
25
- this.factor = 1;
26
- this.maxSpeed = 50;
27
- this.speed = 1;
28
- }
29
- load(data) {
30
- if ((0, engine_1.isNull)(data)) {
31
- return;
32
- }
33
- if (data.distance !== undefined) {
34
- this.distance = data.distance;
35
- }
36
- if (data.duration !== undefined) {
37
- this.duration = data.duration;
38
- }
39
- if (data.easing !== undefined) {
40
- this.easing = data.easing;
41
- }
42
- if (data.factor !== undefined) {
43
- this.factor = data.factor;
44
- }
45
- if (data.maxSpeed !== undefined) {
46
- this.maxSpeed = data.maxSpeed;
47
- }
48
- if (data.speed !== undefined) {
49
- this.speed = data.speed;
50
- }
51
- }
52
- }
53
- exports.Attract = Attract;
54
- });
@@ -1,12 +0,0 @@
1
- (function (factory) {
2
- if (typeof module === "object" && typeof module.exports === "object") {
3
- var v = factory(require, exports);
4
- if (v !== undefined) module.exports = v;
5
- }
6
- else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports"], factory);
8
- }
9
- })(function (require, exports) {
10
- "use strict";
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- });
@@ -1,12 +0,0 @@
1
- (function (factory) {
2
- if (typeof module === "object" && typeof module.exports === "object") {
3
- var v = factory(require, exports);
4
- if (v !== undefined) module.exports = v;
5
- }
6
- else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports"], factory);
8
- }
9
- })(function (require, exports) {
10
- "use strict";
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- });
package/umd/Types.js DELETED
@@ -1,12 +0,0 @@
1
- (function (factory) {
2
- if (typeof module === "object" && typeof module.exports === "object") {
3
- var v = factory(require, exports);
4
- if (v !== undefined) module.exports = v;
5
- }
6
- else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports"], factory);
8
- }
9
- })(function (require, exports) {
10
- "use strict";
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- });
package/umd/Utils.js DELETED
@@ -1,57 +0,0 @@
1
- (function (factory) {
2
- if (typeof module === "object" && typeof module.exports === "object") {
3
- var v = factory(require, exports);
4
- if (v !== undefined) module.exports = v;
5
- }
6
- else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports", "@tsparticles/engine"], factory);
8
- }
9
- })(function (require, exports) {
10
- "use strict";
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.clickAttract = clickAttract;
13
- exports.hoverAttract = hoverAttract;
14
- const engine_1 = require("@tsparticles/engine");
15
- const minFactor = 1, minRadius = 0, updateVector = engine_1.Vector.origin;
16
- function processAttract(pluginManager, container, position, attractRadius, area, queryCb) {
17
- const attractOptions = container.actualOptions.interactivity?.modes.attract;
18
- if (!attractOptions) {
19
- return;
20
- }
21
- const query = container.particles.grid.query(area, queryCb);
22
- for (const particle of query) {
23
- const { dx, dy, distance } = (0, engine_1.getDistances)(particle.position, position), velocity = attractOptions.speed * attractOptions.factor, attractFactor = (0, engine_1.clamp)(pluginManager.getEasing(attractOptions.easing)(engine_1.identity - distance / attractRadius) * velocity, minFactor, attractOptions.maxSpeed);
24
- updateVector.x = !distance ? velocity : (dx / distance) * attractFactor;
25
- updateVector.y = !distance ? velocity : (dy / distance) * attractFactor;
26
- particle.position.subFrom(updateVector);
27
- }
28
- }
29
- function clickAttract(pluginManager, container, interactivityData, enabledCb) {
30
- container.attract ??= { particles: [] };
31
- const { attract } = container;
32
- if (!attract.finish) {
33
- attract.count ??= 0;
34
- attract.count++;
35
- if (attract.count === container.particles.count) {
36
- attract.finish = true;
37
- }
38
- }
39
- if (attract.clicking) {
40
- const mousePos = interactivityData.mouse.clickPosition, attractRadius = container.retina.attractModeDistance;
41
- if (!attractRadius || attractRadius < minRadius || !mousePos) {
42
- return;
43
- }
44
- processAttract(pluginManager, container, mousePos, attractRadius, new engine_1.Circle(mousePos.x, mousePos.y, attractRadius), (p) => enabledCb(p));
45
- }
46
- else if (attract.clicking === false) {
47
- attract.particles = [];
48
- }
49
- }
50
- function hoverAttract(pluginManager, container, interactivityData, enabledCb) {
51
- const mousePos = interactivityData.mouse.position, attractRadius = container.retina.attractModeDistance;
52
- if (!attractRadius || attractRadius < minRadius || !mousePos) {
53
- return;
54
- }
55
- processAttract(pluginManager, container, mousePos, attractRadius, new engine_1.Circle(mousePos.x, mousePos.y, attractRadius), (p) => enabledCb(p));
56
- }
57
- });
package/umd/index.js DELETED
@@ -1,62 +0,0 @@
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 () {
18
- var ownKeys = function(o) {
19
- ownKeys = Object.getOwnPropertyNames || function (o) {
20
- var ar = [];
21
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
22
- return ar;
23
- };
24
- return ownKeys(o);
25
- };
26
- return function (mod) {
27
- if (mod && mod.__esModule) return mod;
28
- var result = {};
29
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
30
- __setModuleDefault(result, mod);
31
- return result;
32
- };
33
- })();
34
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
35
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
36
- };
37
- (function (factory) {
38
- if (typeof module === "object" && typeof module.exports === "object") {
39
- var v = factory(require, exports);
40
- if (v !== undefined) module.exports = v;
41
- }
42
- else if (typeof define === "function" && define.amd) {
43
- define(["require", "exports", "./Options/Classes/Attract.js"], factory);
44
- }
45
- })(function (require, exports) {
46
- "use strict";
47
- var __syncRequire = typeof module === "object" && typeof module.exports === "object";
48
- Object.defineProperty(exports, "__esModule", { value: true });
49
- exports.loadExternalAttractInteraction = loadExternalAttractInteraction;
50
- async function loadExternalAttractInteraction(engine) {
51
- engine.checkVersion("4.0.0-beta.1");
52
- await engine.pluginManager.register(async (e) => {
53
- const { ensureInteractivityPluginLoaded } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/plugin-interactivity"))) : new Promise((resolve_1, reject_1) => { require(["@tsparticles/plugin-interactivity"], resolve_1, reject_1); }).then(__importStar));
54
- ensureInteractivityPluginLoaded(e);
55
- e.pluginManager.addInteractor?.("externalAttract", async (container) => {
56
- const { Attractor } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./Attractor.js"))) : new Promise((resolve_2, reject_2) => { require(["./Attractor.js"], resolve_2, reject_2); }).then(__importStar));
57
- return new Attractor(e.pluginManager, container);
58
- });
59
- });
60
- }
61
- __exportStar(require("./Options/Classes/Attract.js"), exports);
62
- });