@tsparticles/interaction-external-parallax 4.0.0-beta.1 → 4.0.0-beta.10
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/{203.min.js → 848.min.js} +1 -1
- package/README.md +38 -0
- package/browser/index.js +1 -1
- package/cjs/index.js +1 -1
- package/dist_browser_Parallaxer_js.js +1 -1
- package/esm/index.js +1 -1
- package/package.json +8 -5
- package/report.html +1 -1
- package/tsparticles.interaction.external.parallax.js +2 -2
- package/tsparticles.interaction.external.parallax.min.js +2 -2
- package/umd/Options/Classes/Parallax.js +0 -34
- package/umd/Options/Classes/ParallaxOptions.js +0 -12
- package/umd/Options/Interfaces/IParallax.js +0 -12
- package/umd/Parallaxer.js +0 -67
- package/umd/Types.js +0 -12
- package/umd/index.js +0 -62
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(this.webpackChunk_tsparticles_interaction_external_parallax=this.webpackChunk_tsparticles_interaction_external_parallax||[]).push([[
|
|
1
|
+
"use strict";(this.webpackChunk_tsparticles_interaction_external_parallax=this.webpackChunk_tsparticles_interaction_external_parallax||[]).push([[848],{848(a,t,e){e.d(t,{Parallaxer:()=>n});var r=e(702),i=e(303),l=e(425);class n extends r.ExternalInteractorBase{maxDistance=0;constructor(a){super(a)}clear(){}init(){}interact(a){for(let t of this.container.particles.filter(t=>this.isEnabled(a,t)))this._parallaxInteract(a,t)}isEnabled(a,t){let e=this.container,r=a.mouse,l=(t?.interactivity??e.actualOptions.interactivity)?.events;return!!l?.onHover.enable&&!!r.position&&(0,i.isInArray)("parallax",l.onHover.mode)}loadModeOptions(a,...t){for(let e of(a.parallax??=new l.k,t))a.parallax.load(e?.parallax)}reset(){}_parallaxInteract(a,t){if(!this.isEnabled(a,t))return;let e=this.container,r=e.actualOptions,l=r.interactivity?.modes.parallax;if(!l)return;let n=l.force,s=a.mouse.position;if(!s)return;let o=e.canvas.size,c={x:o.width*i.half,y:o.height*i.half},x=l.smooth,p=t.getRadius()/n,h={x:(s.x-c.x)*p,y:(s.y-c.y)*p},{offset:u}=t;u.x+=(h.x-u.x)/x,u.y+=(h.y-u.y)/x}}}}]);
|
package/README.md
CHANGED
|
@@ -9,6 +9,12 @@
|
|
|
9
9
|
[tsParticles](https://github.com/tsparticles/tsparticles) interaction plugin for parallax 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 { loadExternalParallaxInteraction } from "@tsparticles/interaction-extern
|
|
|
79
85
|
await loadExternalParallaxInteraction(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 `"parallax"`
|
|
92
|
+
- Mode options key: `interactivity.modes.parallax`
|
|
93
|
+
|
|
94
|
+
```json
|
|
95
|
+
{
|
|
96
|
+
"interactivity": {
|
|
97
|
+
"events": {
|
|
98
|
+
"onHover": {
|
|
99
|
+
"enable": true,
|
|
100
|
+
"mode": "parallax"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"modes": {
|
|
104
|
+
"parallax": {}
|
|
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 loadExternalParallaxInteraction(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-beta.
|
|
2
|
+
engine.checkVersion("4.0.0-beta.10");
|
|
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 loadExternalParallaxInteraction(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-beta.
|
|
2
|
+
engine.checkVersion("4.0.0-beta.10");
|
|
3
3
|
await engine.pluginManager.register(async (e) => {
|
|
4
4
|
const { ensureInteractivityPluginLoaded } = await import("@tsparticles/plugin-interactivity");
|
|
5
5
|
ensureInteractivityPluginLoaded(e);
|
package/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadExternalParallaxInteraction(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-beta.
|
|
2
|
+
engine.checkVersion("4.0.0-beta.10");
|
|
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-parallax",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.10",
|
|
4
4
|
"description": "tsParticles parallax 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
|
-
"
|
|
85
|
-
"default": "./cjs/index.js"
|
|
84
|
+
"default": "./esm/index.js"
|
|
86
85
|
},
|
|
87
86
|
"./package.json": "./package.json"
|
|
88
87
|
},
|
|
89
|
-
"
|
|
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.10",
|
|
98
|
+
"@tsparticles/plugin-interactivity": "4.0.0-beta.10"
|
|
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-parallax [
|
|
6
|
+
<title>@tsparticles/interaction-external-parallax [8 Apr 2026 at 15:55]</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.
|
|
7
|
+
* v4.0.0-beta.10
|
|
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 */ Parallax: () => (/* reexport safe */ _Options_Classes_Parallax_js__WEBPACK_IMPORTED_MODULE_0__.Parallax),\n/* harmony export */ loadExternalParallaxInteraction: () => (/* binding */ loadExternalParallaxInteraction)\n/* harmony export */ });\n/* harmony import */ var _Options_Classes_Parallax_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Options/Classes/Parallax.js */ \"./dist/browser/Options/Classes/Parallax.js\");\nasync function loadExternalParallaxInteraction(engine) {\n engine.checkVersion(\"4.0.0-beta.
|
|
67
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Parallax: () => (/* reexport safe */ _Options_Classes_Parallax_js__WEBPACK_IMPORTED_MODULE_0__.Parallax),\n/* harmony export */ loadExternalParallaxInteraction: () => (/* binding */ loadExternalParallaxInteraction)\n/* harmony export */ });\n/* harmony import */ var _Options_Classes_Parallax_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Options/Classes/Parallax.js */ \"./dist/browser/Options/Classes/Parallax.js\");\nasync function loadExternalParallaxInteraction(engine) {\n engine.checkVersion(\"4.0.0-beta.10\");\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?.(\"externalParallax\", async (container)=>{\n const { Parallaxer } = await __webpack_require__.e(/*! import() */ \"dist_browser_Parallaxer_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Parallaxer.js */ \"./dist/browser/Parallaxer.js\"));\n return new Parallaxer(container);\n });\n });\n}\n\n\n\n//# sourceURL=webpack://@tsparticles/interaction-external-parallax/./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 o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,(e,t)=>(()=>{"use strict";var r,o,a,i={303(t){t.exports=e},
|
|
2
|
-
(`+a+": "+i+")",n.name="ChunkLoadError",n.type=a,n.request=i,o[1](n)}},"chunk-"+e,e)}},o=(e,t)=>{var o,a,[i,n,c]=t,s=0;if(i.some(e=>0!==r[e])){for(o in n)l.o(n,o)&&(l.m[o]=n[o]);c&&c(l)}for(e&&e(t);s<i.length;s++)a=i[s],l.o(r,a)&&r[a]&&r[a][0](),r[a]=0},(a=this.webpackChunk_tsparticles_interaction_external_parallax=this.webpackChunk_tsparticles_interaction_external_parallax||[]).forEach(o.bind(null,0)),a.push=o.bind(null,a.push.bind(a));var b={};l.r(b),l.d(b,{Parallax:()=>g.k,loadExternalParallaxInteraction:()=>m});var g=l(
|
|
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 o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,(e,t)=>(()=>{"use strict";var r,o,a,i={303(t){t.exports=e},702(e){e.exports=t},425(e,t,r){r.d(t,{k:()=>a});var o=r(303);class a{force;smooth;constructor(){this.force=2,this.smooth=10}load(e){(0,o.isNull)(e)||(void 0!==e.force&&(this.force=e.force),void 0!==e.smooth&&(this.smooth=e.smooth))}}}},n={};function l(e){var t=n[e];if(void 0!==t)return t.exports;var r=n[e]={exports:{}};return i[e](r,r.exports,l),r.exports}l.m=i,s=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,l.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);l.r(r);var o={};c=c||[null,s({}),s([]),s(s)];for(var a=2&t&&e;("object"==typeof a||"function"==typeof a)&&!~c.indexOf(a);a=s(a))Object.getOwnPropertyNames(a).forEach(t=>o[t]=()=>e[t]);return o.default=()=>e,l.d(r,o),r},l.d=(e,t)=>{for(var r in t)l.o(t,r)&&!l.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},l.f={},l.e=e=>Promise.all(Object.keys(l.f).reduce((t,r)=>(l.f[r](e,t),t),[])),l.u=e=>""+e+".min.js",l.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),l.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),p={},l.l=(e,t,r,o)=>{if(p[e])return void p[e].push(t);if(void 0!==r)for(var a,i,n=document.getElementsByTagName("script"),c=0;c<n.length;c++){var s=n[c];if(s.getAttribute("src")==e||s.getAttribute("data-webpack")=="@tsparticles/interaction-external-parallax:"+r){a=s;break}}a||(i=!0,(a=document.createElement("script")).charset="utf-8",l.nc&&a.setAttribute("nonce",l.nc),a.setAttribute("data-webpack","@tsparticles/interaction-external-parallax:"+r),a.src=e),p[e]=[t];var u=(t,r)=>{a.onerror=a.onload=null,clearTimeout(f);var o=p[e];if(delete p[e],a.parentNode&&a.parentNode.removeChild(a),o&&o.forEach(e=>e(r)),t)return t(r)},f=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),i&&document.head.appendChild(a)},l.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.g.importScripts&&(u=l.g.location+"");var c,s,p,u,f=l.g.document;if(!u&&f&&(f.currentScript&&"SCRIPT"===f.currentScript.tagName.toUpperCase()&&(u=f.currentScript.src),!u)){var d=f.getElementsByTagName("script");if(d.length)for(var h=d.length-1;h>-1&&(!u||!/^http(s?):/.test(u));)u=d[h--].src}if(!u)throw Error("Automatic publicPath is not supported in this browser");l.p=u=u.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r={207:0},l.f.j=(e,t)=>{var o=l.o(r,e)?r[e]:void 0;if(0!==o)if(o)t.push(o[2]);else{var a=new Promise((t,a)=>o=r[e]=[t,a]);t.push(o[2]=a);var i=l.p+l.u(e),n=Error();l.l(i,t=>{if(l.o(r,e)&&(0!==(o=r[e])&&(r[e]=void 0),o)){var a=t&&("load"===t.type?"missing":t.type),i=t&&t.target&&t.target.src;n.message="Loading chunk "+e+` failed.
|
|
2
|
+
(`+a+": "+i+")",n.name="ChunkLoadError",n.type=a,n.request=i,o[1](n)}},"chunk-"+e,e)}},o=(e,t)=>{var o,a,[i,n,c]=t,s=0;if(i.some(e=>0!==r[e])){for(o in n)l.o(n,o)&&(l.m[o]=n[o]);c&&c(l)}for(e&&e(t);s<i.length;s++)a=i[s],l.o(r,a)&&r[a]&&r[a][0](),r[a]=0},(a=this.webpackChunk_tsparticles_interaction_external_parallax=this.webpackChunk_tsparticles_interaction_external_parallax||[]).forEach(o.bind(null,0)),a.push=o.bind(null,a.push.bind(a));var b={};l.r(b),l.d(b,{Parallax:()=>g.k,loadExternalParallaxInteraction:()=>m});var g=l(425);async function m(e){e.checkVersion("4.0.0-beta.10"),await e.pluginManager.register(async e=>{let{ensureInteractivityPluginLoaded:t}=await Promise.resolve().then(l.t.bind(l,702,19));t(e),e.pluginManager.addInteractor?.("externalParallax",async e=>{let{Parallaxer:t}=await l.e(848).then(l.bind(l,848));return new t(e)})})}return b})());
|
|
@@ -1,34 +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.Parallax = void 0;
|
|
13
|
-
const engine_1 = require("@tsparticles/engine");
|
|
14
|
-
class Parallax {
|
|
15
|
-
force;
|
|
16
|
-
smooth;
|
|
17
|
-
constructor() {
|
|
18
|
-
this.force = 2;
|
|
19
|
-
this.smooth = 10;
|
|
20
|
-
}
|
|
21
|
-
load(data) {
|
|
22
|
-
if ((0, engine_1.isNull)(data)) {
|
|
23
|
-
return;
|
|
24
|
-
}
|
|
25
|
-
if (data.force !== undefined) {
|
|
26
|
-
this.force = data.force;
|
|
27
|
-
}
|
|
28
|
-
if (data.smooth !== undefined) {
|
|
29
|
-
this.smooth = data.smooth;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
exports.Parallax = Parallax;
|
|
34
|
-
});
|
|
@@ -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/Parallaxer.js
DELETED
|
@@ -1,67 +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", "./Options/Classes/Parallax.js"], factory);
|
|
8
|
-
}
|
|
9
|
-
})(function (require, exports) {
|
|
10
|
-
"use strict";
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.Parallaxer = void 0;
|
|
13
|
-
const plugin_interactivity_1 = require("@tsparticles/plugin-interactivity");
|
|
14
|
-
const engine_1 = require("@tsparticles/engine");
|
|
15
|
-
const Parallax_js_1 = require("./Options/Classes/Parallax.js");
|
|
16
|
-
const parallaxMode = "parallax";
|
|
17
|
-
class Parallaxer extends plugin_interactivity_1.ExternalInteractorBase {
|
|
18
|
-
maxDistance = 0;
|
|
19
|
-
constructor(container) {
|
|
20
|
-
super(container);
|
|
21
|
-
}
|
|
22
|
-
clear() {
|
|
23
|
-
}
|
|
24
|
-
init() {
|
|
25
|
-
}
|
|
26
|
-
interact(interactivityData) {
|
|
27
|
-
for (const particle of this.container.particles.filter(p => this.isEnabled(interactivityData, p))) {
|
|
28
|
-
this._parallaxInteract(interactivityData, particle);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
isEnabled(interactivityData, particle) {
|
|
32
|
-
const container = this.container, mouse = interactivityData.mouse, events = (particle?.interactivity ?? container.actualOptions.interactivity)?.events;
|
|
33
|
-
return !!events?.onHover.enable && !!mouse.position && (0, engine_1.isInArray)(parallaxMode, events.onHover.mode);
|
|
34
|
-
}
|
|
35
|
-
loadModeOptions(options, ...sources) {
|
|
36
|
-
options.parallax ??= new Parallax_js_1.Parallax();
|
|
37
|
-
for (const source of sources) {
|
|
38
|
-
options.parallax.load(source?.parallax);
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
reset() {
|
|
42
|
-
}
|
|
43
|
-
_parallaxInteract(interactivityData, particle) {
|
|
44
|
-
if (!this.isEnabled(interactivityData, particle)) {
|
|
45
|
-
return;
|
|
46
|
-
}
|
|
47
|
-
const container = this.container, options = container.actualOptions, parallaxOptions = options.interactivity?.modes.parallax;
|
|
48
|
-
if (!parallaxOptions) {
|
|
49
|
-
return;
|
|
50
|
-
}
|
|
51
|
-
const parallaxForce = parallaxOptions.force, mousePos = interactivityData.mouse.position;
|
|
52
|
-
if (!mousePos) {
|
|
53
|
-
return;
|
|
54
|
-
}
|
|
55
|
-
const canvasSize = container.canvas.size, canvasCenter = {
|
|
56
|
-
x: canvasSize.width * engine_1.half,
|
|
57
|
-
y: canvasSize.height * engine_1.half,
|
|
58
|
-
}, parallaxSmooth = parallaxOptions.smooth, factor = particle.getRadius() / parallaxForce, centerDistance = {
|
|
59
|
-
x: (mousePos.x - canvasCenter.x) * factor,
|
|
60
|
-
y: (mousePos.y - canvasCenter.y) * factor,
|
|
61
|
-
}, { offset } = particle;
|
|
62
|
-
offset.x += (centerDistance.x - offset.x) / parallaxSmooth;
|
|
63
|
-
offset.y += (centerDistance.y - offset.y) / parallaxSmooth;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
exports.Parallaxer = Parallaxer;
|
|
67
|
-
});
|
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/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/Parallax.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.loadExternalParallaxInteraction = loadExternalParallaxInteraction;
|
|
50
|
-
async function loadExternalParallaxInteraction(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?.("externalParallax", async (container) => {
|
|
56
|
-
const { Parallaxer } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./Parallaxer.js"))) : new Promise((resolve_2, reject_2) => { require(["./Parallaxer.js"], resolve_2, reject_2); }).then(__importStar));
|
|
57
|
-
return new Parallaxer(container);
|
|
58
|
-
});
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
|
-
__exportStar(require("./Options/Classes/Parallax.js"), exports);
|
|
62
|
-
});
|