@tsparticles/engine 3.0.0-alpha.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.
Files changed (1043) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +824 -0
  3. package/browser/Core/Canvas.js +398 -0
  4. package/browser/Core/Container.js +436 -0
  5. package/browser/Core/Interfaces/Colors.js +1 -0
  6. package/browser/Core/Interfaces/IBounds.js +1 -0
  7. package/browser/Core/Interfaces/IBubbleParticleData.js +1 -0
  8. package/browser/Core/Interfaces/ICircleBouncer.js +1 -0
  9. package/browser/Core/Interfaces/IColorManager.js +1 -0
  10. package/browser/Core/Interfaces/IContainerInteractivity.js +1 -0
  11. package/browser/Core/Interfaces/IContainerPlugin.js +1 -0
  12. package/browser/Core/Interfaces/ICoordinates.js +1 -0
  13. package/browser/Core/Interfaces/IDelta.js +1 -0
  14. package/browser/Core/Interfaces/IDimension.js +1 -0
  15. package/browser/Core/Interfaces/IDistance.js +1 -0
  16. package/browser/Core/Interfaces/IDrawParticleParams.js +1 -0
  17. package/browser/Core/Interfaces/IExternalInteractor.js +1 -0
  18. package/browser/Core/Interfaces/IInteractor.js +1 -0
  19. package/browser/Core/Interfaces/ILoadParams.js +1 -0
  20. package/browser/Core/Interfaces/IMouseData.js +1 -0
  21. package/browser/Core/Interfaces/IMovePathGenerator.js +1 -0
  22. package/browser/Core/Interfaces/IParticle.js +1 -0
  23. package/browser/Core/Interfaces/IParticleColorStyle.js +1 -0
  24. package/browser/Core/Interfaces/IParticleHslAnimation.js +1 -0
  25. package/browser/Core/Interfaces/IParticleLife.js +1 -0
  26. package/browser/Core/Interfaces/IParticleMover.js +1 -0
  27. package/browser/Core/Interfaces/IParticleOverride.js +1 -0
  28. package/browser/Core/Interfaces/IParticleRetinaProps.js +1 -0
  29. package/browser/Core/Interfaces/IParticleRoll.js +1 -0
  30. package/browser/Core/Interfaces/IParticleTransformValues.js +1 -0
  31. package/browser/Core/Interfaces/IParticleUpdater.js +1 -0
  32. package/browser/Core/Interfaces/IParticleValueAnimation.js +1 -0
  33. package/browser/Core/Interfaces/IParticlesInteractor.js +1 -0
  34. package/browser/Core/Interfaces/IParticlesMover.js +1 -0
  35. package/browser/Core/Interfaces/IPlugin.js +1 -0
  36. package/browser/Core/Interfaces/IPositionFromSizeParams.js +1 -0
  37. package/browser/Core/Interfaces/IRangeValue.js +1 -0
  38. package/browser/Core/Interfaces/IRectSideResult.js +1 -0
  39. package/browser/Core/Interfaces/IShapeDrawer.js +1 -0
  40. package/browser/Core/Interfaces/IShapeValues.js +1 -0
  41. package/browser/Core/Interfaces/ISlowParticleData.js +1 -0
  42. package/browser/Core/Interfaces/ITrailFillData.js +1 -0
  43. package/browser/Core/Particle.js +307 -0
  44. package/browser/Core/Particles.js +262 -0
  45. package/browser/Core/Retina.js +33 -0
  46. package/browser/Core/Utils/Circle.js +23 -0
  47. package/browser/Core/Utils/Constants.js +12 -0
  48. package/browser/Core/Utils/EventListeners.js +280 -0
  49. package/browser/Core/Utils/ExternalInteractorBase.js +6 -0
  50. package/browser/Core/Utils/FrameManager.js +42 -0
  51. package/browser/Core/Utils/InteractionManager.js +60 -0
  52. package/browser/Core/Utils/ParticlesInteractorBase.js +6 -0
  53. package/browser/Core/Utils/Plugins.js +112 -0
  54. package/browser/Core/Utils/Point.js +6 -0
  55. package/browser/Core/Utils/QuadTree.js +64 -0
  56. package/browser/Core/Utils/Range.js +8 -0
  57. package/browser/Core/Utils/Rectangle.js +22 -0
  58. package/browser/Core/Utils/Vector.js +15 -0
  59. package/browser/Core/Utils/Vector3d.js +96 -0
  60. package/browser/Enums/AnimationStatus.js +1 -0
  61. package/browser/Enums/Directions/MoveDirection.js +1 -0
  62. package/browser/Enums/Directions/OutModeDirection.js +1 -0
  63. package/browser/Enums/Directions/RotateDirection.js +1 -0
  64. package/browser/Enums/InteractivityDetect.js +1 -0
  65. package/browser/Enums/Modes/ClickMode.js +1 -0
  66. package/browser/Enums/Modes/CollisionMode.js +1 -0
  67. package/browser/Enums/Modes/DivMode.js +1 -0
  68. package/browser/Enums/Modes/HoverMode.js +1 -0
  69. package/browser/Enums/Modes/OutMode.js +1 -0
  70. package/browser/Enums/Modes/ResponsiveMode.js +1 -0
  71. package/browser/Enums/Modes/SizeMode.js +1 -0
  72. package/browser/Enums/Modes/ThemeMode.js +1 -0
  73. package/browser/Enums/Types/AlterType.js +1 -0
  74. package/browser/Enums/Types/DestroyType.js +1 -0
  75. package/browser/Enums/Types/DivType.js +1 -0
  76. package/browser/Enums/Types/EasingType.js +1 -0
  77. package/browser/Enums/Types/EventType.js +1 -0
  78. package/browser/Enums/Types/GradientType.js +1 -0
  79. package/browser/Enums/Types/InteractorType.js +1 -0
  80. package/browser/Enums/Types/ParticleOutType.js +1 -0
  81. package/browser/Enums/Types/StartValueType.js +1 -0
  82. package/browser/Options/Classes/AnimatableColor.js +36 -0
  83. package/browser/Options/Classes/AnimationOptions.js +48 -0
  84. package/browser/Options/Classes/Background/Background.js +35 -0
  85. package/browser/Options/Classes/BackgroundMask/BackgroundMask.js +24 -0
  86. package/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js +19 -0
  87. package/browser/Options/Classes/ColorAnimation.js +34 -0
  88. package/browser/Options/Classes/FullScreen/FullScreen.js +17 -0
  89. package/browser/Options/Classes/HslAnimation.js +16 -0
  90. package/browser/Options/Classes/Interactivity/Events/ClickEvent.js +17 -0
  91. package/browser/Options/Classes/Interactivity/Events/DivEvent.js +49 -0
  92. package/browser/Options/Classes/Interactivity/Events/Events.js +53 -0
  93. package/browser/Options/Classes/Interactivity/Events/HoverEvent.js +20 -0
  94. package/browser/Options/Classes/Interactivity/Events/Parallax.js +21 -0
  95. package/browser/Options/Classes/Interactivity/Events/ResizeEvent.js +17 -0
  96. package/browser/Options/Classes/Interactivity/Interactivity.js +27 -0
  97. package/browser/Options/Classes/Interactivity/Modes/Modes.js +21 -0
  98. package/browser/Options/Classes/ManualParticle.js +18 -0
  99. package/browser/Options/Classes/Options.js +170 -0
  100. package/browser/Options/Classes/OptionsColor.js +24 -0
  101. package/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js +14 -0
  102. package/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +8 -0
  103. package/browser/Options/Classes/Particles/Collisions/Collisions.js +26 -0
  104. package/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js +13 -0
  105. package/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js +17 -0
  106. package/browser/Options/Classes/Particles/Move/Move.js +124 -0
  107. package/browser/Options/Classes/Particles/Move/MoveAngle.js +18 -0
  108. package/browser/Options/Classes/Particles/Move/MoveAttract.js +43 -0
  109. package/browser/Options/Classes/Particles/Move/MoveCenter.js +25 -0
  110. package/browser/Options/Classes/Particles/Move/MoveGravity.js +26 -0
  111. package/browser/Options/Classes/Particles/Move/MoveTrail.js +28 -0
  112. package/browser/Options/Classes/Particles/Move/MoveTrailFill.js +14 -0
  113. package/browser/Options/Classes/Particles/Move/OutModes.js +18 -0
  114. package/browser/Options/Classes/Particles/Move/Path/MovePath.js +26 -0
  115. package/browser/Options/Classes/Particles/Move/Spin.js +20 -0
  116. package/browser/Options/Classes/Particles/Number/ParticlesDensity.js +42 -0
  117. package/browser/Options/Classes/Particles/Number/ParticlesNumber.js +28 -0
  118. package/browser/Options/Classes/Particles/Opacity/Opacity.js +16 -0
  119. package/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js +26 -0
  120. package/browser/Options/Classes/Particles/ParticlesOptions.js +92 -0
  121. package/browser/Options/Classes/Particles/Shadow.js +34 -0
  122. package/browser/Options/Classes/Particles/Shape/Shape.js +25 -0
  123. package/browser/Options/Classes/Particles/Size/Size.js +16 -0
  124. package/browser/Options/Classes/Particles/Size/SizeAnimation.js +26 -0
  125. package/browser/Options/Classes/Particles/Stroke.js +21 -0
  126. package/browser/Options/Classes/Particles/ZIndex/ZIndex.js +24 -0
  127. package/browser/Options/Classes/Random.js +17 -0
  128. package/browser/Options/Classes/Responsive.js +27 -0
  129. package/browser/Options/Classes/Theme/Theme.js +20 -0
  130. package/browser/Options/Classes/Theme/ThemeDefault.js +21 -0
  131. package/browser/Options/Classes/ValueWithRandom.js +62 -0
  132. package/browser/Options/Interfaces/Background/IBackground.js +1 -0
  133. package/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.js +1 -0
  134. package/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.js +1 -0
  135. package/browser/Options/Interfaces/FullScreen/IFullScreen.js +1 -0
  136. package/browser/Options/Interfaces/IAnimatable.js +1 -0
  137. package/browser/Options/Interfaces/IAnimatableColor.js +1 -0
  138. package/browser/Options/Interfaces/IAnimation.js +1 -0
  139. package/browser/Options/Interfaces/IColorAnimation.js +1 -0
  140. package/browser/Options/Interfaces/IHslAnimation.js +1 -0
  141. package/browser/Options/Interfaces/IManualParticle.js +1 -0
  142. package/browser/Options/Interfaces/IOptionLoader.js +1 -0
  143. package/browser/Options/Interfaces/IOptions.js +1 -0
  144. package/browser/Options/Interfaces/IOptionsColor.js +1 -0
  145. package/browser/Options/Interfaces/IRandom.js +1 -0
  146. package/browser/Options/Interfaces/IResponsive.js +1 -0
  147. package/browser/Options/Interfaces/IValueWithRandom.js +1 -0
  148. package/browser/Options/Interfaces/Interactivity/Events/IClickEvent.js +1 -0
  149. package/browser/Options/Interfaces/Interactivity/Events/IDivEvent.js +1 -0
  150. package/browser/Options/Interfaces/Interactivity/Events/IEvents.js +1 -0
  151. package/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.js +1 -0
  152. package/browser/Options/Interfaces/Interactivity/Events/IParallax.js +1 -0
  153. package/browser/Options/Interfaces/Interactivity/Events/IResizeEvent.js +1 -0
  154. package/browser/Options/Interfaces/Interactivity/IInteractivity.js +1 -0
  155. package/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.js +1 -0
  156. package/browser/Options/Interfaces/Interactivity/Modes/IModes.js +1 -0
  157. package/browser/Options/Interfaces/Particles/Bounce/IParticlesBounce.js +1 -0
  158. package/browser/Options/Interfaces/Particles/Collisions/ICollisions.js +1 -0
  159. package/browser/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.js +1 -0
  160. package/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.js +1 -0
  161. package/browser/Options/Interfaces/Particles/IParticlesOptions.js +1 -0
  162. package/browser/Options/Interfaces/Particles/IShadow.js +1 -0
  163. package/browser/Options/Interfaces/Particles/IStroke.js +1 -0
  164. package/browser/Options/Interfaces/Particles/Move/IMove.js +1 -0
  165. package/browser/Options/Interfaces/Particles/Move/IMoveAngle.js +1 -0
  166. package/browser/Options/Interfaces/Particles/Move/IMoveAttract.js +1 -0
  167. package/browser/Options/Interfaces/Particles/Move/IMoveCenter.js +1 -0
  168. package/browser/Options/Interfaces/Particles/Move/IMoveGravity.js +1 -0
  169. package/browser/Options/Interfaces/Particles/Move/IMoveTrail.js +1 -0
  170. package/browser/Options/Interfaces/Particles/Move/IMoveTrailFill.js +1 -0
  171. package/browser/Options/Interfaces/Particles/Move/IOutModes.js +1 -0
  172. package/browser/Options/Interfaces/Particles/Move/ISpin.js +1 -0
  173. package/browser/Options/Interfaces/Particles/Move/Path/IMovePath.js +1 -0
  174. package/browser/Options/Interfaces/Particles/Number/IParticlesDensity.js +1 -0
  175. package/browser/Options/Interfaces/Particles/Number/IParticlesNumber.js +1 -0
  176. package/browser/Options/Interfaces/Particles/Opacity/IOpacity.js +1 -0
  177. package/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.js +1 -0
  178. package/browser/Options/Interfaces/Particles/Shape/ICharacterShape.js +1 -0
  179. package/browser/Options/Interfaces/Particles/Shape/IImageShape.js +1 -0
  180. package/browser/Options/Interfaces/Particles/Shape/IPolygonShape.js +1 -0
  181. package/browser/Options/Interfaces/Particles/Shape/IShape.js +1 -0
  182. package/browser/Options/Interfaces/Particles/Shape/IShapeValues.js +1 -0
  183. package/browser/Options/Interfaces/Particles/Shape/IStarShape.js +1 -0
  184. package/browser/Options/Interfaces/Particles/Size/ISize.js +1 -0
  185. package/browser/Options/Interfaces/Particles/Size/ISizeAnimation.js +1 -0
  186. package/browser/Options/Interfaces/Particles/ZIndex/IZIndex.js +1 -0
  187. package/browser/Options/Interfaces/Theme/ITheme.js +1 -0
  188. package/browser/Options/Interfaces/Theme/IThemeDefault.js +1 -0
  189. package/browser/Types/CustomEventArgs.js +1 -0
  190. package/browser/Types/CustomEventListener.js +1 -0
  191. package/browser/Types/ISourceOptions.js +1 -0
  192. package/browser/Types/ParticlesGroups.js +1 -0
  193. package/browser/Types/PathOptions.js +1 -0
  194. package/browser/Types/RangeValue.js +1 -0
  195. package/browser/Types/RecursivePartial.js +1 -0
  196. package/browser/Types/ShapeData.js +1 -0
  197. package/browser/Types/ShapeDrawerFunctions.js +1 -0
  198. package/browser/Types/SingleOrMultiple.js +1 -0
  199. package/browser/Utils/CanvasUtils.js +149 -0
  200. package/browser/Utils/ColorUtils.js +274 -0
  201. package/browser/Utils/EventDispatcher.js +44 -0
  202. package/browser/Utils/HslColorManager.js +40 -0
  203. package/browser/Utils/NumberUtils.js +149 -0
  204. package/browser/Utils/OptionsUtils.js +11 -0
  205. package/browser/Utils/RgbColorManager.js +39 -0
  206. package/browser/Utils/Utils.js +247 -0
  207. package/browser/bundle.js +97 -0
  208. package/browser/engine.js +175 -0
  209. package/browser/index.js +199 -0
  210. package/cjs/Core/Canvas.js +402 -0
  211. package/cjs/Core/Container.js +440 -0
  212. package/cjs/Core/Interfaces/Colors.js +2 -0
  213. package/cjs/Core/Interfaces/IBounds.js +2 -0
  214. package/cjs/Core/Interfaces/IBubbleParticleData.js +2 -0
  215. package/cjs/Core/Interfaces/ICircleBouncer.js +2 -0
  216. package/cjs/Core/Interfaces/IColorManager.js +2 -0
  217. package/cjs/Core/Interfaces/IContainerInteractivity.js +2 -0
  218. package/cjs/Core/Interfaces/IContainerPlugin.js +2 -0
  219. package/cjs/Core/Interfaces/ICoordinates.js +2 -0
  220. package/cjs/Core/Interfaces/IDelta.js +2 -0
  221. package/cjs/Core/Interfaces/IDimension.js +2 -0
  222. package/cjs/Core/Interfaces/IDistance.js +2 -0
  223. package/cjs/Core/Interfaces/IDrawParticleParams.js +2 -0
  224. package/cjs/Core/Interfaces/IExternalInteractor.js +2 -0
  225. package/cjs/Core/Interfaces/IInteractor.js +2 -0
  226. package/cjs/Core/Interfaces/ILoadParams.js +2 -0
  227. package/cjs/Core/Interfaces/IMouseData.js +2 -0
  228. package/cjs/Core/Interfaces/IMovePathGenerator.js +2 -0
  229. package/cjs/Core/Interfaces/IParticle.js +2 -0
  230. package/cjs/Core/Interfaces/IParticleColorStyle.js +2 -0
  231. package/cjs/Core/Interfaces/IParticleHslAnimation.js +2 -0
  232. package/cjs/Core/Interfaces/IParticleLife.js +2 -0
  233. package/cjs/Core/Interfaces/IParticleMover.js +2 -0
  234. package/cjs/Core/Interfaces/IParticleOverride.js +2 -0
  235. package/cjs/Core/Interfaces/IParticleRetinaProps.js +2 -0
  236. package/cjs/Core/Interfaces/IParticleRoll.js +2 -0
  237. package/cjs/Core/Interfaces/IParticleTransformValues.js +2 -0
  238. package/cjs/Core/Interfaces/IParticleUpdater.js +2 -0
  239. package/cjs/Core/Interfaces/IParticleValueAnimation.js +2 -0
  240. package/cjs/Core/Interfaces/IParticlesInteractor.js +2 -0
  241. package/cjs/Core/Interfaces/IParticlesMover.js +2 -0
  242. package/cjs/Core/Interfaces/IPlugin.js +2 -0
  243. package/cjs/Core/Interfaces/IPositionFromSizeParams.js +2 -0
  244. package/cjs/Core/Interfaces/IRangeValue.js +2 -0
  245. package/cjs/Core/Interfaces/IRectSideResult.js +2 -0
  246. package/cjs/Core/Interfaces/IShapeDrawer.js +2 -0
  247. package/cjs/Core/Interfaces/IShapeValues.js +2 -0
  248. package/cjs/Core/Interfaces/ISlowParticleData.js +2 -0
  249. package/cjs/Core/Interfaces/ITrailFillData.js +2 -0
  250. package/cjs/Core/Particle.js +311 -0
  251. package/cjs/Core/Particles.js +266 -0
  252. package/cjs/Core/Retina.js +37 -0
  253. package/cjs/Core/Utils/Circle.js +27 -0
  254. package/cjs/Core/Utils/Constants.js +15 -0
  255. package/cjs/Core/Utils/EventListeners.js +284 -0
  256. package/cjs/Core/Utils/ExternalInteractorBase.js +10 -0
  257. package/cjs/Core/Utils/FrameManager.js +46 -0
  258. package/cjs/Core/Utils/InteractionManager.js +64 -0
  259. package/cjs/Core/Utils/ParticlesInteractorBase.js +10 -0
  260. package/cjs/Core/Utils/Plugins.js +116 -0
  261. package/cjs/Core/Utils/Point.js +10 -0
  262. package/cjs/Core/Utils/QuadTree.js +68 -0
  263. package/cjs/Core/Utils/Range.js +12 -0
  264. package/cjs/Core/Utils/Rectangle.js +26 -0
  265. package/cjs/Core/Utils/Vector.js +19 -0
  266. package/cjs/Core/Utils/Vector3d.js +100 -0
  267. package/cjs/Enums/AnimationStatus.js +2 -0
  268. package/cjs/Enums/Directions/MoveDirection.js +2 -0
  269. package/cjs/Enums/Directions/OutModeDirection.js +2 -0
  270. package/cjs/Enums/Directions/RotateDirection.js +2 -0
  271. package/cjs/Enums/InteractivityDetect.js +2 -0
  272. package/cjs/Enums/Modes/ClickMode.js +2 -0
  273. package/cjs/Enums/Modes/CollisionMode.js +2 -0
  274. package/cjs/Enums/Modes/DivMode.js +2 -0
  275. package/cjs/Enums/Modes/HoverMode.js +2 -0
  276. package/cjs/Enums/Modes/OutMode.js +2 -0
  277. package/cjs/Enums/Modes/ResponsiveMode.js +2 -0
  278. package/cjs/Enums/Modes/SizeMode.js +2 -0
  279. package/cjs/Enums/Modes/ThemeMode.js +2 -0
  280. package/cjs/Enums/Types/AlterType.js +2 -0
  281. package/cjs/Enums/Types/DestroyType.js +2 -0
  282. package/cjs/Enums/Types/DivType.js +2 -0
  283. package/cjs/Enums/Types/EasingType.js +2 -0
  284. package/cjs/Enums/Types/EventType.js +2 -0
  285. package/cjs/Enums/Types/GradientType.js +2 -0
  286. package/cjs/Enums/Types/InteractorType.js +2 -0
  287. package/cjs/Enums/Types/ParticleOutType.js +2 -0
  288. package/cjs/Enums/Types/StartValueType.js +2 -0
  289. package/cjs/Options/Classes/AnimatableColor.js +40 -0
  290. package/cjs/Options/Classes/AnimationOptions.js +53 -0
  291. package/cjs/Options/Classes/Background/Background.js +39 -0
  292. package/cjs/Options/Classes/BackgroundMask/BackgroundMask.js +28 -0
  293. package/cjs/Options/Classes/BackgroundMask/BackgroundMaskCover.js +23 -0
  294. package/cjs/Options/Classes/ColorAnimation.js +38 -0
  295. package/cjs/Options/Classes/FullScreen/FullScreen.js +21 -0
  296. package/cjs/Options/Classes/HslAnimation.js +20 -0
  297. package/cjs/Options/Classes/Interactivity/Events/ClickEvent.js +21 -0
  298. package/cjs/Options/Classes/Interactivity/Events/DivEvent.js +53 -0
  299. package/cjs/Options/Classes/Interactivity/Events/Events.js +57 -0
  300. package/cjs/Options/Classes/Interactivity/Events/HoverEvent.js +24 -0
  301. package/cjs/Options/Classes/Interactivity/Events/Parallax.js +25 -0
  302. package/cjs/Options/Classes/Interactivity/Events/ResizeEvent.js +21 -0
  303. package/cjs/Options/Classes/Interactivity/Interactivity.js +31 -0
  304. package/cjs/Options/Classes/Interactivity/Modes/Modes.js +25 -0
  305. package/cjs/Options/Classes/ManualParticle.js +22 -0
  306. package/cjs/Options/Classes/Options.js +174 -0
  307. package/cjs/Options/Classes/OptionsColor.js +28 -0
  308. package/cjs/Options/Classes/Particles/Bounce/ParticlesBounce.js +18 -0
  309. package/cjs/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +12 -0
  310. package/cjs/Options/Classes/Particles/Collisions/Collisions.js +30 -0
  311. package/cjs/Options/Classes/Particles/Collisions/CollisionsAbsorb.js +17 -0
  312. package/cjs/Options/Classes/Particles/Collisions/CollisionsOverlap.js +21 -0
  313. package/cjs/Options/Classes/Particles/Move/Move.js +128 -0
  314. package/cjs/Options/Classes/Particles/Move/MoveAngle.js +22 -0
  315. package/cjs/Options/Classes/Particles/Move/MoveAttract.js +47 -0
  316. package/cjs/Options/Classes/Particles/Move/MoveCenter.js +29 -0
  317. package/cjs/Options/Classes/Particles/Move/MoveGravity.js +30 -0
  318. package/cjs/Options/Classes/Particles/Move/MoveTrail.js +32 -0
  319. package/cjs/Options/Classes/Particles/Move/MoveTrailFill.js +18 -0
  320. package/cjs/Options/Classes/Particles/Move/OutModes.js +22 -0
  321. package/cjs/Options/Classes/Particles/Move/Path/MovePath.js +30 -0
  322. package/cjs/Options/Classes/Particles/Move/Spin.js +24 -0
  323. package/cjs/Options/Classes/Particles/Number/ParticlesDensity.js +46 -0
  324. package/cjs/Options/Classes/Particles/Number/ParticlesNumber.js +32 -0
  325. package/cjs/Options/Classes/Particles/Opacity/Opacity.js +20 -0
  326. package/cjs/Options/Classes/Particles/Opacity/OpacityAnimation.js +30 -0
  327. package/cjs/Options/Classes/Particles/ParticlesOptions.js +96 -0
  328. package/cjs/Options/Classes/Particles/Shadow.js +38 -0
  329. package/cjs/Options/Classes/Particles/Shape/Shape.js +29 -0
  330. package/cjs/Options/Classes/Particles/Size/Size.js +20 -0
  331. package/cjs/Options/Classes/Particles/Size/SizeAnimation.js +30 -0
  332. package/cjs/Options/Classes/Particles/Stroke.js +25 -0
  333. package/cjs/Options/Classes/Particles/ZIndex/ZIndex.js +28 -0
  334. package/cjs/Options/Classes/Random.js +21 -0
  335. package/cjs/Options/Classes/Responsive.js +31 -0
  336. package/cjs/Options/Classes/Theme/Theme.js +24 -0
  337. package/cjs/Options/Classes/Theme/ThemeDefault.js +25 -0
  338. package/cjs/Options/Classes/ValueWithRandom.js +68 -0
  339. package/cjs/Options/Interfaces/Background/IBackground.js +2 -0
  340. package/cjs/Options/Interfaces/BackgroundMask/IBackgroundMask.js +2 -0
  341. package/cjs/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.js +2 -0
  342. package/cjs/Options/Interfaces/FullScreen/IFullScreen.js +2 -0
  343. package/cjs/Options/Interfaces/IAnimatable.js +2 -0
  344. package/cjs/Options/Interfaces/IAnimatableColor.js +2 -0
  345. package/cjs/Options/Interfaces/IAnimation.js +2 -0
  346. package/cjs/Options/Interfaces/IColorAnimation.js +2 -0
  347. package/cjs/Options/Interfaces/IHslAnimation.js +2 -0
  348. package/cjs/Options/Interfaces/IManualParticle.js +2 -0
  349. package/cjs/Options/Interfaces/IOptionLoader.js +2 -0
  350. package/cjs/Options/Interfaces/IOptions.js +2 -0
  351. package/cjs/Options/Interfaces/IOptionsColor.js +2 -0
  352. package/cjs/Options/Interfaces/IRandom.js +2 -0
  353. package/cjs/Options/Interfaces/IResponsive.js +2 -0
  354. package/cjs/Options/Interfaces/IValueWithRandom.js +2 -0
  355. package/cjs/Options/Interfaces/Interactivity/Events/IClickEvent.js +2 -0
  356. package/cjs/Options/Interfaces/Interactivity/Events/IDivEvent.js +2 -0
  357. package/cjs/Options/Interfaces/Interactivity/Events/IEvents.js +2 -0
  358. package/cjs/Options/Interfaces/Interactivity/Events/IHoverEvent.js +2 -0
  359. package/cjs/Options/Interfaces/Interactivity/Events/IParallax.js +2 -0
  360. package/cjs/Options/Interfaces/Interactivity/Events/IResizeEvent.js +2 -0
  361. package/cjs/Options/Interfaces/Interactivity/IInteractivity.js +2 -0
  362. package/cjs/Options/Interfaces/Interactivity/Modes/IModeDiv.js +2 -0
  363. package/cjs/Options/Interfaces/Interactivity/Modes/IModes.js +2 -0
  364. package/cjs/Options/Interfaces/Particles/Bounce/IParticlesBounce.js +2 -0
  365. package/cjs/Options/Interfaces/Particles/Collisions/ICollisions.js +2 -0
  366. package/cjs/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.js +2 -0
  367. package/cjs/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.js +2 -0
  368. package/cjs/Options/Interfaces/Particles/IParticlesOptions.js +2 -0
  369. package/cjs/Options/Interfaces/Particles/IShadow.js +2 -0
  370. package/cjs/Options/Interfaces/Particles/IStroke.js +2 -0
  371. package/cjs/Options/Interfaces/Particles/Move/IMove.js +2 -0
  372. package/cjs/Options/Interfaces/Particles/Move/IMoveAngle.js +2 -0
  373. package/cjs/Options/Interfaces/Particles/Move/IMoveAttract.js +2 -0
  374. package/cjs/Options/Interfaces/Particles/Move/IMoveCenter.js +2 -0
  375. package/cjs/Options/Interfaces/Particles/Move/IMoveGravity.js +2 -0
  376. package/cjs/Options/Interfaces/Particles/Move/IMoveTrail.js +2 -0
  377. package/cjs/Options/Interfaces/Particles/Move/IMoveTrailFill.js +2 -0
  378. package/cjs/Options/Interfaces/Particles/Move/IOutModes.js +2 -0
  379. package/cjs/Options/Interfaces/Particles/Move/ISpin.js +2 -0
  380. package/cjs/Options/Interfaces/Particles/Move/Path/IMovePath.js +2 -0
  381. package/cjs/Options/Interfaces/Particles/Number/IParticlesDensity.js +2 -0
  382. package/cjs/Options/Interfaces/Particles/Number/IParticlesNumber.js +2 -0
  383. package/cjs/Options/Interfaces/Particles/Opacity/IOpacity.js +2 -0
  384. package/cjs/Options/Interfaces/Particles/Opacity/IOpacityAnimation.js +2 -0
  385. package/cjs/Options/Interfaces/Particles/Shape/ICharacterShape.js +2 -0
  386. package/cjs/Options/Interfaces/Particles/Shape/IImageShape.js +2 -0
  387. package/cjs/Options/Interfaces/Particles/Shape/IPolygonShape.js +2 -0
  388. package/cjs/Options/Interfaces/Particles/Shape/IShape.js +2 -0
  389. package/cjs/Options/Interfaces/Particles/Shape/IShapeValues.js +17 -0
  390. package/cjs/Options/Interfaces/Particles/Shape/IStarShape.js +2 -0
  391. package/cjs/Options/Interfaces/Particles/Size/ISize.js +2 -0
  392. package/cjs/Options/Interfaces/Particles/Size/ISizeAnimation.js +2 -0
  393. package/cjs/Options/Interfaces/Particles/ZIndex/IZIndex.js +2 -0
  394. package/cjs/Options/Interfaces/Theme/ITheme.js +2 -0
  395. package/cjs/Options/Interfaces/Theme/IThemeDefault.js +2 -0
  396. package/cjs/Types/CustomEventArgs.js +2 -0
  397. package/cjs/Types/CustomEventListener.js +2 -0
  398. package/cjs/Types/ISourceOptions.js +2 -0
  399. package/cjs/Types/ParticlesGroups.js +2 -0
  400. package/cjs/Types/PathOptions.js +2 -0
  401. package/cjs/Types/RangeValue.js +2 -0
  402. package/cjs/Types/RecursivePartial.js +2 -0
  403. package/cjs/Types/ShapeData.js +2 -0
  404. package/cjs/Types/ShapeDrawerFunctions.js +2 -0
  405. package/cjs/Types/SingleOrMultiple.js +2 -0
  406. package/cjs/Utils/CanvasUtils.js +164 -0
  407. package/cjs/Utils/ColorUtils.js +295 -0
  408. package/cjs/Utils/EventDispatcher.js +48 -0
  409. package/cjs/Utils/HslColorManager.js +44 -0
  410. package/cjs/Utils/NumberUtils.js +175 -0
  411. package/cjs/Utils/OptionsUtils.js +16 -0
  412. package/cjs/Utils/RgbColorManager.js +43 -0
  413. package/cjs/Utils/Utils.js +274 -0
  414. package/cjs/bundle.js +114 -0
  415. package/cjs/engine.js +179 -0
  416. package/cjs/index.js +216 -0
  417. package/esm/Core/Canvas.js +398 -0
  418. package/esm/Core/Container.js +436 -0
  419. package/esm/Core/Interfaces/Colors.js +1 -0
  420. package/esm/Core/Interfaces/IBounds.js +1 -0
  421. package/esm/Core/Interfaces/IBubbleParticleData.js +1 -0
  422. package/esm/Core/Interfaces/ICircleBouncer.js +1 -0
  423. package/esm/Core/Interfaces/IColorManager.js +1 -0
  424. package/esm/Core/Interfaces/IContainerInteractivity.js +1 -0
  425. package/esm/Core/Interfaces/IContainerPlugin.js +1 -0
  426. package/esm/Core/Interfaces/ICoordinates.js +1 -0
  427. package/esm/Core/Interfaces/IDelta.js +1 -0
  428. package/esm/Core/Interfaces/IDimension.js +1 -0
  429. package/esm/Core/Interfaces/IDistance.js +1 -0
  430. package/esm/Core/Interfaces/IDrawParticleParams.js +1 -0
  431. package/esm/Core/Interfaces/IExternalInteractor.js +1 -0
  432. package/esm/Core/Interfaces/IInteractor.js +1 -0
  433. package/esm/Core/Interfaces/ILoadParams.js +1 -0
  434. package/esm/Core/Interfaces/IMouseData.js +1 -0
  435. package/esm/Core/Interfaces/IMovePathGenerator.js +1 -0
  436. package/esm/Core/Interfaces/IParticle.js +1 -0
  437. package/esm/Core/Interfaces/IParticleColorStyle.js +1 -0
  438. package/esm/Core/Interfaces/IParticleHslAnimation.js +1 -0
  439. package/esm/Core/Interfaces/IParticleLife.js +1 -0
  440. package/esm/Core/Interfaces/IParticleMover.js +1 -0
  441. package/esm/Core/Interfaces/IParticleOverride.js +1 -0
  442. package/esm/Core/Interfaces/IParticleRetinaProps.js +1 -0
  443. package/esm/Core/Interfaces/IParticleRoll.js +1 -0
  444. package/esm/Core/Interfaces/IParticleTransformValues.js +1 -0
  445. package/esm/Core/Interfaces/IParticleUpdater.js +1 -0
  446. package/esm/Core/Interfaces/IParticleValueAnimation.js +1 -0
  447. package/esm/Core/Interfaces/IParticlesInteractor.js +1 -0
  448. package/esm/Core/Interfaces/IParticlesMover.js +1 -0
  449. package/esm/Core/Interfaces/IPlugin.js +1 -0
  450. package/esm/Core/Interfaces/IPositionFromSizeParams.js +1 -0
  451. package/esm/Core/Interfaces/IRangeValue.js +1 -0
  452. package/esm/Core/Interfaces/IRectSideResult.js +1 -0
  453. package/esm/Core/Interfaces/IShapeDrawer.js +1 -0
  454. package/esm/Core/Interfaces/IShapeValues.js +1 -0
  455. package/esm/Core/Interfaces/ISlowParticleData.js +1 -0
  456. package/esm/Core/Interfaces/ITrailFillData.js +1 -0
  457. package/esm/Core/Particle.js +307 -0
  458. package/esm/Core/Particles.js +262 -0
  459. package/esm/Core/Retina.js +33 -0
  460. package/esm/Core/Utils/Circle.js +23 -0
  461. package/esm/Core/Utils/Constants.js +12 -0
  462. package/esm/Core/Utils/EventListeners.js +280 -0
  463. package/esm/Core/Utils/ExternalInteractorBase.js +6 -0
  464. package/esm/Core/Utils/FrameManager.js +42 -0
  465. package/esm/Core/Utils/InteractionManager.js +60 -0
  466. package/esm/Core/Utils/ParticlesInteractorBase.js +6 -0
  467. package/esm/Core/Utils/Plugins.js +112 -0
  468. package/esm/Core/Utils/Point.js +6 -0
  469. package/esm/Core/Utils/QuadTree.js +64 -0
  470. package/esm/Core/Utils/Range.js +8 -0
  471. package/esm/Core/Utils/Rectangle.js +22 -0
  472. package/esm/Core/Utils/Vector.js +15 -0
  473. package/esm/Core/Utils/Vector3d.js +96 -0
  474. package/esm/Enums/AnimationStatus.js +1 -0
  475. package/esm/Enums/Directions/MoveDirection.js +1 -0
  476. package/esm/Enums/Directions/OutModeDirection.js +1 -0
  477. package/esm/Enums/Directions/RotateDirection.js +1 -0
  478. package/esm/Enums/InteractivityDetect.js +1 -0
  479. package/esm/Enums/Modes/ClickMode.js +1 -0
  480. package/esm/Enums/Modes/CollisionMode.js +1 -0
  481. package/esm/Enums/Modes/DivMode.js +1 -0
  482. package/esm/Enums/Modes/HoverMode.js +1 -0
  483. package/esm/Enums/Modes/OutMode.js +1 -0
  484. package/esm/Enums/Modes/ResponsiveMode.js +1 -0
  485. package/esm/Enums/Modes/SizeMode.js +1 -0
  486. package/esm/Enums/Modes/ThemeMode.js +1 -0
  487. package/esm/Enums/Types/AlterType.js +1 -0
  488. package/esm/Enums/Types/DestroyType.js +1 -0
  489. package/esm/Enums/Types/DivType.js +1 -0
  490. package/esm/Enums/Types/EasingType.js +1 -0
  491. package/esm/Enums/Types/EventType.js +1 -0
  492. package/esm/Enums/Types/GradientType.js +1 -0
  493. package/esm/Enums/Types/InteractorType.js +1 -0
  494. package/esm/Enums/Types/ParticleOutType.js +1 -0
  495. package/esm/Enums/Types/StartValueType.js +1 -0
  496. package/esm/Options/Classes/AnimatableColor.js +36 -0
  497. package/esm/Options/Classes/AnimationOptions.js +48 -0
  498. package/esm/Options/Classes/Background/Background.js +35 -0
  499. package/esm/Options/Classes/BackgroundMask/BackgroundMask.js +24 -0
  500. package/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.js +19 -0
  501. package/esm/Options/Classes/ColorAnimation.js +34 -0
  502. package/esm/Options/Classes/FullScreen/FullScreen.js +17 -0
  503. package/esm/Options/Classes/HslAnimation.js +16 -0
  504. package/esm/Options/Classes/Interactivity/Events/ClickEvent.js +17 -0
  505. package/esm/Options/Classes/Interactivity/Events/DivEvent.js +49 -0
  506. package/esm/Options/Classes/Interactivity/Events/Events.js +53 -0
  507. package/esm/Options/Classes/Interactivity/Events/HoverEvent.js +20 -0
  508. package/esm/Options/Classes/Interactivity/Events/Parallax.js +21 -0
  509. package/esm/Options/Classes/Interactivity/Events/ResizeEvent.js +17 -0
  510. package/esm/Options/Classes/Interactivity/Interactivity.js +27 -0
  511. package/esm/Options/Classes/Interactivity/Modes/Modes.js +21 -0
  512. package/esm/Options/Classes/ManualParticle.js +18 -0
  513. package/esm/Options/Classes/Options.js +170 -0
  514. package/esm/Options/Classes/OptionsColor.js +24 -0
  515. package/esm/Options/Classes/Particles/Bounce/ParticlesBounce.js +14 -0
  516. package/esm/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +8 -0
  517. package/esm/Options/Classes/Particles/Collisions/Collisions.js +26 -0
  518. package/esm/Options/Classes/Particles/Collisions/CollisionsAbsorb.js +13 -0
  519. package/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.js +17 -0
  520. package/esm/Options/Classes/Particles/Move/Move.js +124 -0
  521. package/esm/Options/Classes/Particles/Move/MoveAngle.js +18 -0
  522. package/esm/Options/Classes/Particles/Move/MoveAttract.js +43 -0
  523. package/esm/Options/Classes/Particles/Move/MoveCenter.js +25 -0
  524. package/esm/Options/Classes/Particles/Move/MoveGravity.js +26 -0
  525. package/esm/Options/Classes/Particles/Move/MoveTrail.js +28 -0
  526. package/esm/Options/Classes/Particles/Move/MoveTrailFill.js +14 -0
  527. package/esm/Options/Classes/Particles/Move/OutModes.js +18 -0
  528. package/esm/Options/Classes/Particles/Move/Path/MovePath.js +26 -0
  529. package/esm/Options/Classes/Particles/Move/Spin.js +20 -0
  530. package/esm/Options/Classes/Particles/Number/ParticlesDensity.js +42 -0
  531. package/esm/Options/Classes/Particles/Number/ParticlesNumber.js +28 -0
  532. package/esm/Options/Classes/Particles/Opacity/Opacity.js +16 -0
  533. package/esm/Options/Classes/Particles/Opacity/OpacityAnimation.js +26 -0
  534. package/esm/Options/Classes/Particles/ParticlesOptions.js +92 -0
  535. package/esm/Options/Classes/Particles/Shadow.js +34 -0
  536. package/esm/Options/Classes/Particles/Shape/Shape.js +25 -0
  537. package/esm/Options/Classes/Particles/Size/Size.js +16 -0
  538. package/esm/Options/Classes/Particles/Size/SizeAnimation.js +26 -0
  539. package/esm/Options/Classes/Particles/Stroke.js +21 -0
  540. package/esm/Options/Classes/Particles/ZIndex/ZIndex.js +24 -0
  541. package/esm/Options/Classes/Random.js +17 -0
  542. package/esm/Options/Classes/Responsive.js +27 -0
  543. package/esm/Options/Classes/Theme/Theme.js +20 -0
  544. package/esm/Options/Classes/Theme/ThemeDefault.js +21 -0
  545. package/esm/Options/Classes/ValueWithRandom.js +62 -0
  546. package/esm/Options/Interfaces/Background/IBackground.js +1 -0
  547. package/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.js +1 -0
  548. package/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.js +1 -0
  549. package/esm/Options/Interfaces/FullScreen/IFullScreen.js +1 -0
  550. package/esm/Options/Interfaces/IAnimatable.js +1 -0
  551. package/esm/Options/Interfaces/IAnimatableColor.js +1 -0
  552. package/esm/Options/Interfaces/IAnimation.js +1 -0
  553. package/esm/Options/Interfaces/IColorAnimation.js +1 -0
  554. package/esm/Options/Interfaces/IHslAnimation.js +1 -0
  555. package/esm/Options/Interfaces/IManualParticle.js +1 -0
  556. package/esm/Options/Interfaces/IOptionLoader.js +1 -0
  557. package/esm/Options/Interfaces/IOptions.js +1 -0
  558. package/esm/Options/Interfaces/IOptionsColor.js +1 -0
  559. package/esm/Options/Interfaces/IRandom.js +1 -0
  560. package/esm/Options/Interfaces/IResponsive.js +1 -0
  561. package/esm/Options/Interfaces/IValueWithRandom.js +1 -0
  562. package/esm/Options/Interfaces/Interactivity/Events/IClickEvent.js +1 -0
  563. package/esm/Options/Interfaces/Interactivity/Events/IDivEvent.js +1 -0
  564. package/esm/Options/Interfaces/Interactivity/Events/IEvents.js +1 -0
  565. package/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.js +1 -0
  566. package/esm/Options/Interfaces/Interactivity/Events/IParallax.js +1 -0
  567. package/esm/Options/Interfaces/Interactivity/Events/IResizeEvent.js +1 -0
  568. package/esm/Options/Interfaces/Interactivity/IInteractivity.js +1 -0
  569. package/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.js +1 -0
  570. package/esm/Options/Interfaces/Interactivity/Modes/IModes.js +1 -0
  571. package/esm/Options/Interfaces/Particles/Bounce/IParticlesBounce.js +1 -0
  572. package/esm/Options/Interfaces/Particles/Collisions/ICollisions.js +1 -0
  573. package/esm/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.js +1 -0
  574. package/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.js +1 -0
  575. package/esm/Options/Interfaces/Particles/IParticlesOptions.js +1 -0
  576. package/esm/Options/Interfaces/Particles/IShadow.js +1 -0
  577. package/esm/Options/Interfaces/Particles/IStroke.js +1 -0
  578. package/esm/Options/Interfaces/Particles/Move/IMove.js +1 -0
  579. package/esm/Options/Interfaces/Particles/Move/IMoveAngle.js +1 -0
  580. package/esm/Options/Interfaces/Particles/Move/IMoveAttract.js +1 -0
  581. package/esm/Options/Interfaces/Particles/Move/IMoveCenter.js +1 -0
  582. package/esm/Options/Interfaces/Particles/Move/IMoveGravity.js +1 -0
  583. package/esm/Options/Interfaces/Particles/Move/IMoveTrail.js +1 -0
  584. package/esm/Options/Interfaces/Particles/Move/IMoveTrailFill.js +1 -0
  585. package/esm/Options/Interfaces/Particles/Move/IOutModes.js +1 -0
  586. package/esm/Options/Interfaces/Particles/Move/ISpin.js +1 -0
  587. package/esm/Options/Interfaces/Particles/Move/Path/IMovePath.js +1 -0
  588. package/esm/Options/Interfaces/Particles/Number/IParticlesDensity.js +1 -0
  589. package/esm/Options/Interfaces/Particles/Number/IParticlesNumber.js +1 -0
  590. package/esm/Options/Interfaces/Particles/Opacity/IOpacity.js +1 -0
  591. package/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.js +1 -0
  592. package/esm/Options/Interfaces/Particles/Shape/ICharacterShape.js +1 -0
  593. package/esm/Options/Interfaces/Particles/Shape/IImageShape.js +1 -0
  594. package/esm/Options/Interfaces/Particles/Shape/IPolygonShape.js +1 -0
  595. package/esm/Options/Interfaces/Particles/Shape/IShape.js +1 -0
  596. package/esm/Options/Interfaces/Particles/Shape/IShapeValues.js +1 -0
  597. package/esm/Options/Interfaces/Particles/Shape/IStarShape.js +1 -0
  598. package/esm/Options/Interfaces/Particles/Size/ISize.js +1 -0
  599. package/esm/Options/Interfaces/Particles/Size/ISizeAnimation.js +1 -0
  600. package/esm/Options/Interfaces/Particles/ZIndex/IZIndex.js +1 -0
  601. package/esm/Options/Interfaces/Theme/ITheme.js +1 -0
  602. package/esm/Options/Interfaces/Theme/IThemeDefault.js +1 -0
  603. package/esm/Types/CustomEventArgs.js +1 -0
  604. package/esm/Types/CustomEventListener.js +1 -0
  605. package/esm/Types/ISourceOptions.js +1 -0
  606. package/esm/Types/ParticlesGroups.js +1 -0
  607. package/esm/Types/PathOptions.js +1 -0
  608. package/esm/Types/RangeValue.js +1 -0
  609. package/esm/Types/RecursivePartial.js +1 -0
  610. package/esm/Types/ShapeData.js +1 -0
  611. package/esm/Types/ShapeDrawerFunctions.js +1 -0
  612. package/esm/Types/SingleOrMultiple.js +1 -0
  613. package/esm/Utils/CanvasUtils.js +149 -0
  614. package/esm/Utils/ColorUtils.js +274 -0
  615. package/esm/Utils/EventDispatcher.js +44 -0
  616. package/esm/Utils/HslColorManager.js +40 -0
  617. package/esm/Utils/NumberUtils.js +149 -0
  618. package/esm/Utils/OptionsUtils.js +11 -0
  619. package/esm/Utils/RgbColorManager.js +39 -0
  620. package/esm/Utils/Utils.js +247 -0
  621. package/esm/bundle.js +97 -0
  622. package/esm/engine.js +175 -0
  623. package/esm/index.js +199 -0
  624. package/package.json +90 -0
  625. package/report.html +39 -0
  626. package/scripts/install.js +105 -0
  627. package/tsparticles.engine.js +5541 -0
  628. package/tsparticles.engine.min.js +2 -0
  629. package/tsparticles.engine.min.js.LICENSE.txt +10 -0
  630. package/types/Core/Canvas.d.ts +47 -0
  631. package/types/Core/Container.d.ts +72 -0
  632. package/types/Core/Interfaces/Colors.d.ts +57 -0
  633. package/types/Core/Interfaces/IBounds.d.ts +6 -0
  634. package/types/Core/Interfaces/IBubbleParticleData.d.ts +9 -0
  635. package/types/Core/Interfaces/ICircleBouncer.d.ts +9 -0
  636. package/types/Core/Interfaces/IColorManager.d.ts +8 -0
  637. package/types/Core/Interfaces/IContainerInteractivity.d.ts +6 -0
  638. package/types/Core/Interfaces/IContainerPlugin.d.ts +29 -0
  639. package/types/Core/Interfaces/ICoordinates.d.ts +20 -0
  640. package/types/Core/Interfaces/IDelta.d.ts +4 -0
  641. package/types/Core/Interfaces/IDimension.d.ts +4 -0
  642. package/types/Core/Interfaces/IDistance.d.ts +4 -0
  643. package/types/Core/Interfaces/IDrawParticleParams.d.ts +19 -0
  644. package/types/Core/Interfaces/IExternalInteractor.d.ts +13 -0
  645. package/types/Core/Interfaces/IInteractor.d.ts +16 -0
  646. package/types/Core/Interfaces/ILoadParams.d.ts +9 -0
  647. package/types/Core/Interfaces/IMouseData.d.ts +9 -0
  648. package/types/Core/Interfaces/IMovePathGenerator.d.ts +9 -0
  649. package/types/Core/Interfaces/IParticle.d.ts +48 -0
  650. package/types/Core/Interfaces/IParticleColorStyle.d.ts +4 -0
  651. package/types/Core/Interfaces/IParticleHslAnimation.d.ts +6 -0
  652. package/types/Core/Interfaces/IParticleLife.d.ts +7 -0
  653. package/types/Core/Interfaces/IParticleMover.d.ts +7 -0
  654. package/types/Core/Interfaces/IParticleOverride.d.ts +6 -0
  655. package/types/Core/Interfaces/IParticleRetinaProps.d.ts +9 -0
  656. package/types/Core/Interfaces/IParticleRoll.d.ts +12 -0
  657. package/types/Core/Interfaces/IParticleTransformValues.d.ts +6 -0
  658. package/types/Core/Interfaces/IParticleUpdater.d.ts +21 -0
  659. package/types/Core/Interfaces/IParticleValueAnimation.d.ts +15 -0
  660. package/types/Core/Interfaces/IParticlesInteractor.d.ts +7 -0
  661. package/types/Core/Interfaces/IParticlesMover.d.ts +7 -0
  662. package/types/Core/Interfaces/IPlugin.d.ts +10 -0
  663. package/types/Core/Interfaces/IPositionFromSizeParams.d.ts +10 -0
  664. package/types/Core/Interfaces/IRangeValue.d.ts +4 -0
  665. package/types/Core/Interfaces/IRectSideResult.d.ts +5 -0
  666. package/types/Core/Interfaces/IShapeDrawer.d.ts +10 -0
  667. package/types/Core/Interfaces/IShapeValues.d.ts +8 -0
  668. package/types/Core/Interfaces/ISlowParticleData.d.ts +4 -0
  669. package/types/Core/Interfaces/ITrailFillData.d.ts +6 -0
  670. package/types/Core/Particle.d.ts +85 -0
  671. package/types/Core/Particles.d.ts +45 -0
  672. package/types/Core/Retina.d.ts +13 -0
  673. package/types/Core/Utils/Circle.d.ts +8 -0
  674. package/types/Core/Utils/Constants.d.ts +12 -0
  675. package/types/Core/Utils/EventListeners.d.ts +21 -0
  676. package/types/Core/Utils/ExternalInteractorBase.d.ts +15 -0
  677. package/types/Core/Utils/FrameManager.d.ts +6 -0
  678. package/types/Core/Utils/InteractionManager.d.ts +18 -0
  679. package/types/Core/Utils/ParticlesInteractorBase.d.ts +15 -0
  680. package/types/Core/Utils/Plugins.d.ts +51 -0
  681. package/types/Core/Utils/Point.d.ts +7 -0
  682. package/types/Core/Utils/QuadTree.d.ts +22 -0
  683. package/types/Core/Utils/Range.d.ts +7 -0
  684. package/types/Core/Utils/Rectangle.d.ts +9 -0
  685. package/types/Core/Utils/Vector.d.ts +8 -0
  686. package/types/Core/Utils/Vector3d.d.ts +29 -0
  687. package/types/Enums/AnimationStatus.d.ts +4 -0
  688. package/types/Enums/Directions/MoveDirection.d.ts +14 -0
  689. package/types/Enums/Directions/OutModeDirection.d.ts +6 -0
  690. package/types/Enums/Directions/RotateDirection.d.ts +6 -0
  691. package/types/Enums/InteractivityDetect.d.ts +5 -0
  692. package/types/Enums/Modes/ClickMode.d.ts +9 -0
  693. package/types/Enums/Modes/CollisionMode.d.ts +5 -0
  694. package/types/Enums/Modes/DivMode.d.ts +5 -0
  695. package/types/Enums/Modes/HoverMode.d.ts +11 -0
  696. package/types/Enums/Modes/OutMode.d.ts +10 -0
  697. package/types/Enums/Modes/ResponsiveMode.d.ts +4 -0
  698. package/types/Enums/Modes/SizeMode.d.ts +4 -0
  699. package/types/Enums/Modes/ThemeMode.d.ts +5 -0
  700. package/types/Enums/Types/AlterType.d.ts +4 -0
  701. package/types/Enums/Types/DestroyType.d.ts +5 -0
  702. package/types/Enums/Types/DivType.d.ts +4 -0
  703. package/types/Enums/Types/EasingType.d.ts +27 -0
  704. package/types/Enums/Types/EventType.d.ts +12 -0
  705. package/types/Enums/Types/GradientType.d.ts +5 -0
  706. package/types/Enums/Types/InteractorType.d.ts +4 -0
  707. package/types/Enums/Types/ParticleOutType.d.ts +5 -0
  708. package/types/Enums/Types/StartValueType.d.ts +5 -0
  709. package/types/Options/Classes/AnimatableColor.d.ts +12 -0
  710. package/types/Options/Classes/AnimationOptions.d.ts +20 -0
  711. package/types/Options/Classes/Background/Background.d.ts +14 -0
  712. package/types/Options/Classes/BackgroundMask/BackgroundMask.d.ts +11 -0
  713. package/types/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +10 -0
  714. package/types/Options/Classes/ColorAnimation.d.ts +14 -0
  715. package/types/Options/Classes/FullScreen/FullScreen.d.ts +9 -0
  716. package/types/Options/Classes/HslAnimation.d.ts +11 -0
  717. package/types/Options/Classes/Interactivity/Events/ClickEvent.d.ts +11 -0
  718. package/types/Options/Classes/Interactivity/Events/DivEvent.d.ts +20 -0
  719. package/types/Options/Classes/Interactivity/Events/Events.d.ts +22 -0
  720. package/types/Options/Classes/Interactivity/Events/HoverEvent.d.ts +13 -0
  721. package/types/Options/Classes/Interactivity/Events/Parallax.d.ts +10 -0
  722. package/types/Options/Classes/Interactivity/Events/ResizeEvent.d.ts +9 -0
  723. package/types/Options/Classes/Interactivity/Interactivity.d.ts +18 -0
  724. package/types/Options/Classes/Interactivity/Modes/Modes.d.ts +12 -0
  725. package/types/Options/Classes/ManualParticle.d.ts +10 -0
  726. package/types/Options/Classes/Options.d.ts +58 -0
  727. package/types/Options/Classes/OptionsColor.d.ts +11 -0
  728. package/types/Options/Classes/Particles/Bounce/ParticlesBounce.d.ts +10 -0
  729. package/types/Options/Classes/Particles/Bounce/ParticlesBounceFactor.d.ts +4 -0
  730. package/types/Options/Classes/Particles/Collisions/Collisions.d.ts +16 -0
  731. package/types/Options/Classes/Particles/Collisions/CollisionsAbsorb.d.ts +8 -0
  732. package/types/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +9 -0
  733. package/types/Options/Classes/Particles/Move/Move.d.ts +49 -0
  734. package/types/Options/Classes/Particles/Move/MoveAngle.d.ts +10 -0
  735. package/types/Options/Classes/Particles/Move/MoveAttract.d.ts +16 -0
  736. package/types/Options/Classes/Particles/Move/MoveCenter.d.ts +12 -0
  737. package/types/Options/Classes/Particles/Move/MoveGravity.d.ts +12 -0
  738. package/types/Options/Classes/Particles/Move/MoveTrail.d.ts +14 -0
  739. package/types/Options/Classes/Particles/Move/MoveTrailFill.d.ts +9 -0
  740. package/types/Options/Classes/Particles/Move/OutModes.d.ts +14 -0
  741. package/types/Options/Classes/Particles/Move/Path/MovePath.d.ts +14 -0
  742. package/types/Options/Classes/Particles/Move/Spin.d.ts +12 -0
  743. package/types/Options/Classes/Particles/Number/ParticlesDensity.d.ts +16 -0
  744. package/types/Options/Classes/Particles/Number/ParticlesNumber.d.ts +13 -0
  745. package/types/Options/Classes/Particles/Opacity/Opacity.d.ts +10 -0
  746. package/types/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +12 -0
  747. package/types/Options/Classes/Particles/ParticlesOptions.d.ts +40 -0
  748. package/types/Options/Classes/Particles/Shadow.d.ts +13 -0
  749. package/types/Options/Classes/Particles/Shape/Shape.d.ts +11 -0
  750. package/types/Options/Classes/Particles/Size/Size.d.ts +10 -0
  751. package/types/Options/Classes/Particles/Size/SizeAnimation.d.ts +12 -0
  752. package/types/Options/Classes/Particles/Stroke.d.ts +12 -0
  753. package/types/Options/Classes/Particles/ZIndex/ZIndex.d.ts +11 -0
  754. package/types/Options/Classes/Random.d.ts +9 -0
  755. package/types/Options/Classes/Responsive.d.ts +12 -0
  756. package/types/Options/Classes/Theme/Theme.d.ts +12 -0
  757. package/types/Options/Classes/Theme/ThemeDefault.d.ts +11 -0
  758. package/types/Options/Classes/ValueWithRandom.d.ts +26 -0
  759. package/types/Options/Interfaces/Background/IBackground.d.ts +9 -0
  760. package/types/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +7 -0
  761. package/types/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +5 -0
  762. package/types/Options/Interfaces/FullScreen/IFullScreen.d.ts +4 -0
  763. package/types/Options/Interfaces/IAnimatable.d.ts +4 -0
  764. package/types/Options/Interfaces/IAnimatableColor.d.ts +6 -0
  765. package/types/Options/Interfaces/IAnimation.d.ts +13 -0
  766. package/types/Options/Interfaces/IColorAnimation.d.ts +5 -0
  767. package/types/Options/Interfaces/IHslAnimation.d.ts +6 -0
  768. package/types/Options/Interfaces/IManualParticle.d.ts +7 -0
  769. package/types/Options/Interfaces/IOptionLoader.d.ts +4 -0
  770. package/types/Options/Interfaces/IOptions.d.ts +37 -0
  771. package/types/Options/Interfaces/IOptionsColor.d.ts +2 -0
  772. package/types/Options/Interfaces/IRandom.d.ts +4 -0
  773. package/types/Options/Interfaces/IResponsive.d.ts +7 -0
  774. package/types/Options/Interfaces/IValueWithRandom.d.ts +13 -0
  775. package/types/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +6 -0
  776. package/types/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +12 -0
  777. package/types/Options/Interfaces/Interactivity/Events/IEvents.d.ts +14 -0
  778. package/types/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +8 -0
  779. package/types/Options/Interfaces/Interactivity/Events/IParallax.d.ts +5 -0
  780. package/types/Options/Interfaces/Interactivity/Events/IResizeEvent.d.ts +4 -0
  781. package/types/Options/Interfaces/Interactivity/IInteractivity.d.ts +10 -0
  782. package/types/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +5 -0
  783. package/types/Options/Interfaces/Interactivity/Modes/IModes.d.ts +3 -0
  784. package/types/Options/Interfaces/Particles/Bounce/IParticlesBounce.d.ts +5 -0
  785. package/types/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +11 -0
  786. package/types/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.d.ts +3 -0
  787. package/types/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +4 -0
  788. package/types/Options/Interfaces/Particles/IParticlesOptions.d.ts +32 -0
  789. package/types/Options/Interfaces/Particles/IShadow.d.ts +8 -0
  790. package/types/Options/Interfaces/Particles/IStroke.d.ts +8 -0
  791. package/types/Options/Interfaces/Particles/Move/IMove.d.ts +38 -0
  792. package/types/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +5 -0
  793. package/types/Options/Interfaces/Particles/Move/IMoveAttract.d.ts +9 -0
  794. package/types/Options/Interfaces/Particles/Move/IMoveCenter.d.ts +2 -0
  795. package/types/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +7 -0
  796. package/types/Options/Interfaces/Particles/Move/IMoveTrail.d.ts +8 -0
  797. package/types/Options/Interfaces/Particles/Move/IMoveTrailFill.d.ts +5 -0
  798. package/types/Options/Interfaces/Particles/Move/IOutModes.d.ts +8 -0
  799. package/types/Options/Interfaces/Particles/Move/ISpin.d.ts +7 -0
  800. package/types/Options/Interfaces/Particles/Move/Path/IMovePath.d.ts +9 -0
  801. package/types/Options/Interfaces/Particles/Number/IParticlesDensity.d.ts +8 -0
  802. package/types/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +7 -0
  803. package/types/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +6 -0
  804. package/types/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +6 -0
  805. package/types/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +8 -0
  806. package/types/Options/Interfaces/Particles/Shape/IImageShape.d.ts +8 -0
  807. package/types/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +5 -0
  808. package/types/Options/Interfaces/Particles/Shape/IShape.d.ts +6 -0
  809. package/types/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +1 -0
  810. package/types/Options/Interfaces/Particles/Shape/IStarShape.d.ts +6 -0
  811. package/types/Options/Interfaces/Particles/Size/ISize.d.ts +6 -0
  812. package/types/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +6 -0
  813. package/types/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +6 -0
  814. package/types/Options/Interfaces/Theme/ITheme.d.ts +7 -0
  815. package/types/Options/Interfaces/Theme/IThemeDefault.d.ts +6 -0
  816. package/types/Types/CustomEventArgs.d.ts +5 -0
  817. package/types/Types/CustomEventListener.d.ts +2 -0
  818. package/types/Types/ISourceOptions.d.ts +3 -0
  819. package/types/Types/ParticlesGroups.d.ts +4 -0
  820. package/types/Types/PathOptions.d.ts +3 -0
  821. package/types/Types/RangeValue.d.ts +2 -0
  822. package/types/Types/RecursivePartial.d.ts +3 -0
  823. package/types/Types/ShapeData.d.ts +5 -0
  824. package/types/Types/ShapeDrawerFunctions.d.ts +10 -0
  825. package/types/Types/SingleOrMultiple.d.ts +1 -0
  826. package/types/Utils/CanvasUtils.d.ts +23 -0
  827. package/types/Utils/ColorUtils.d.ts +24 -0
  828. package/types/Utils/EventDispatcher.d.ts +11 -0
  829. package/types/Utils/HslColorManager.d.ts +10 -0
  830. package/types/Utils/NumberUtils.d.ts +37 -0
  831. package/types/Utils/OptionsUtils.d.ts +8 -0
  832. package/types/Utils/RgbColorManager.d.ts +10 -0
  833. package/types/Utils/Utils.d.ts +36 -0
  834. package/types/bundle.d.ts +91 -0
  835. package/types/engine.d.ts +39 -0
  836. package/types/index.d.ts +204 -0
  837. package/umd/Core/Canvas.js +412 -0
  838. package/umd/Core/Container.js +450 -0
  839. package/umd/Core/Interfaces/Colors.js +12 -0
  840. package/umd/Core/Interfaces/IBounds.js +12 -0
  841. package/umd/Core/Interfaces/IBubbleParticleData.js +12 -0
  842. package/umd/Core/Interfaces/ICircleBouncer.js +12 -0
  843. package/umd/Core/Interfaces/IColorManager.js +12 -0
  844. package/umd/Core/Interfaces/IContainerInteractivity.js +12 -0
  845. package/umd/Core/Interfaces/IContainerPlugin.js +12 -0
  846. package/umd/Core/Interfaces/ICoordinates.js +12 -0
  847. package/umd/Core/Interfaces/IDelta.js +12 -0
  848. package/umd/Core/Interfaces/IDimension.js +12 -0
  849. package/umd/Core/Interfaces/IDistance.js +12 -0
  850. package/umd/Core/Interfaces/IDrawParticleParams.js +12 -0
  851. package/umd/Core/Interfaces/IExternalInteractor.js +12 -0
  852. package/umd/Core/Interfaces/IInteractor.js +12 -0
  853. package/umd/Core/Interfaces/ILoadParams.js +12 -0
  854. package/umd/Core/Interfaces/IMouseData.js +12 -0
  855. package/umd/Core/Interfaces/IMovePathGenerator.js +12 -0
  856. package/umd/Core/Interfaces/IParticle.js +12 -0
  857. package/umd/Core/Interfaces/IParticleColorStyle.js +12 -0
  858. package/umd/Core/Interfaces/IParticleHslAnimation.js +12 -0
  859. package/umd/Core/Interfaces/IParticleLife.js +12 -0
  860. package/umd/Core/Interfaces/IParticleMover.js +12 -0
  861. package/umd/Core/Interfaces/IParticleOverride.js +12 -0
  862. package/umd/Core/Interfaces/IParticleRetinaProps.js +12 -0
  863. package/umd/Core/Interfaces/IParticleRoll.js +12 -0
  864. package/umd/Core/Interfaces/IParticleTransformValues.js +12 -0
  865. package/umd/Core/Interfaces/IParticleUpdater.js +12 -0
  866. package/umd/Core/Interfaces/IParticleValueAnimation.js +12 -0
  867. package/umd/Core/Interfaces/IParticlesInteractor.js +12 -0
  868. package/umd/Core/Interfaces/IParticlesMover.js +12 -0
  869. package/umd/Core/Interfaces/IPlugin.js +12 -0
  870. package/umd/Core/Interfaces/IPositionFromSizeParams.js +12 -0
  871. package/umd/Core/Interfaces/IRangeValue.js +12 -0
  872. package/umd/Core/Interfaces/IRectSideResult.js +12 -0
  873. package/umd/Core/Interfaces/IShapeDrawer.js +12 -0
  874. package/umd/Core/Interfaces/IShapeValues.js +12 -0
  875. package/umd/Core/Interfaces/ISlowParticleData.js +12 -0
  876. package/umd/Core/Interfaces/ITrailFillData.js +12 -0
  877. package/umd/Core/Particle.js +321 -0
  878. package/umd/Core/Particles.js +276 -0
  879. package/umd/Core/Retina.js +47 -0
  880. package/umd/Core/Utils/Circle.js +37 -0
  881. package/umd/Core/Utils/Constants.js +25 -0
  882. package/umd/Core/Utils/EventListeners.js +294 -0
  883. package/umd/Core/Utils/ExternalInteractorBase.js +20 -0
  884. package/umd/Core/Utils/FrameManager.js +56 -0
  885. package/umd/Core/Utils/InteractionManager.js +74 -0
  886. package/umd/Core/Utils/ParticlesInteractorBase.js +20 -0
  887. package/umd/Core/Utils/Plugins.js +126 -0
  888. package/umd/Core/Utils/Point.js +20 -0
  889. package/umd/Core/Utils/QuadTree.js +78 -0
  890. package/umd/Core/Utils/Range.js +22 -0
  891. package/umd/Core/Utils/Rectangle.js +36 -0
  892. package/umd/Core/Utils/Vector.js +29 -0
  893. package/umd/Core/Utils/Vector3d.js +110 -0
  894. package/umd/Enums/AnimationStatus.js +12 -0
  895. package/umd/Enums/Directions/MoveDirection.js +12 -0
  896. package/umd/Enums/Directions/OutModeDirection.js +12 -0
  897. package/umd/Enums/Directions/RotateDirection.js +12 -0
  898. package/umd/Enums/InteractivityDetect.js +12 -0
  899. package/umd/Enums/Modes/ClickMode.js +12 -0
  900. package/umd/Enums/Modes/CollisionMode.js +12 -0
  901. package/umd/Enums/Modes/DivMode.js +12 -0
  902. package/umd/Enums/Modes/HoverMode.js +12 -0
  903. package/umd/Enums/Modes/OutMode.js +12 -0
  904. package/umd/Enums/Modes/ResponsiveMode.js +12 -0
  905. package/umd/Enums/Modes/SizeMode.js +12 -0
  906. package/umd/Enums/Modes/ThemeMode.js +12 -0
  907. package/umd/Enums/Types/AlterType.js +12 -0
  908. package/umd/Enums/Types/DestroyType.js +12 -0
  909. package/umd/Enums/Types/DivType.js +12 -0
  910. package/umd/Enums/Types/EasingType.js +12 -0
  911. package/umd/Enums/Types/EventType.js +12 -0
  912. package/umd/Enums/Types/GradientType.js +12 -0
  913. package/umd/Enums/Types/InteractorType.js +12 -0
  914. package/umd/Enums/Types/ParticleOutType.js +12 -0
  915. package/umd/Enums/Types/StartValueType.js +12 -0
  916. package/umd/Options/Classes/AnimatableColor.js +50 -0
  917. package/umd/Options/Classes/AnimationOptions.js +63 -0
  918. package/umd/Options/Classes/Background/Background.js +49 -0
  919. package/umd/Options/Classes/BackgroundMask/BackgroundMask.js +38 -0
  920. package/umd/Options/Classes/BackgroundMask/BackgroundMaskCover.js +33 -0
  921. package/umd/Options/Classes/ColorAnimation.js +48 -0
  922. package/umd/Options/Classes/FullScreen/FullScreen.js +31 -0
  923. package/umd/Options/Classes/HslAnimation.js +30 -0
  924. package/umd/Options/Classes/Interactivity/Events/ClickEvent.js +31 -0
  925. package/umd/Options/Classes/Interactivity/Events/DivEvent.js +63 -0
  926. package/umd/Options/Classes/Interactivity/Events/Events.js +67 -0
  927. package/umd/Options/Classes/Interactivity/Events/HoverEvent.js +34 -0
  928. package/umd/Options/Classes/Interactivity/Events/Parallax.js +35 -0
  929. package/umd/Options/Classes/Interactivity/Events/ResizeEvent.js +31 -0
  930. package/umd/Options/Classes/Interactivity/Interactivity.js +41 -0
  931. package/umd/Options/Classes/Interactivity/Modes/Modes.js +35 -0
  932. package/umd/Options/Classes/ManualParticle.js +32 -0
  933. package/umd/Options/Classes/Options.js +184 -0
  934. package/umd/Options/Classes/OptionsColor.js +38 -0
  935. package/umd/Options/Classes/Particles/Bounce/ParticlesBounce.js +28 -0
  936. package/umd/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +22 -0
  937. package/umd/Options/Classes/Particles/Collisions/Collisions.js +40 -0
  938. package/umd/Options/Classes/Particles/Collisions/CollisionsAbsorb.js +27 -0
  939. package/umd/Options/Classes/Particles/Collisions/CollisionsOverlap.js +31 -0
  940. package/umd/Options/Classes/Particles/Move/Move.js +138 -0
  941. package/umd/Options/Classes/Particles/Move/MoveAngle.js +32 -0
  942. package/umd/Options/Classes/Particles/Move/MoveAttract.js +57 -0
  943. package/umd/Options/Classes/Particles/Move/MoveCenter.js +39 -0
  944. package/umd/Options/Classes/Particles/Move/MoveGravity.js +40 -0
  945. package/umd/Options/Classes/Particles/Move/MoveTrail.js +42 -0
  946. package/umd/Options/Classes/Particles/Move/MoveTrailFill.js +28 -0
  947. package/umd/Options/Classes/Particles/Move/OutModes.js +32 -0
  948. package/umd/Options/Classes/Particles/Move/Path/MovePath.js +40 -0
  949. package/umd/Options/Classes/Particles/Move/Spin.js +34 -0
  950. package/umd/Options/Classes/Particles/Number/ParticlesDensity.js +56 -0
  951. package/umd/Options/Classes/Particles/Number/ParticlesNumber.js +42 -0
  952. package/umd/Options/Classes/Particles/Opacity/Opacity.js +30 -0
  953. package/umd/Options/Classes/Particles/Opacity/OpacityAnimation.js +40 -0
  954. package/umd/Options/Classes/Particles/ParticlesOptions.js +106 -0
  955. package/umd/Options/Classes/Particles/Shadow.js +48 -0
  956. package/umd/Options/Classes/Particles/Shape/Shape.js +39 -0
  957. package/umd/Options/Classes/Particles/Size/Size.js +30 -0
  958. package/umd/Options/Classes/Particles/Size/SizeAnimation.js +40 -0
  959. package/umd/Options/Classes/Particles/Stroke.js +35 -0
  960. package/umd/Options/Classes/Particles/ZIndex/ZIndex.js +38 -0
  961. package/umd/Options/Classes/Random.js +31 -0
  962. package/umd/Options/Classes/Responsive.js +41 -0
  963. package/umd/Options/Classes/Theme/Theme.js +34 -0
  964. package/umd/Options/Classes/Theme/ThemeDefault.js +35 -0
  965. package/umd/Options/Classes/ValueWithRandom.js +78 -0
  966. package/umd/Options/Interfaces/Background/IBackground.js +12 -0
  967. package/umd/Options/Interfaces/BackgroundMask/IBackgroundMask.js +12 -0
  968. package/umd/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.js +12 -0
  969. package/umd/Options/Interfaces/FullScreen/IFullScreen.js +12 -0
  970. package/umd/Options/Interfaces/IAnimatable.js +12 -0
  971. package/umd/Options/Interfaces/IAnimatableColor.js +12 -0
  972. package/umd/Options/Interfaces/IAnimation.js +12 -0
  973. package/umd/Options/Interfaces/IColorAnimation.js +12 -0
  974. package/umd/Options/Interfaces/IHslAnimation.js +12 -0
  975. package/umd/Options/Interfaces/IManualParticle.js +12 -0
  976. package/umd/Options/Interfaces/IOptionLoader.js +12 -0
  977. package/umd/Options/Interfaces/IOptions.js +12 -0
  978. package/umd/Options/Interfaces/IOptionsColor.js +12 -0
  979. package/umd/Options/Interfaces/IRandom.js +12 -0
  980. package/umd/Options/Interfaces/IResponsive.js +12 -0
  981. package/umd/Options/Interfaces/IValueWithRandom.js +12 -0
  982. package/umd/Options/Interfaces/Interactivity/Events/IClickEvent.js +12 -0
  983. package/umd/Options/Interfaces/Interactivity/Events/IDivEvent.js +12 -0
  984. package/umd/Options/Interfaces/Interactivity/Events/IEvents.js +12 -0
  985. package/umd/Options/Interfaces/Interactivity/Events/IHoverEvent.js +12 -0
  986. package/umd/Options/Interfaces/Interactivity/Events/IParallax.js +12 -0
  987. package/umd/Options/Interfaces/Interactivity/Events/IResizeEvent.js +12 -0
  988. package/umd/Options/Interfaces/Interactivity/IInteractivity.js +12 -0
  989. package/umd/Options/Interfaces/Interactivity/Modes/IModeDiv.js +12 -0
  990. package/umd/Options/Interfaces/Interactivity/Modes/IModes.js +12 -0
  991. package/umd/Options/Interfaces/Particles/Bounce/IParticlesBounce.js +12 -0
  992. package/umd/Options/Interfaces/Particles/Collisions/ICollisions.js +12 -0
  993. package/umd/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.js +12 -0
  994. package/umd/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.js +12 -0
  995. package/umd/Options/Interfaces/Particles/IParticlesOptions.js +12 -0
  996. package/umd/Options/Interfaces/Particles/IShadow.js +12 -0
  997. package/umd/Options/Interfaces/Particles/IStroke.js +12 -0
  998. package/umd/Options/Interfaces/Particles/Move/IMove.js +12 -0
  999. package/umd/Options/Interfaces/Particles/Move/IMoveAngle.js +12 -0
  1000. package/umd/Options/Interfaces/Particles/Move/IMoveAttract.js +12 -0
  1001. package/umd/Options/Interfaces/Particles/Move/IMoveCenter.js +12 -0
  1002. package/umd/Options/Interfaces/Particles/Move/IMoveGravity.js +12 -0
  1003. package/umd/Options/Interfaces/Particles/Move/IMoveTrail.js +12 -0
  1004. package/umd/Options/Interfaces/Particles/Move/IMoveTrailFill.js +12 -0
  1005. package/umd/Options/Interfaces/Particles/Move/IOutModes.js +12 -0
  1006. package/umd/Options/Interfaces/Particles/Move/ISpin.js +12 -0
  1007. package/umd/Options/Interfaces/Particles/Move/Path/IMovePath.js +12 -0
  1008. package/umd/Options/Interfaces/Particles/Number/IParticlesDensity.js +12 -0
  1009. package/umd/Options/Interfaces/Particles/Number/IParticlesNumber.js +12 -0
  1010. package/umd/Options/Interfaces/Particles/Opacity/IOpacity.js +12 -0
  1011. package/umd/Options/Interfaces/Particles/Opacity/IOpacityAnimation.js +12 -0
  1012. package/umd/Options/Interfaces/Particles/Shape/ICharacterShape.js +12 -0
  1013. package/umd/Options/Interfaces/Particles/Shape/IImageShape.js +12 -0
  1014. package/umd/Options/Interfaces/Particles/Shape/IPolygonShape.js +12 -0
  1015. package/umd/Options/Interfaces/Particles/Shape/IShape.js +12 -0
  1016. package/umd/Options/Interfaces/Particles/Shape/IShapeValues.js +27 -0
  1017. package/umd/Options/Interfaces/Particles/Shape/IStarShape.js +12 -0
  1018. package/umd/Options/Interfaces/Particles/Size/ISize.js +12 -0
  1019. package/umd/Options/Interfaces/Particles/Size/ISizeAnimation.js +12 -0
  1020. package/umd/Options/Interfaces/Particles/ZIndex/IZIndex.js +12 -0
  1021. package/umd/Options/Interfaces/Theme/ITheme.js +12 -0
  1022. package/umd/Options/Interfaces/Theme/IThemeDefault.js +12 -0
  1023. package/umd/Types/CustomEventArgs.js +12 -0
  1024. package/umd/Types/CustomEventListener.js +12 -0
  1025. package/umd/Types/ISourceOptions.js +12 -0
  1026. package/umd/Types/ParticlesGroups.js +12 -0
  1027. package/umd/Types/PathOptions.js +12 -0
  1028. package/umd/Types/RangeValue.js +12 -0
  1029. package/umd/Types/RecursivePartial.js +12 -0
  1030. package/umd/Types/ShapeData.js +12 -0
  1031. package/umd/Types/ShapeDrawerFunctions.js +12 -0
  1032. package/umd/Types/SingleOrMultiple.js +12 -0
  1033. package/umd/Utils/CanvasUtils.js +174 -0
  1034. package/umd/Utils/ColorUtils.js +305 -0
  1035. package/umd/Utils/EventDispatcher.js +58 -0
  1036. package/umd/Utils/HslColorManager.js +54 -0
  1037. package/umd/Utils/NumberUtils.js +185 -0
  1038. package/umd/Utils/OptionsUtils.js +26 -0
  1039. package/umd/Utils/RgbColorManager.js +53 -0
  1040. package/umd/Utils/Utils.js +284 -0
  1041. package/umd/bundle.js +124 -0
  1042. package/umd/engine.js +189 -0
  1043. package/umd/index.js +226 -0
@@ -0,0 +1,2 @@
1
+ /*! For license information please see tsparticles.engine.min.js.LICENSE.txt */
2
+ !function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var i=e();for(var s in i)("object"==typeof exports?exports:t)[s]=i[s]}}(this,(()=>(()=>{"use strict";var t={d:(e,i)=>{for(var s in i)t.o(i,s)&&!t.o(e,s)&&Object.defineProperty(e,s,{enumerable:!0,get:i[s]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r:t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})}},e={};t.r(e),t.d(e,{AnimatableColor:()=>be,AnimationOptions:()=>xe,AnimationValueWithRandom:()=>Oe,Background:()=>ee,BackgroundMask:()=>se,BackgroundMaskCover:()=>ie,Circle:()=>ai,ClickEvent:()=>oe,Collisions:()=>Re,CollisionsAbsorb:()=>we,CollisionsOverlap:()=>_e,ColorAnimation:()=>ge,DivEvent:()=>ae,Events:()=>ce,ExternalInteractorBase:()=>wi,FullScreen:()=>ne,HoverEvent:()=>le,HslAnimation:()=>ye,HslColorManager:()=>yi,Interactivity:()=>ue,ManualParticle:()=>pe,Modes:()=>de,Move:()=>Be,MoveAngle:()=>Te,MoveAttract:()=>Ie,MoveCenter:()=>Ee,MoveGravity:()=>De,MovePath:()=>Ae,MoveTrail:()=>Le,MoveTrailFill:()=>Fe,Opacity:()=>Ue,OpacityAnimation:()=>He,Options:()=>ti,OptionsColor:()=>te,OutModes:()=>Ve,Parallax:()=>re,ParticlesBounce:()=>Se,ParticlesBounceFactor:()=>Ce,ParticlesDensity:()=>qe,ParticlesInteractorBase:()=>_i,ParticlesNumber:()=>Ge,ParticlesOptions:()=>Qe,Point:()=>ni,Range:()=>oi,RangedAnimationOptions:()=>ze,RangedAnimationValueWithRandom:()=>ke,Rectangle:()=>ri,ResizeEvent:()=>he,Responsive:()=>ve,RgbColorManager:()=>bi,Shadow:()=>je,Shape:()=>$e,Size:()=>Xe,SizeAnimation:()=>Ne,Spin:()=>We,Stroke:()=>Ye,Theme:()=>me,ThemeDefault:()=>fe,ValueWithRandom:()=>Pe,Vector:()=>s,Vector3d:()=>i,ZIndex:()=>Ze,addColorManager:()=>st,addEasing:()=>a,alterHsl:()=>Ft,animate:()=>E,areBoundsInside:()=>B,arrayRandomIndex:()=>L,calcExactPositionOrRandomFromSize:()=>O,calcExactPositionOrRandomFromSizeRanged:()=>k,calcPositionFromSize:()=>z,calcPositionOrRandomFromSize:()=>M,calcPositionOrRandomFromSizeRanged:()=>P,calculateBounds:()=>H,cancelAnimation:()=>D,circleBounce:()=>X,circleBounceDataFromParticle:()=>N,clamp:()=>c,clear:()=>Rt,clearCanvas:()=>Ot,collisionVelocity:()=>x,colorMix:()=>yt,colorToHsl:()=>lt,colorToRgb:()=>rt,deepExtend:()=>U,divMode:()=>$,divModeExecute:()=>G,drawLine:()=>Ct,drawParticle:()=>Tt,drawParticlePlugin:()=>At,drawPlugin:()=>Dt,drawShape:()=>It,drawShapeAfterEffect:()=>Et,drawTriangle:()=>St,executeOnSingleOrMultiple:()=>Z,findItemFromSingleOrMultiple:()=>J,generatedAttribute:()=>Lt,getContext:()=>Pt,getDistance:()=>b,getDistances:()=>y,getEasing:()=>r,getHslAnimationFromHsl:()=>xt,getHslFromAnimation:()=>_t,getLinkColor:()=>bt,getLinkRandomColor:()=>wt,getParticleBaseVelocity:()=>_,getParticleDirectionAngle:()=>w,getRandom:()=>h,getRandomRgbColor:()=>ft,getRangeMax:()=>f,getRangeMin:()=>v,getRangeValue:()=>p,getStyleFromHsl:()=>gt,getStyleFromRgb:()=>mt,getValue:()=>g,hasMatchMedia:()=>T,hslToRgb:()=>pt,hslaToRgba:()=>vt,initParticleNumericAnimationValue:()=>K,isDivModeEnabled:()=>q,isInArray:()=>A,isPointInside:()=>W,isSsr:()=>R,itemFromArray:()=>V,itemFromSingleOrMultiple:()=>Q,loadFont:()=>F,loadOptions:()=>Je,loadParticlesOptions:()=>Ke,mix:()=>d,mouseDownEvent:()=>Wt,mouseLeaveEvent:()=>Gt,mouseMoveEvent:()=>Ht,mouseOutEvent:()=>jt,mouseUpEvent:()=>Bt,paintCanvas:()=>kt,parseAlpha:()=>C,randomInRange:()=>u,rangeColorToHsl:()=>ht,rangeColorToRgb:()=>at,rectBounce:()=>Y,resizeEvent:()=>Nt,rgbToHsl:()=>ct,safeMatchMedia:()=>I,setRandom:()=>l,setRangeValue:()=>m,singleDivModeExecute:()=>j,stringToAlpha:()=>dt,stringToRgb:()=>ut,touchCancelEvent:()=>$t,touchEndEvent:()=>Vt,touchMoveEvent:()=>qt,touchStartEvent:()=>Ut,tsParticles:()=>Mi,visibilityChangeEvent:()=>Xt});class i{constructor(t,e,i){if("number"!=typeof t&&t){this.x=t.x,this.y=t.y;const e=t;this.z=e.z?e.z:0}else{if(void 0===t||void 0===e)throw new Error("tsParticles - Vector3d not initialized correctly");this.x=t,this.y=e,this.z=null!=i?i:0}}static get origin(){return i.create(0,0,0)}get angle(){return Math.atan2(this.y,this.x)}set angle(t){this.updateFromAngle(t,this.length)}get length(){return Math.sqrt(this.getLengthSq())}set length(t){this.updateFromAngle(this.angle,t)}static clone(t){return i.create(t.x,t.y,t.z)}static create(t,e,s){return new i(t,e,s)}add(t){return i.create(this.x+t.x,this.y+t.y,this.z+t.z)}addTo(t){this.x+=t.x,this.y+=t.y,this.z+=t.z}copy(){return i.clone(this)}distanceTo(t){return this.sub(t).length}distanceToSq(t){return this.sub(t).getLengthSq()}div(t){return i.create(this.x/t,this.y/t,this.z/t)}divTo(t){this.x/=t,this.y/=t,this.z/=t}getLengthSq(){return this.x**2+this.y**2}mult(t){return i.create(this.x*t,this.y*t,this.z*t)}multTo(t){this.x*=t,this.y*=t,this.z*=t}rotate(t){return i.create(this.x*Math.cos(t)-this.y*Math.sin(t),this.x*Math.sin(t)+this.y*Math.cos(t),0)}setTo(t){this.x=t.x,this.y=t.y;const e=t;this.z=e.z?e.z:0}sub(t){return i.create(this.x-t.x,this.y-t.y,this.z-t.z)}subFrom(t){this.x-=t.x,this.y-=t.y,this.z-=t.z}updateFromAngle(t,e){this.x=Math.cos(t)*e,this.y=Math.sin(t)*e}}class s extends i{constructor(t,e){super(t,e,0)}static get origin(){return s.create(0,0)}static clone(t){return s.create(t.x,t.y)}static create(t,e){return new s(t,e)}}let n=Math.random;const o=new Map;function a(t,e){o.get(t)||o.set(t,e)}function r(t){return o.get(t)||(t=>t)}function l(t=Math.random){n=t}function h(){return c(n(),0,1-1e-16)}function c(t,e,i){return Math.min(Math.max(t,e),i)}function d(t,e,i,s){return Math.floor((t*i+e*s)/(i+s))}function u(t){const e=f(t);let i=v(t);return e===i&&(i=0),h()*(e-i)+i}function p(t){return"number"==typeof t?t:u(t)}function v(t){return"number"==typeof t?t:t.min}function f(t){return"number"==typeof t?t:t.max}function m(t,e){if(t===e||void 0===e&&"number"==typeof t)return t;const i=v(t),s=f(t);return void 0!==e?{min:Math.min(i,e),max:Math.max(s,e)}:m(i,s)}function g(t){const e=t.random,{enable:i,minimumValue:s}="boolean"==typeof e?{enable:e,minimumValue:0}:e;return p(i?m(t.value,s):t.value)}function y(t,e){const i=t.x-e.x,s=t.y-e.y;return{dx:i,dy:s,distance:Math.sqrt(i**2+s**2)}}function b(t,e){return y(t,e).distance}function w(t,e,i){if("number"==typeof t)return t*Math.PI/180;switch(t){case"top":return-Math.PI/2;case"top-right":return-Math.PI/4;case"right":return 0;case"bottom-right":return Math.PI/4;case"bottom":return Math.PI/2;case"bottom-left":return 3*Math.PI/4;case"left":return Math.PI;case"top-left":return-3*Math.PI/4;case"inside":return Math.atan2(i.y-e.y,i.x-e.x);case"outside":return Math.atan2(e.y-i.y,e.x-i.x);default:return h()*Math.PI*2}}function _(t){const e=s.origin;return e.length=1,e.angle=t,e}function x(t,e,i,n){return s.create(t.x*(i-n)/(i+n)+2*e.x*n/(i+n),t.y)}function z(t){return t.position&&void 0!==t.position.x&&void 0!==t.position.y?{x:t.position.x*t.size.width/100,y:t.position.y*t.size.height/100}:void 0}function M(t){var e,i,s,n;return{x:(null!==(i=null===(e=t.position)||void 0===e?void 0:e.x)&&void 0!==i?i:100*h())*t.size.width/100,y:(null!==(n=null===(s=t.position)||void 0===s?void 0:s.y)&&void 0!==n?n:100*h())*t.size.height/100}}function P(t){var e,i;const s={x:void 0!==(null===(e=t.position)||void 0===e?void 0:e.x)?p(t.position.x):void 0,y:void 0!==(null===(i=t.position)||void 0===i?void 0:i.y)?p(t.position.y):void 0};return M({size:t.size,position:s})}function O(t){var e,i,s,n;return{x:null!==(i=null===(e=t.position)||void 0===e?void 0:e.x)&&void 0!==i?i:h()*t.size.width,y:null!==(n=null===(s=t.position)||void 0===s?void 0:s.y)&&void 0!==n?n:h()*t.size.height}}function k(t){var e,i;const s={x:void 0!==(null===(e=t.position)||void 0===e?void 0:e.x)?p(t.position.x):void 0,y:void 0!==(null===(i=t.position)||void 0===i?void 0:i.y)?p(t.position.y):void 0};return O({size:t.size,position:s})}function C(t){return t?t.endsWith("%")?parseFloat(t)/100:parseFloat(t):1}function S(t,e,i,s,n,o){const a={bounced:!1};return e.min<s.min||e.min>s.max||e.max<s.min||e.max>s.max||(t.max>=i.min&&t.max<=(i.max+i.min)/2&&n>0||t.min<=i.max&&t.min>(i.max+i.min)/2&&n<0)&&(a.velocity=n*-o,a.bounced=!0),a}function R(){return"undefined"==typeof window||!window||void 0===window.document||!window.document}function T(){return!R()&&"undefined"!=typeof matchMedia}function I(t){if(T())return matchMedia(t)}function E(){return R()?t=>setTimeout(t):t=>(requestAnimationFrame||setTimeout)(t)}function D(){return R()?t=>clearTimeout(t):t=>(cancelAnimationFrame||clearTimeout)(t)}function A(t,e){return t===e||e instanceof Array&&e.indexOf(t)>-1}async function F(t,e){try{await document.fonts.load(`${null!=e?e:"400"} 36px '${null!=t?t:"Verdana"}'`)}catch(t){}}function L(t){return Math.floor(h()*t.length)}function V(t,e,i=!0){return t[void 0!==e&&i?e%t.length:L(t)]}function W(t,e,i,s,n){return B(H(t,null!=s?s:0),e,i,n)}function B(t,e,i,s){let n=!0;return s&&"bottom"!==s||(n=t.top<e.height+i.x),!n||s&&"left"!==s||(n=t.right>i.x),!n||s&&"right"!==s||(n=t.left<e.width+i.y),!n||s&&"top"!==s||(n=t.bottom>i.y),n}function H(t,e){return{bottom:t.y+e,left:t.x-e,right:t.x+e,top:t.y-e}}function U(t,...e){for(const i of e){if(null==i)continue;if("object"!=typeof i){t=i;continue}const e=Array.isArray(i);!e||"object"==typeof t&&t&&Array.isArray(t)?e||"object"==typeof t&&t&&!Array.isArray(t)||(t={}):t=[];for(const e in i){if("__proto__"===e)continue;const s=i[e],n="object"==typeof s,o=t;o[e]=n&&Array.isArray(s)?s.map((t=>U(o[e],t))):U(o[e],s)}}return t}function q(t,e){return!!J(e,(e=>e.enable&&A(t,e.mode)))}function G(t,e,i){Z(e,(e=>{const s=e.mode;e.enable&&A(t,s)&&j(e,i)}))}function j(t,e){Z(t.selectors,(i=>{e(i,t)}))}function $(t,e){if(e&&t)return J(t,(t=>function(t,e){const i=Z(e,(e=>t.matches(e)));return i instanceof Array?i.some((t=>t)):i}(e,t.selectors)))}function N(t){return{position:t.getPosition(),radius:t.getRadius(),mass:t.getMass(),velocity:t.velocity,factor:s.create(g(t.options.bounce.horizontal),g(t.options.bounce.vertical))}}function X(t,e){const{x:i,y:s}=t.velocity.sub(e.velocity),[n,o]=[t.position,e.position],{dx:a,dy:r}=y(o,n);if(i*a+s*r<0)return;const l=-Math.atan2(r,a),h=t.mass,c=e.mass,d=t.velocity.rotate(l),u=e.velocity.rotate(l),p=x(d,u,h,c),v=x(u,d,h,c),f=p.rotate(-l),m=v.rotate(-l);t.velocity.x=f.x*t.factor.x,t.velocity.y=f.y*t.factor.y,e.velocity.x=m.x*e.factor.x,e.velocity.y=m.y*e.factor.y}function Y(t,e){const i=H(t.getPosition(),t.getRadius()),s=S({min:i.left,max:i.right},{min:i.top,max:i.bottom},{min:e.left,max:e.right},{min:e.top,max:e.bottom},t.velocity.x,g(t.options.bounce.horizontal));s.bounced&&(void 0!==s.velocity&&(t.velocity.x=s.velocity),void 0!==s.position&&(t.position.x=s.position));const n=S({min:i.top,max:i.bottom},{min:i.left,max:i.right},{min:e.top,max:e.bottom},{min:e.left,max:e.right},t.velocity.y,g(t.options.bounce.vertical));n.bounced&&(void 0!==n.velocity&&(t.velocity.y=n.velocity),void 0!==n.position&&(t.position.y=n.position))}function Z(t,e){return t instanceof Array?t.map(((t,i)=>e(t,i))):e(t,0)}function Q(t,e,i){return t instanceof Array?V(t,e,i):t}function J(t,e){return t instanceof Array?t.find(((t,i)=>e(t,i))):e(t,0)?t:void 0}function K(t,e){const i=t.value,s=t.animation,n={enable:t.animation.enable,value:p(t.value)*e,max:f(i)*e,min:v(i)*e,loops:0,maxLoops:p(t.animation.count)};if(s.enable)switch(n.status="increasing",n.decay=1-p(s.decay),s.startValue){case"min":n.value=n.min,n.status="increasing";break;case"random":n.value=u(n),n.status=h()>=.5?"increasing":"decreasing";break;default:n.value=n.max,n.status="decreasing"}return n.initialValue=n.value,n}const tt="random",et="mid",it=new Map;function st(t){it.set(t.key,t)}function nt(t,e,i){return i<0&&(i+=1),i>1&&(i-=1),i<1/6?t+6*(e-t)*i:i<.5?e:i<2/3?t+(e-t)*(2/3-i)*6:t}function ot(t){for(const[,e]of it)if(t.startsWith(e.stringPrefix))return e.parseString(t);const e=t.replace(/^#?([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,((t,e,i,s,n)=>e+e+i+i+s+s+(void 0!==n?n+n:""))),i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i.exec(e);return i?{a:void 0!==i[4]?parseInt(i[4],16)/255:1,b:parseInt(i[3],16),g:parseInt(i[2],16),r:parseInt(i[1],16)}:void 0}function at(t,e,i=!0){if(!t)return;const s="string"==typeof t?{value:t}:t;if("string"==typeof s.value)return rt(s.value,e,i);if(s.value instanceof Array)return at({value:V(s.value,e,i)});for(const[,t]of it){const e=t.handleRangeColor(s);if(e)return e}}function rt(t,e,i=!0){if(!t)return;const s="string"==typeof t?{value:t}:t;if("string"==typeof s.value)return s.value===tt?ft():ut(s.value);if(s.value instanceof Array)return rt({value:V(s.value,e,i)});for(const[,t]of it){const e=t.handleColor(s);if(e)return e}}function lt(t,e,i=!0){const s=rt(t,e,i);return s?ct(s):void 0}function ht(t,e,i=!0){const s=at(t,e,i);return s?ct(s):void 0}function ct(t){const e=t.r/255,i=t.g/255,s=t.b/255,n=Math.max(e,i,s),o=Math.min(e,i,s),a={h:0,l:(n+o)/2,s:0};return n!==o&&(a.s=a.l<.5?(n-o)/(n+o):(n-o)/(2-n-o),a.h=e===n?(i-s)/(n-o):a.h=i===n?2+(s-e)/(n-o):4+(e-i)/(n-o)),a.l*=100,a.s*=100,a.h*=60,a.h<0&&(a.h+=360),a.h>=360&&(a.h-=360),a}function dt(t){var e;return null===(e=ot(t))||void 0===e?void 0:e.a}function ut(t){return ot(t)}function pt(t){const e={b:0,g:0,r:0},i={h:t.h/360,l:t.l/100,s:t.s/100};if(i.s){const t=i.l<.5?i.l*(1+i.s):i.l+i.s-i.l*i.s,s=2*i.l-t;e.r=nt(s,t,i.h+1/3),e.g=nt(s,t,i.h),e.b=nt(s,t,i.h-1/3)}else e.b=i.l,e.g=i.l,e.r=i.l;return e.r=Math.floor(255*e.r),e.g=Math.floor(255*e.g),e.b=Math.floor(255*e.b),e}function vt(t){const e=pt(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function ft(t){const e=null!=t?t:0;return{b:Math.floor(u(m(e,256))),g:Math.floor(u(m(e,256))),r:Math.floor(u(m(e,256)))}}function mt(t,e){return`rgba(${t.r}, ${t.g}, ${t.b}, ${null!=e?e:1})`}function gt(t,e){return`hsla(${t.h}, ${t.s}%, ${t.l}%, ${null!=e?e:1})`}function yt(t,e,i,s){let n=t,o=e;return void 0===n.r&&(n=pt(t)),void 0===o.r&&(o=pt(e)),{b:d(n.b,o.b,i,s),g:d(n.g,o.g,i,s),r:d(n.r,o.r,i,s)}}function bt(t,e,i){var s,n;if(i===tt)return ft();if(i!==et)return i;{const i=null!==(s=t.getFillColor())&&void 0!==s?s:t.getStrokeColor(),o=null!==(n=null==e?void 0:e.getFillColor())&&void 0!==n?n:null==e?void 0:e.getStrokeColor();if(i&&o&&e)return yt(i,o,t.getRadius(),e.getRadius());{const t=null!=i?i:o;if(t)return pt(t)}}}function wt(t,e,i){const s="string"==typeof t?t:t.value;return s===tt?i?at({value:s}):e?tt:et:s===et?et:at({value:s})}function _t(t){return void 0!==t?{h:t.h.value,s:t.s.value,l:t.l.value}:void 0}function xt(t,e,i){const s={h:{enable:!1,value:t.h},s:{enable:!1,value:t.s},l:{enable:!1,value:t.l}};return e&&(zt(s.h,e.h,i),zt(s.s,e.s,i),zt(s.l,e.l,i)),s}function zt(t,e,i){t.enable=e.enable,t.enable?(t.velocity=p(e.speed)/100*i,t.decay=1-p(e.decay),t.status="increasing",t.loops=0,t.maxLoops=p(e.count),e.sync||(t.velocity*=h(),t.value*=h()),t.initialValue=t.value):t.velocity=0}function Mt(t,e,i){t.fillStyle=null!=i?i:"rgba(0,0,0,0)",t.fillRect(0,0,e.width,e.height)}function Pt(t){const e=t.getContext("2d");if(!e)throw new Error("Error tsParticles - No canvas context found");return e}function Ot(t,e,i,s,n){if(i.backgroundMask.enable)kt(t,e,i,n);else{const n=i.particles.move.trail;n.enable&&n.length>0&&s?s.color?Mt(t,e,mt(s.color,s.opacity)):s.image&&function(t,e,i,s){i&&(t.globalAlpha=s,t.drawImage(i,0,0,e.width,e.height),t.globalAlpha=1)}(t,e,s.image,s.opacity):Rt(t,e)}}function kt(t,e,i,s){i.backgroundMask.enable&&s?(Rt(t,e),Mt(t,e,s)):Mt(t,e)}function Ct(t,e,i){t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(i.x,i.y),t.closePath()}function St(t,e,i,s){t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(i.x,i.y),t.lineTo(s.x,s.y),t.closePath()}function Rt(t,e){t.clearRect(0,0,e.width,e.height)}function Tt(t){var e,i,s,n,o;const{container:a,context:r,particle:l,delta:h,colorStyles:c,backgroundMask:d,composite:u,radius:p,opacity:v,shadow:f,transform:m}=t,g=l.getPosition(),y=l.rotation+(l.pathRotation?l.velocity.angle:0),b=Math.sin(y),w=Math.cos(y),_={a:w*(null!==(e=m.a)&&void 0!==e?e:1),b:b*(null!==(i=m.b)&&void 0!==i?i:1),c:-b*(null!==(s=m.c)&&void 0!==s?s:1),d:w*(null!==(n=m.d)&&void 0!==n?n:1)};r.setTransform(_.a,_.b,_.c,_.d,g.x,g.y),r.beginPath(),d&&(r.globalCompositeOperation=u);const x=l.shadowColor;f.enable&&x&&(r.shadowBlur=f.blur,r.shadowColor=mt(x),r.shadowOffsetX=f.offset.x,r.shadowOffsetY=f.offset.y),c.fill&&(r.fillStyle=c.fill);const z=null!==(o=l.strokeWidth)&&void 0!==o?o:0;r.lineWidth=z,c.stroke&&(r.strokeStyle=c.stroke),It(a,r,l,p,v,h),z>0&&r.stroke(),l.close&&r.closePath(),l.fill&&r.fill(),Et(a,r,l,p,v,h),r.globalCompositeOperation="source-over",r.setTransform(1,0,0,1,0,0)}function It(t,e,i,s,n,o){if(!i.shape)return;const a=t.drawers.get(i.shape);a&&a.draw(e,i,s,n,o,t.retina.pixelRatio)}function Et(t,e,i,s,n,o){if(!i.shape)return;const a=t.drawers.get(i.shape);(null==a?void 0:a.afterEffect)&&a.afterEffect(e,i,s,n,o,t.retina.pixelRatio)}function Dt(t,e,i){e.draw&&e.draw(t,i)}function At(t,e,i,s){e.drawParticle&&e.drawParticle(t,i,s)}function Ft(t,e,i){return{h:t.h,s:t.s,l:t.l+("darken"===e?-1:1)*i}}const Lt="generated",Vt="touchend",Wt="pointerdown",Bt="pointerup",Ht="pointermove",Ut="touchstart",qt="touchmove",Gt="pointerleave",jt="pointerout",$t="touchcancel",Nt="resize",Xt="visibilitychange";function Yt(t,e,i){var s;const n=e[i];void 0!==n&&(t[i]=(null!==(s=t[i])&&void 0!==s?s:1)*n)}class Zt{constructor(t){this.container=t,this.size={height:0,width:0},this._context=null,this._generated=!1,this._preDrawUpdaters=[],this._postDrawUpdaters=[],this._resizePlugins=[],this._colorPlugins=[],this._mutationObserver=R()||"undefined"==typeof MutationObserver?void 0:new MutationObserver((t=>{for(const e of t)"attributes"===e.type&&"style"===e.attributeName&&this._repairStyle()}))}get _fullScreen(){return this.container.actualOptions.fullScreen.enable}clear(){this.draw((t=>{Ot(t,this.size,this.container.actualOptions,this._trailFill,this._coverColorStyle)}))}destroy(){var t,e;null===(t=this._mutationObserver)||void 0===t||t.disconnect(),this._generated?null===(e=this.element)||void 0===e||e.remove():this._resetOriginalStyle(),this.draw((t=>{Rt(t,this.size)})),this._preDrawUpdaters=[],this._postDrawUpdaters=[],this._resizePlugins=[],this._colorPlugins=[]}draw(t){if(this._context)return t(this._context)}drawParticle(t,e){var i;if(t.spawning||t.destroyed)return;const s=t.getRadius();if(s<=0)return;const n=t.getFillColor(),o=null!==(i=t.getStrokeColor())&&void 0!==i?i:n;let[a,r]=this._getPluginParticleColors(t);a||(a=n),r||(r=o),(a||r)&&this.draw((i=>{var n,o,l,h;const c=this.container.actualOptions,d=t.options.zIndex,u=(1-t.zIndexFactor)**d.opacityRate,p=null!==(l=null!==(n=t.bubble.opacity)&&void 0!==n?n:null===(o=t.opacity)||void 0===o?void 0:o.value)&&void 0!==l?l:1,v=p*u,f=(null!==(h=t.strokeOpacity)&&void 0!==h?h:p)*u,m={},g={fill:a?gt(a,v):void 0};g.stroke=r?gt(r,f):g.fill,this._applyPreDrawUpdaters(i,t,s,v,g,m),Tt({container:this.container,context:i,particle:t,delta:e,colorStyles:g,backgroundMask:c.backgroundMask.enable,composite:c.backgroundMask.composite,radius:s*(1-t.zIndexFactor)**d.sizeRate,opacity:v,shadow:t.options.shadow,transform:m}),this._applyPostDrawUpdaters(t)}))}drawParticlePlugin(t,e,i){this.draw((s=>{At(s,t,e,i)}))}drawPlugin(t,e){this.draw((i=>{Dt(i,t,e)}))}async init(){var t;this._resize(),this._initStyle(),this._initCover();try{await this._initTrail()}catch(t){console.error(t)}this._initBackground(),this.element&&(null===(t=this._mutationObserver)||void 0===t||t.observe(this.element,{attributes:!0})),this._initUpdaters(),this._initPlugins(),this._paint(),this.container.updateActualOptions(),this._resize(),this._initBackground()}loadCanvas(t){var e,i;this._generated&&(null===(e=this.element)||void 0===e||e.remove()),this._generated=t.dataset&&Lt in t.dataset?"true"===t.dataset[Lt]:this._generated,this.element=t,this.element.ariaHidden="true",this._originalStyle=U({},this.element.style),this.size.height=t.offsetHeight,this.size.width=t.offsetWidth,this._context=Pt(t),null===(i=this._mutationObserver)||void 0===i||i.observe(this.element,{attributes:!0}),this.container.retina.init(),this._initBackground()}async windowResize(){if(!this.element)return;this._resize();const t=this.container,e=t.updateActualOptions();t.particles.setDensity(),this._applyResizePlugins(),e&&await t.refresh()}_applyPostDrawUpdaters(t){var e;for(const i of this._postDrawUpdaters)null===(e=i.afterDraw)||void 0===e||e.call(i,t)}_applyPreDrawUpdaters(t,e,i,s,n,o){var a;for(const r of this._preDrawUpdaters){if(r.getColorStyles){const{fill:o,stroke:a}=r.getColorStyles(e,t,i,s);o&&(n.fill=o),a&&(n.stroke=a)}if(r.getTransformValues){const t=r.getTransformValues(e);for(const e in t)Yt(o,t,e)}null===(a=r.beforeDraw)||void 0===a||a.call(r,e)}}_applyResizePlugins(){for(const t of this._resizePlugins)t.resize&&t.resize()}_getPluginParticleColors(t){let e,i;for(const s of this._colorPlugins)if(!e&&s.particleFillColor&&(e=ht(s.particleFillColor(t))),!i&&s.particleStrokeColor&&(i=ht(s.particleStrokeColor(t))),e&&i)break;return[e,i]}_initBackground(){const t=this.container.actualOptions.background,e=this.element,i=null==e?void 0:e.style;if(i){if(t.color){const e=at(t.color);i.backgroundColor=e?mt(e,t.opacity):""}else i.backgroundColor="";i.backgroundImage=t.image||"",i.backgroundPosition=t.position||"",i.backgroundRepeat=t.repeat||"",i.backgroundSize=t.size||""}}_initCover(){const t=this.container.actualOptions.backgroundMask.cover,e=at(t.color);if(e){const i={r:e.r,g:e.g,b:e.b,a:t.opacity};this._coverColorStyle=mt(i,i.a)}}_initPlugins(){this._resizePlugins=[];for(const[,t]of this.container.plugins)t.resize&&this._resizePlugins.push(t),(t.particleFillColor||t.particleStrokeColor)&&this._colorPlugins.push(t)}_initStyle(){const t=this.element,e=this.container.actualOptions;if(t){this._fullScreen?(this._originalStyle=U({},t.style),this._setFullScreenStyle()):this._resetOriginalStyle();for(const i in e.style){if(!i||!e.style)continue;const s=e.style[i];s&&t.style.setProperty(i,s,"important")}}}async _initTrail(){const t=this.container.actualOptions,e=t.particles.move.trail,i=e.fill;if(e.enable)if(i.color){const e=at(i.color);if(!e)return;const s=t.particles.move.trail;this._trailFill={color:Object.assign({},e),opacity:1/s.length}}else await new Promise(((t,s)=>{if(!i.image)return;const n=document.createElement("img");n.addEventListener("load",(()=>{this._trailFill={image:n,opacity:1/e.length},t()})),n.addEventListener("error",(t=>{s(t.error)})),n.src=i.image}))}_initUpdaters(){this._preDrawUpdaters=[],this._postDrawUpdaters=[];for(const t of this.container.particles.updaters)t.afterDraw&&this._postDrawUpdaters.push(t),(t.getColorStyles||t.getTransformValues||t.beforeDraw)&&this._preDrawUpdaters.push(t)}_paint(){this.draw((t=>{kt(t,this.size,this.container.actualOptions,this._coverColorStyle)}))}_repairStyle(){var t,e;const i=this.element;i&&(null===(t=this._mutationObserver)||void 0===t||t.disconnect(),this._initStyle(),this._initBackground(),null===(e=this._mutationObserver)||void 0===e||e.observe(i,{attributes:!0}))}_resetOriginalStyle(){const t=this.element,e=this._originalStyle;t&&e&&(t.style.position=e.position,t.style.zIndex=e.zIndex,t.style.top=e.top,t.style.left=e.left,t.style.width=e.width,t.style.height=e.height)}_resize(){if(!this.element)return;const t=this.container,e=t.retina.pixelRatio,i=t.canvas.size,s=this.element.offsetWidth*e,n=this.element.offsetHeight*e;if(n===i.height&&s===i.width&&n===this.element.height&&s===this.element.width)return;const o=Object.assign({},i);this.element.width=i.width=this.element.offsetWidth*e,this.element.height=i.height=this.element.offsetHeight*e,this.container.started&&(this.resizeFactor={width:i.width/o.width,height:i.height/o.height})}_setFullScreenStyle(){const t=this.element;if(!t)return;const e="important";t.style.setProperty("position","fixed",e),t.style.setProperty("z-index",this.container.actualOptions.fullScreen.zIndex.toString(10),e),t.style.setProperty("top","0",e),t.style.setProperty("left","0",e),t.style.setProperty("width","100%",e),t.style.setProperty("height","100%",e)}}function Qt(t,e,i,s,n){if(s){let s={passive:!0};"boolean"==typeof n?s.capture=n:void 0!==n&&(s=n),t.addEventListener(e,i,s)}else{const s=n;t.removeEventListener(e,i,s)}}class Jt{constructor(t){this.container=t,this.canPush=!0,this.handlers={mouseMove:t=>this.mouseTouchMove(t),touchStart:t=>this.mouseTouchMove(t),touchMove:t=>this.mouseTouchMove(t),touchEnd:()=>this.mouseTouchFinish(),mouseLeave:()=>this.mouseTouchFinish(),touchCancel:()=>this.mouseTouchFinish(),touchEndClick:t=>this.mouseTouchClick(t),mouseUp:t=>this.mouseTouchClick(t),mouseDown:()=>this.mouseDown(),visibilityChange:()=>this.handleVisibilityChange(),themeChange:t=>this.handleThemeChange(t),oldThemeChange:t=>this.handleThemeChange(t),resize:()=>this.handleWindowResize()}}addListeners(){this.manageListeners(!0)}removeListeners(){this.manageListeners(!1)}doMouseTouchClick(t){const e=this.container,i=e.actualOptions;if(this.canPush){const t=e.interactivity.mouse,s=t.position;if(!s)return;t.clickPosition=Object.assign({},s),t.clickTime=(new Date).getTime();Z(i.interactivity.events.onClick.mode,(t=>this.handleClickMode(t)))}"touchend"===t.type&&setTimeout((()=>this.mouseTouchFinish()),500)}handleClickMode(t){this.container.handleClickMode(t)}handleThemeChange(t){const e=t,i=this.container,s=i.options,n=s.defaultThemes,o=e.matches?n.dark:n.light,a=s.themes.find((t=>t.name===o));a&&a.default.auto&&i.loadTheme(o)}handleVisibilityChange(){const t=this.container,e=t.actualOptions;this.mouseTouchFinish(),e.pauseOnBlur&&((null===document||void 0===document?void 0:document.hidden)?(t.pageHidden=!0,t.pause()):(t.pageHidden=!1,t.getAnimationStatus()?t.play(!0):t.draw(!0)))}handleWindowResize(){this.resizeTimeout&&(clearTimeout(this.resizeTimeout),delete this.resizeTimeout),this.resizeTimeout=setTimeout((async()=>{var t;return null===(t=this.container.canvas)||void 0===t?void 0:t.windowResize()}),1e3*this.container.actualOptions.interactivity.events.resize.delay)}manageListeners(t){var e;const i=this.handlers,s=this.container,n=s.actualOptions,o=n.interactivity.detectsOn;let a=Gt;if("window"===o)s.interactivity.element=window,a=jt;else if("parent"===o&&s.canvas.element){const t=s.canvas.element;s.interactivity.element=null!==(e=t.parentElement)&&void 0!==e?e:t.parentNode}else s.interactivity.element=s.canvas.element;const r=I("(prefers-color-scheme: dark)");r&&(void 0!==r.addEventListener?Qt(r,"change",i.themeChange,t):void 0!==r.addListener&&(t?r.addListener(i.oldThemeChange):r.removeListener(i.oldThemeChange)));const l=s.interactivity.element;if(!l)return;const h=l;(n.interactivity.events.onHover.enable||n.interactivity.events.onClick.enable)&&(Qt(l,Ht,i.mouseMove,t),Qt(l,Ut,i.touchStart,t),Qt(l,qt,i.touchMove,t),n.interactivity.events.onClick.enable?(Qt(l,Vt,i.touchEndClick,t),Qt(l,Bt,i.mouseUp,t),Qt(l,Wt,i.mouseDown,t)):Qt(l,Vt,i.touchEnd,t),Qt(l,a,i.mouseLeave,t),Qt(l,$t,i.touchCancel,t)),s.canvas.element&&(s.canvas.element.style.pointerEvents=h===s.canvas.element?"initial":"none"),n.interactivity.events.resize&&("undefined"!=typeof ResizeObserver?this.resizeObserver&&!t?(s.canvas.element&&this.resizeObserver.unobserve(s.canvas.element),this.resizeObserver.disconnect(),delete this.resizeObserver):!this.resizeObserver&&t&&s.canvas.element&&(this.resizeObserver=new ResizeObserver((t=>{t.find((t=>t.target===s.canvas.element))&&this.handleWindowResize()})),this.resizeObserver.observe(s.canvas.element)):Qt(window,Nt,i.resize,t)),document&&Qt(document,Xt,i.visibilityChange,t,!1)}mouseDown(){const t=this.container.interactivity;if(t){const e=t.mouse;e.clicking=!0,e.downPosition=e.position}}mouseTouchClick(t){const e=this.container,i=e.actualOptions,s=e.interactivity.mouse;s.inside=!0;let n=!1;const o=s.position;if(o&&i.interactivity.events.onClick.enable){for(const[,t]of e.plugins)if(t.clickPositionValid&&(n=t.clickPositionValid(o),n))break;n||this.doMouseTouchClick(t),s.clicking=!1}}mouseTouchFinish(){const t=this.container.interactivity;if(!t)return;const e=t.mouse;delete e.position,delete e.clickPosition,delete e.downPosition,t.status=Gt,e.inside=!1,e.clicking=!1}mouseTouchMove(t){var e,i,s,n,o,a,r;const l=this.container,h=l.actualOptions;if(!(null===(e=l.interactivity)||void 0===e?void 0:e.element))return;let c;l.interactivity.mouse.inside=!0;const d=l.canvas.element;if(t.type.startsWith("pointer")){this.canPush=!0;const e=t;if(l.interactivity.element===window){if(d){const t=d.getBoundingClientRect();c={x:e.clientX-t.left,y:e.clientY-t.top}}}else if("parent"===h.interactivity.detectsOn){const t=e.target,n=e.currentTarget,o=l.canvas.element;if(t&&n&&o){const i=t.getBoundingClientRect(),s=n.getBoundingClientRect(),a=o.getBoundingClientRect();c={x:e.offsetX+2*i.left-(s.left+a.left),y:e.offsetY+2*i.top-(s.top+a.top)}}else c={x:null!==(i=e.offsetX)&&void 0!==i?i:e.clientX,y:null!==(s=e.offsetY)&&void 0!==s?s:e.clientY}}else e.target===l.canvas.element&&(c={x:null!==(n=e.offsetX)&&void 0!==n?n:e.clientX,y:null!==(o=e.offsetY)&&void 0!==o?o:e.clientY})}else{this.canPush="touchmove"!==t.type;const e=t,i=e.touches[e.touches.length-1],s=null==d?void 0:d.getBoundingClientRect();c={x:i.clientX-(null!==(a=null==s?void 0:s.left)&&void 0!==a?a:0),y:i.clientY-(null!==(r=null==s?void 0:s.top)&&void 0!==r?r:0)}}const u=l.retina.pixelRatio;c&&(c.x*=u,c.y*=u),l.interactivity.mouse.position=c,l.interactivity.status=Ht}}class Kt{constructor(t){this.container=t}async nextFrame(t){var e;try{const i=this.container;if(!i.smooth&&void 0!==i.lastFrameTime&&t<i.lastFrameTime+1e3/i.fpsLimit)return void i.draw(!1);null!==(e=i.lastFrameTime)&&void 0!==e||(i.lastFrameTime=t);const s=function(t,e=60,i=!1){return{value:t,factor:i?60/e:60*t/1e3}}(t-i.lastFrameTime,i.fpsLimit,i.smooth);if(i.lifeTime+=s.value,i.lastFrameTime=t,s.value>1e3)return void i.draw(!1);if(await i.particles.draw(s),i.duration>0&&i.lifeTime>i.duration)return void i.destroy();i.getAnimationStatus()&&i.draw(!1)}catch(t){console.error("tsParticles error in animation loop",t)}}}class te{constructor(){this.value=""}static create(t,e){const i=new te;return i.load(t),void 0!==e&&("string"==typeof e||e instanceof Array?i.load({value:e}):i.load(e)),i}load(t){void 0!==(null==t?void 0:t.value)&&(this.value=t.value)}}class ee{constructor(){this.color=new te,this.color.value="",this.image="",this.position="",this.repeat="",this.size="",this.opacity=1}load(t){t&&(void 0!==t.color&&(this.color=te.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image),void 0!==t.position&&(this.position=t.position),void 0!==t.repeat&&(this.repeat=t.repeat),void 0!==t.size&&(this.size=t.size),void 0!==t.opacity&&(this.opacity=t.opacity))}}class ie{constructor(){this.color=new te,this.color.value="#fff",this.opacity=1}load(t){t&&(void 0!==t.color&&(this.color=te.create(this.color,t.color)),void 0!==t.opacity&&(this.opacity=t.opacity))}}class se{constructor(){this.composite="destination-out",this.cover=new ie,this.enable=!1}load(t){if(t){if(void 0!==t.composite&&(this.composite=t.composite),void 0!==t.cover){const e=t.cover,i="string"==typeof t.cover?{color:t.cover}:t.cover;this.cover.load(void 0!==e.color?e:{color:i})}void 0!==t.enable&&(this.enable=t.enable)}}}class ne{constructor(){this.enable=!0,this.zIndex=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.zIndex&&(this.zIndex=t.zIndex))}}class oe{constructor(){this.enable=!1,this.mode=[]}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode))}}class ae{constructor(){this.selectors=[],this.enable=!1,this.mode=[],this.type="circle"}get el(){return this.elementId}set el(t){this.elementId=t}get elementId(){return this.ids}set elementId(t){this.ids=t}get ids(){return Z(this.selectors,(t=>t.replace("#","")))}set ids(t){this.selectors=Z(t,(t=>`#${t}`))}load(t){var e,i;if(!t)return;const s=null!==(i=null!==(e=t.ids)&&void 0!==e?e:t.elementId)&&void 0!==i?i:t.el;void 0!==s&&(this.ids=s),void 0!==t.selectors&&(this.selectors=t.selectors),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.type&&(this.type=t.type)}}class re{constructor(){this.enable=!1,this.force=2,this.smooth=10}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.force&&(this.force=t.force),void 0!==t.smooth&&(this.smooth=t.smooth))}}class le{constructor(){this.enable=!1,this.mode=[],this.parallax=new re}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),this.parallax.load(t.parallax))}}class he{constructor(){this.delay=.5,this.enable=!0}load(t){void 0!==t&&(void 0!==t.delay&&(this.delay=t.delay),void 0!==t.enable&&(this.enable=t.enable))}}class ce{constructor(){this.onClick=new oe,this.onDiv=new ae,this.onHover=new le,this.resize=new he}get onclick(){return this.onClick}set onclick(t){this.onClick=t}get ondiv(){return this.onDiv}set ondiv(t){this.onDiv=t}get onhover(){return this.onHover}set onhover(t){this.onHover=t}load(t){var e,i,s;if(!t)return;this.onClick.load(null!==(e=t.onClick)&&void 0!==e?e:t.onclick);const n=null!==(i=t.onDiv)&&void 0!==i?i:t.ondiv;void 0!==n&&(this.onDiv=Z(n,(t=>{const e=new ae;return e.load(t),e}))),this.onHover.load(null!==(s=t.onHover)&&void 0!==s?s:t.onhover),"boolean"==typeof t.resize?this.resize.enable=t.resize:this.resize.load(t.resize)}}class de{constructor(t,e){this._engine=t,this._container=e}load(t){if(t&&this._container){const e=this._engine.plugins.interactors.get(this._container);if(e)for(const i of e)i.loadModeOptions&&i.loadModeOptions(this,t)}}}class ue{constructor(t,e){this.detectsOn="window",this.events=new ce,this.modes=new de(t,e)}get detect_on(){return this.detectsOn}set detect_on(t){this.detectsOn=t}load(t){var e;if(!t)return;const i=null!==(e=t.detectsOn)&&void 0!==e?e:t.detect_on;void 0!==i&&(this.detectsOn=i),this.events.load(t.events),this.modes.load(t.modes)}}class pe{load(t){var e,i;t&&(void 0!==t.position&&(this.position={x:null!==(e=t.position.x)&&void 0!==e?e:50,y:null!==(i=t.position.y)&&void 0!==i?i:50}),void 0!==t.options&&(this.options=U({},t.options)))}}class ve{constructor(){this.maxWidth=1/0,this.options={},this.mode="canvas"}load(t){t&&(void 0!==t.maxWidth&&(this.maxWidth=t.maxWidth),void 0!==t.mode&&("screen"===t.mode?this.mode="screen":this.mode="canvas"),void 0!==t.options&&(this.options=U({},t.options)))}}class fe{constructor(){this.auto=!1,this.mode="any",this.value=!1}load(t){t&&(void 0!==t.auto&&(this.auto=t.auto),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}class me{constructor(){this.name="",this.default=new fe}load(t){t&&(void 0!==t.name&&(this.name=t.name),this.default.load(t.default),void 0!==t.options&&(this.options=U({},t.options)))}}class ge{constructor(){this.count=0,this.enable=!1,this.offset=0,this.speed=1,this.decay=0,this.sync=!0}load(t){t&&(void 0!==t.count&&(this.count=m(t.count)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.offset&&(this.offset=m(t.offset)),void 0!==t.speed&&(this.speed=m(t.speed)),void 0!==t.decay&&(this.decay=m(t.decay)),void 0!==t.sync&&(this.sync=t.sync))}}class ye{constructor(){this.h=new ge,this.s=new ge,this.l=new ge}load(t){t&&(this.h.load(t.h),this.s.load(t.s),this.l.load(t.l))}}class be extends te{constructor(){super(),this.animation=new ye}static create(t,e){const i=new be;return i.load(t),void 0!==e&&("string"==typeof e||e instanceof Array?i.load({value:e}):i.load(e)),i}load(t){if(super.load(t),!t)return;const e=t.animation;void 0!==e&&(void 0!==e.enable?this.animation.h.load(e):this.animation.load(t.animation))}}class we{constructor(){this.speed=2}load(t){t&&void 0!==t.speed&&(this.speed=t.speed)}}class _e{constructor(){this.enable=!0,this.retries=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.retries&&(this.retries=t.retries))}}class xe{constructor(){this.count=0,this.enable=!1,this.speed=1,this.decay=0,this.sync=!1}load(t){t&&(void 0!==t.count&&(this.count=m(t.count)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=m(t.speed)),void 0!==t.decay&&(this.decay=m(t.decay)),void 0!==t.sync&&(this.sync=t.sync))}}class ze extends xe{constructor(){super(),this.startValue="random"}load(t){super.load(t),t&&(void 0!==t.minimumValue&&(this.minimumValue=t.minimumValue),void 0!==t.startValue&&(this.startValue=t.startValue))}}class Me{constructor(){this.enable=!1,this.minimumValue=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.minimumValue&&(this.minimumValue=t.minimumValue))}}class Pe{constructor(){this.random=new Me,this.value=0}load(t){t&&("boolean"==typeof t.random?this.random.enable=t.random:this.random.load(t.random),void 0!==t.value&&(this.value=m(t.value,this.random.enable?this.random.minimumValue:void 0)))}}class Oe extends Pe{constructor(){super(),this.animation=new xe}get anim(){return this.animation}set anim(t){this.animation=t}load(t){var e;if(super.load(t),!t)return;const i=null!==(e=t.animation)&&void 0!==e?e:t.anim;void 0!==i&&this.animation.load(i)}}class ke extends Oe{constructor(){super(),this.animation=new ze}load(t){super.load(t),t&&void 0!==t.animation&&(this.value=m(this.value,this.animation.enable?this.animation.minimumValue:void 0))}}class Ce extends Pe{constructor(){super(),this.random.minimumValue=.1,this.value=1}}class Se{constructor(){this.horizontal=new Ce,this.vertical=new Ce}load(t){t&&(this.horizontal.load(t.horizontal),this.vertical.load(t.vertical))}}class Re{constructor(){this.absorb=new we,this.bounce=new Se,this.enable=!1,this.mode="bounce",this.overlap=new _e}load(t){t&&(this.absorb.load(t.absorb),this.bounce.load(t.bounce),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),this.overlap.load(t.overlap))}}class Te{constructor(){this.offset=0,this.value=90}load(t){t&&(void 0!==t.offset&&(this.offset=m(t.offset)),void 0!==t.value&&(this.value=m(t.value)))}}class Ie{constructor(){this.distance=200,this.enable=!1,this.rotate={x:3e3,y:3e3}}get rotateX(){return this.rotate.x}set rotateX(t){this.rotate.x=t}get rotateY(){return this.rotate.y}set rotateY(t){this.rotate.y=t}load(t){var e,i,s,n;if(!t)return;void 0!==t.distance&&(this.distance=m(t.distance)),void 0!==t.enable&&(this.enable=t.enable);const o=null!==(i=null===(e=t.rotate)||void 0===e?void 0:e.x)&&void 0!==i?i:t.rotateX;void 0!==o&&(this.rotate.x=o);const a=null!==(n=null===(s=t.rotate)||void 0===s?void 0:s.y)&&void 0!==n?n:t.rotateY;void 0!==a&&(this.rotate.y=a)}}class Ee{constructor(){this.x=50,this.y=50,this.mode="percent",this.radius=0}load(t){t&&(void 0!==t.x&&(this.x=t.x),void 0!==t.y&&(this.y=t.y),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.radius&&(this.radius=t.radius))}}class De{constructor(){this.acceleration=9.81,this.enable=!1,this.inverse=!1,this.maxSpeed=50}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=m(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.inverse&&(this.inverse=t.inverse),void 0!==t.maxSpeed&&(this.maxSpeed=m(t.maxSpeed)))}}class Ae{constructor(){this.clamp=!0,this.delay=new Pe,this.enable=!1,this.options={}}load(t){t&&(void 0!==t.clamp&&(this.clamp=t.clamp),this.delay.load(t.delay),void 0!==t.enable&&(this.enable=t.enable),this.generator=t.generator,t.options&&(this.options=U(this.options,t.options)))}}class Fe{load(t){t&&(void 0!==t.color&&(this.color=te.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image))}}class Le{constructor(){this.enable=!1,this.length=10,this.fill=new Fe}get fillColor(){return this.fill.color}set fillColor(t){this.fill.load({color:t})}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0===t.fill&&void 0===t.fillColor||this.fill.load(t.fill||{color:t.fillColor}),void 0!==t.length&&(this.length=t.length))}}class Ve{constructor(){this.default="out"}load(t){var e,i,s,n;t&&(void 0!==t.default&&(this.default=t.default),this.bottom=null!==(e=t.bottom)&&void 0!==e?e:t.default,this.left=null!==(i=t.left)&&void 0!==i?i:t.default,this.right=null!==(s=t.right)&&void 0!==s?s:t.default,this.top=null!==(n=t.top)&&void 0!==n?n:t.default)}}class We{constructor(){this.acceleration=0,this.enable=!1}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=m(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),this.position=t.position?U({},t.position):void 0)}}class Be{constructor(){this.angle=new Te,this.attract=new Ie,this.center=new Ee,this.decay=0,this.distance={},this.direction="none",this.drift=0,this.enable=!1,this.gravity=new De,this.path=new Ae,this.outModes=new Ve,this.random=!1,this.size=!1,this.speed=2,this.spin=new We,this.straight=!1,this.trail=new Le,this.vibrate=!1,this.warp=!1}get bounce(){return this.collisions}set bounce(t){this.collisions=t}get collisions(){return!1}set collisions(t){}get noise(){return this.path}set noise(t){this.path=t}get outMode(){return this.outModes.default}set outMode(t){this.outModes.default=t}get out_mode(){return this.outMode}set out_mode(t){this.outMode=t}load(t){var e,i,s;if(!t)return;this.angle.load("number"==typeof t.angle?{value:t.angle}:t.angle),this.attract.load(t.attract),this.center.load(t.center),void 0!==t.decay&&(this.decay=m(t.decay)),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.distance&&(this.distance="number"==typeof t.distance?{horizontal:t.distance,vertical:t.distance}:Object.assign({},t.distance)),void 0!==t.drift&&(this.drift=m(t.drift)),void 0!==t.enable&&(this.enable=t.enable),this.gravity.load(t.gravity);const n=null!==(i=null!==(e=t.outModes)&&void 0!==e?e:t.outMode)&&void 0!==i?i:t.out_mode;void 0!==n&&("object"==typeof n?this.outModes.load(n):this.outModes.load({default:n})),this.path.load(null!==(s=t.path)&&void 0!==s?s:t.noise),void 0!==t.random&&(this.random=t.random),void 0!==t.size&&(this.size=t.size),void 0!==t.speed&&(this.speed=m(t.speed)),this.spin.load(t.spin),void 0!==t.straight&&(this.straight=t.straight),this.trail.load(t.trail),void 0!==t.vibrate&&(this.vibrate=t.vibrate),void 0!==t.warp&&(this.warp=t.warp)}}class He extends ze{constructor(){super(),this.destroy="none",this.speed=2}get opacity_min(){return this.minimumValue}set opacity_min(t){this.minimumValue=t}load(t){void 0!==(null==t?void 0:t.opacity_min)&&void 0===t.minimumValue&&(t.minimumValue=t.opacity_min),super.load(t),t&&void 0!==t.destroy&&(this.destroy=t.destroy)}}class Ue extends ke{constructor(){super(),this.animation=new He,this.random.minimumValue=.1,this.value=1}get anim(){return this.animation}set anim(t){this.animation=t}}class qe{constructor(){this.enable=!1,this.width=1920,this.height=1080}get area(){return this.width}set area(t){this.width=t}get factor(){return this.height}set factor(t){this.height=t}get value_area(){return this.area}set value_area(t){this.area=t}load(t){var e,i,s;if(!t)return;void 0!==t.enable&&(this.enable=t.enable);const n=null!==(i=null!==(e=t.width)&&void 0!==e?e:t.area)&&void 0!==i?i:t.value_area;void 0!==n&&(this.width=n);const o=null!==(s=t.height)&&void 0!==s?s:t.factor;void 0!==o&&(this.height=o)}}class Ge{constructor(){this.density=new qe,this.limit=0,this.value=100}get max(){return this.limit}set max(t){this.limit=t}load(t){var e;if(!t)return;this.density.load(t.density);const i=null!==(e=t.limit)&&void 0!==e?e:t.max;void 0!==i&&(this.limit=i),void 0!==t.value&&(this.value=t.value)}}class je{constructor(){this.blur=0,this.color=new te,this.enable=!1,this.offset={x:0,y:0},this.color.value="#000"}load(t){t&&(void 0!==t.blur&&(this.blur=t.blur),this.color=te.create(this.color,t.color),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.offset&&(void 0!==t.offset.x&&(this.offset.x=t.offset.x),void 0!==t.offset.y&&(this.offset.y=t.offset.y)))}}class $e{constructor(){this.options={},this.type="circle"}load(t){var e;if(!t)return;const i=t.options;if(void 0!==i)for(const t in i){const s=i[t];s&&(this.options[t]=U(null!==(e=this.options[t])&&void 0!==e?e:{},s))}void 0!==t.type&&(this.type=t.type)}}class Ne extends ze{constructor(){super(),this.destroy="none",this.speed=5}get size_min(){return this.minimumValue}set size_min(t){this.minimumValue=t}load(t){void 0!==(null==t?void 0:t.size_min)&&void 0===t.minimumValue&&(t.minimumValue=t.size_min),super.load(t),t&&void 0!==t.destroy&&(this.destroy=t.destroy)}}class Xe extends ke{constructor(){super(),this.animation=new Ne,this.random.minimumValue=1,this.value=3}get anim(){return this.animation}set anim(t){this.animation=t}}class Ye{constructor(){this.width=0}load(t){t&&(void 0!==t.color&&(this.color=be.create(this.color,t.color)),void 0!==t.width&&(this.width=m(t.width)),void 0!==t.opacity&&(this.opacity=m(t.opacity)))}}class Ze extends Pe{constructor(){super(),this.opacityRate=1,this.sizeRate=1,this.velocityRate=1}load(t){super.load(t),t&&(void 0!==t.opacityRate&&(this.opacityRate=t.opacityRate),void 0!==t.sizeRate&&(this.sizeRate=t.sizeRate),void 0!==t.velocityRate&&(this.velocityRate=t.velocityRate))}}class Qe{constructor(t,e){this._engine=t,this._container=e,this.bounce=new Se,this.collisions=new Re,this.color=new be,this.color.value="#fff",this.groups={},this.move=new Be,this.number=new Ge,this.opacity=new Ue,this.reduceDuplicates=!1,this.shadow=new je,this.shape=new $e,this.size=new Xe,this.stroke=new Ye,this.zIndex=new Ze}load(t){var e,i,s,n;if(!t)return;if(this.bounce.load(t.bounce),this.color.load(be.create(this.color,t.color)),void 0!==t.groups)for(const i in t.groups){const s=t.groups[i];void 0!==s&&(this.groups[i]=U(null!==(e=this.groups[i])&&void 0!==e?e:{},s))}this.move.load(t.move),this.number.load(t.number),this.opacity.load(t.opacity),void 0!==t.reduceDuplicates&&(this.reduceDuplicates=t.reduceDuplicates),this.shape.load(t.shape),this.size.load(t.size),this.shadow.load(t.shadow),this.zIndex.load(t.zIndex);const o=null!==(s=null===(i=t.move)||void 0===i?void 0:i.collisions)&&void 0!==s?s:null===(n=t.move)||void 0===n?void 0:n.bounce;void 0!==o&&(this.collisions.enable=o),this.collisions.load(t.collisions),void 0!==t.interactivity&&(this.interactivity=U({},t.interactivity));const a=t.stroke;if(a&&(this.stroke=Z(a,(t=>{const e=new Ye;return e.load(t),e}))),this._container){const e=this._engine.plugins.updaters.get(this._container);if(e)for(const i of e)i.loadOptions&&i.loadOptions(this,t);const i=this._engine.plugins.interactors.get(this._container);if(i)for(const e of i)e.loadParticlesOptions&&e.loadParticlesOptions(this,t)}}}function Je(t,...e){for(const i of e)t.load(i)}function Ke(t,e,...i){const s=new Qe(t,e);return Je(s,...i),s}class ti{constructor(t,e){this._engine=t,this._container=e,this.autoPlay=!0,this.background=new ee,this.backgroundMask=new se,this.defaultThemes={},this.delay=0,this.fullScreen=new ne,this.detectRetina=!0,this.duration=0,this.fpsLimit=120,this.interactivity=new ue(t,e),this.manualParticles=[],this.name="default",this.particles=Ke(this._engine,this._container),this.pauseOnBlur=!0,this.pauseOnOutsideViewport=!0,this.responsive=[],this.smooth=!1,this.style={},this.themes=[],this.zLayers=100}get backgroundMode(){return this.fullScreen}set backgroundMode(t){this.fullScreen.load(t)}get fps_limit(){return this.fpsLimit}set fps_limit(t){this.fpsLimit=t}get retina_detect(){return this.detectRetina}set retina_detect(t){this.detectRetina=t}load(t){var e,i,s,n,o;if(!t)return;void 0!==t.preset&&Z(t.preset,(t=>this._importPreset(t))),void 0!==t.autoPlay&&(this.autoPlay=t.autoPlay),void 0!==t.delay&&(this.delay=m(t.delay));const a=null!==(e=t.detectRetina)&&void 0!==e?e:t.retina_detect;void 0!==a&&(this.detectRetina=a),void 0!==t.duration&&(this.duration=m(t.duration));const r=null!==(i=t.fpsLimit)&&void 0!==i?i:t.fps_limit;void 0!==r&&(this.fpsLimit=r),void 0!==t.pauseOnBlur&&(this.pauseOnBlur=t.pauseOnBlur),void 0!==t.pauseOnOutsideViewport&&(this.pauseOnOutsideViewport=t.pauseOnOutsideViewport),void 0!==t.zLayers&&(this.zLayers=t.zLayers),this.background.load(t.background);const l=null!==(s=t.fullScreen)&&void 0!==s?s:t.backgroundMode;"boolean"==typeof l?this.fullScreen.enable=l:this.fullScreen.load(l),this.backgroundMask.load(t.backgroundMask),this.interactivity.load(t.interactivity),void 0!==t.manualParticles&&(this.manualParticles=t.manualParticles.map((t=>{const e=new pe;return e.load(t),e}))),this.particles.load(t.particles),this.style=U(this.style,t.style),this._engine.plugins.loadOptions(this,t),void 0!==t.smooth&&(this.smooth=t.smooth);const h=this._engine.plugins.interactors.get(this._container);if(h)for(const e of h)e.loadOptions&&e.loadOptions(this,t);if(void 0!==t.responsive)for(const e of t.responsive){const t=new ve;t.load(e),this.responsive.push(t)}if(this.responsive.sort(((t,e)=>t.maxWidth-e.maxWidth)),void 0!==t.themes)for(const e of t.themes){const t=this.themes.find((t=>t.name===e.name));if(t)t.load(e);else{const t=new me;t.load(e),this.themes.push(t)}}this.defaultThemes.dark=null===(n=this._findDefaultTheme("dark"))||void 0===n?void 0:n.name,this.defaultThemes.light=null===(o=this._findDefaultTheme("light"))||void 0===o?void 0:o.name}setResponsive(t,e,i){this.load(i);const s=this.responsive.find((i=>"screen"===i.mode&&screen?i.maxWidth>screen.availWidth:i.maxWidth*e>t));return this.load(null==s?void 0:s.options),null==s?void 0:s.maxWidth}setTheme(t){if(t){const e=this.themes.find((e=>e.name===t));e&&this.load(e.options)}else{const t=I("(prefers-color-scheme: dark)"),e=t&&t.matches,i=this._findDefaultTheme(e?"dark":"light");i&&this.load(i.options)}}_findDefaultTheme(t){var e;return null!==(e=this.themes.find((e=>e.default.value&&e.default.mode===t)))&&void 0!==e?e:this.themes.find((t=>t.default.value&&"any"===t.default.mode))}_importPreset(t){this.load(this._engine.plugins.getPreset(t))}}class ei{constructor(t,e){this.container=e,this._engine=t,this._interactors=this._engine.plugins.getInteractors(this.container,!0),this._externalInteractors=[],this._particleInteractors=[]}async externalInteract(t){for(const e of this._externalInteractors)e.isEnabled()&&await e.interact(t)}handleClickMode(t){for(const e of this._externalInteractors)e.handleClickMode&&e.handleClickMode(t)}init(){this._externalInteractors=[],this._particleInteractors=[];for(const t of this._interactors){switch(t.type){case"external":this._externalInteractors.push(t);break;case"particles":this._particleInteractors.push(t)}t.init()}}async particlesInteract(t,e){for(const i of this._externalInteractors)i.clear(t,e);for(const i of this._particleInteractors)i.isEnabled(t)&&await i.interact(t,e)}async reset(t){for(const e of this._externalInteractors)e.isEnabled()&&await e.reset(t);for(const e of this._particleInteractors)e.isEnabled(t)&&await e.reset(t)}}const ii=t=>{A(t.outMode,t.checkModes)&&(t.coord>t.maxCoord-2*t.radius?t.setCb(-t.radius):t.coord<2*t.radius&&t.setCb(t.radius))};class si{constructor(t,e,i,s,n,o){this.container=i,this._engine=t,this.init(e,s,n,o)}destroy(t){var e;if(!this.unbreakable&&!this.destroyed){this.destroyed=!0,this.bubble.inRange=!1,this.slow.inRange=!1;for(const[,e]of this.container.plugins)e.particleDestroyed&&e.particleDestroyed(this,t);for(const e of this.container.particles.updaters)e.particleDestroyed&&e.particleDestroyed(this,t);null===(e=this.pathGenerator)||void 0===e||e.reset(this)}}draw(t){const e=this.container;for(const[,i]of e.plugins)e.canvas.drawParticlePlugin(i,this,t);e.canvas.drawParticle(this,t)}getFillColor(){var t;return this._getRollColor(null!==(t=this.bubble.color)&&void 0!==t?t:_t(this.color))}getMass(){return this.getRadius()**2*Math.PI/2}getPosition(){return{x:this.position.x+this.offset.x,y:this.position.y+this.offset.y,z:this.position.z}}getRadius(){var t;return null!==(t=this.bubble.radius)&&void 0!==t?t:this.size.value}getStrokeColor(){var t;return this._getRollColor(null!==(t=this.bubble.color)&&void 0!==t?t:_t(this.strokeColor))}init(t,e,i,s){var n,o,a,r,l,h,c;const d=this.container,u=this._engine;this.id=t,this.group=s,this.fill=!0,this.pathRotation=!1,this.close=!0,this.lastPathTime=0,this.destroyed=!1,this.unbreakable=!1,this.rotation=0,this.misplaced=!1,this.retina={maxDistance:{}},this.outType="normal",this.ignoresResizeRatio=!0;const v=d.retina.pixelRatio,f=d.actualOptions,m=Ke(this._engine,d,f.particles),y=m.shape.type,{reduceDuplicates:b}=m;this.shape=Q(y,this.id,b);const w=m.shape;if(i&&i.shape&&i.shape.type){const t=Q(i.shape.type,this.id,b);t&&(this.shape=t,w.load(i.shape))}this.shapeData=this._loadShapeData(w,b),m.load(i),m.load(null===(n=this.shapeData)||void 0===n?void 0:n.particles),this.interactivity=new ue(u,d),this.interactivity.load(d.actualOptions.interactivity),this.interactivity.load(m.interactivity),this.fill=null!==(a=null===(o=this.shapeData)||void 0===o?void 0:o.fill)&&void 0!==a?a:this.fill,this.close=null!==(l=null===(r=this.shapeData)||void 0===r?void 0:r.close)&&void 0!==l?l:this.close,this.options=m;const _=this.options.move.path;this.pathDelay=1e3*g(_.delay),_.generator&&(this.pathGenerator=this._engine.plugins.getPathGenerator(_.generator),this.pathGenerator&&d.addPath(_.generator,this.pathGenerator)&&this.pathGenerator.init(d)),d.retina.initParticle(this),this.size=K(this.options.size,v),this.bubble={inRange:!1},this.slow={inRange:!1,factor:1},this._initPosition(e),this.initialVelocity=this._calculateVelocity(),this.velocity=this.initialVelocity.copy(),this.moveDecay=1-p(this.options.move.decay);const x=d.particles;x.needsSort=x.needsSort||x.lastZIndex<this.position.z,x.lastZIndex=this.position.z,this.zIndexFactor=this.position.z/d.zLayers,this.sides=24;let z=d.drawers.get(this.shape);z||(z=this._engine.plugins.getShapeDrawer(this.shape),z&&d.drawers.set(this.shape,z)),(null==z?void 0:z.loadShape)&&(null==z||z.loadShape(this));const M=null==z?void 0:z.getSidesCount;M&&(this.sides=M(this)),this.spawning=!1,this.shadowColor=at(this.options.shadow.color);for(const t of d.particles.updaters)t.init(this);for(const t of d.particles.movers)null===(h=t.init)||void 0===h||h.call(t,this);(null==z?void 0:z.particleInit)&&z.particleInit(d,this);for(const[,t]of d.plugins)null===(c=t.particleCreated)||void 0===c||c.call(t,this)}isInsideCanvas(){const t=this.getRadius(),e=this.container.canvas.size;return this.position.x>=-t&&this.position.y>=-t&&this.position.y<=e.height+t&&this.position.x<=e.width+t}isVisible(){return!this.destroyed&&!this.spawning&&this.isInsideCanvas()}reset(){var t;for(const e of this.container.particles.updaters)null===(t=e.reset)||void 0===t||t.call(e,this)}_calcPosition(t,e,s,n=0){var o,a,r,l;for(const[,n]of t.plugins){const t=void 0!==n.particlePosition?n.particlePosition(e,this):void 0;if(void 0!==t)return i.create(t.x,t.y,s)}const h=O({size:t.canvas.size,position:e}),c=i.create(h.x,h.y,s),d=this.getRadius(),u=this.options.move.outModes,p=e=>{ii({outMode:e,checkModes:["bounce","bounce-horizontal"],coord:c.x,maxCoord:t.canvas.size.width,setCb:t=>c.x+=t,radius:d})},v=e=>{ii({outMode:e,checkModes:["bounce","bounce-vertical"],coord:c.y,maxCoord:t.canvas.size.height,setCb:t=>c.y+=t,radius:d})};return p(null!==(o=u.left)&&void 0!==o?o:u.default),p(null!==(a=u.right)&&void 0!==a?a:u.default),v(null!==(r=u.top)&&void 0!==r?r:u.default),v(null!==(l=u.bottom)&&void 0!==l?l:u.default),this._checkOverlap(c,n)?this._calcPosition(t,void 0,s,n+1):c}_calculateVelocity(){const t=_(this.direction).copy(),e=this.options.move;if("inside"===e.direction||"outside"===e.direction)return t;const i=Math.PI/180*p(e.angle.value),s=Math.PI/180*p(e.angle.offset),n={left:s-i/2,right:s+i/2};return e.straight||(t.angle+=u(m(n.left,n.right))),e.random&&"number"==typeof e.speed&&(t.length*=h()),t}_checkOverlap(t,e=0){const i=this.options.collisions,s=this.getRadius();if(!i.enable)return!1;const n=i.overlap;if(n.enable)return!1;const o=n.retries;if(o>=0&&e>o)throw new Error("Particle is overlapping and can't be placed");let a=!1;for(const e of this.container.particles.array)if(b(t,e.position)<s+e.getRadius()){a=!0;break}return a}_getRollColor(t){var e;if(!t||!this.roll||!this.backColor&&!this.roll.alter)return t;const i=this.roll.horizontal&&this.roll.vertical?2:1,s=this.roll.horizontal?Math.PI/2:0;return Math.floor(((null!==(e=this.roll.angle)&&void 0!==e?e:0)+s)/(Math.PI/i))%2?this.backColor?this.backColor:this.roll.alter?Ft(t,this.roll.alter.type,this.roll.alter.value):t:t}_initPosition(t){var e,i;const n=this.container,o=p(this.options.zIndex.value);this.position=this._calcPosition(n,t,c(o,0,n.zLayers)),this.initialPosition=this.position.copy();const a=n.canvas.size,r=Object.assign({},this.options.move.center),l="percent"===r.mode;switch(this.moveCenter={x:r.x*(l?a.width/100:1),y:r.y*(l?a.height/100:1),radius:null!==(e=this.options.move.center.radius)&&void 0!==e?e:0,mode:null!==(i=this.options.move.center.mode)&&void 0!==i?i:"percent"},this.direction=w(this.options.move.direction,this.position,this.moveCenter),this.options.move.direction){case"inside":this.outType="inside";break;case"outside":this.outType="outside"}this.offset=s.origin}_loadShapeData(t,e){const i=t.options[this.shape];if(i)return U({},Q(i,this.id,e))}}class ni{constructor(t,e){this.position=t,this.particle=e}}class oi{constructor(t,e){this.position={x:t,y:e}}}class ai extends oi{constructor(t,e,i){super(t,e),this.radius=i}contains(t){return b(t,this.position)<=this.radius}intersects(t){const e=t,i=t,s=this.position,n=t.position,o=Math.abs(n.x-s.x),a=Math.abs(n.y-s.y),r=this.radius;if(void 0!==i.radius){return r+i.radius>Math.sqrt(o**2+a**2)}if(void 0!==e.size){const t=e.size.width,i=e.size.height;return Math.pow(o-t,2)+Math.pow(a-i,2)<=r**2||o<=r+t&&a<=r+i||o<=t||a<=i}return!1}}class ri extends oi{constructor(t,e,i,s){super(t,e),this.size={height:s,width:i}}contains(t){const e=this.size.width,i=this.size.height,s=this.position;return t.x>=s.x&&t.x<=s.x+e&&t.y>=s.y&&t.y<=s.y+i}intersects(t){t instanceof ai&&t.intersects(this);const e=this.size.width,i=this.size.height,s=this.position,n=t.position,o=t instanceof ri?t.size:{width:0,height:0},a=o.width,r=o.height;return n.x<s.x+e&&n.x+a>s.x&&n.y<s.y+i&&n.y+r>s.y}}class li{constructor(t,e){this.rectangle=t,this.capacity=e,this._points=[],this._divided=!1}insert(t){var e,i,s,n,o;return!!this.rectangle.contains(t.position)&&(this._points.length<this.capacity?(this._points.push(t),!0):(this._divided||this.subdivide(),null!==(o=(null===(e=this._NE)||void 0===e?void 0:e.insert(t))||(null===(i=this._NW)||void 0===i?void 0:i.insert(t))||(null===(s=this._SE)||void 0===s?void 0:s.insert(t))||(null===(n=this._SW)||void 0===n?void 0:n.insert(t)))&&void 0!==o&&o))}query(t,e,i){var s,n,o,a;const r=null!=i?i:[];if(!t.intersects(this.rectangle))return[];for(const i of this._points)!t.contains(i.position)&&b(t.position,i.position)>i.particle.getRadius()&&(!e||e(i.particle))||r.push(i.particle);return this._divided&&(null===(s=this._NE)||void 0===s||s.query(t,e,r),null===(n=this._NW)||void 0===n||n.query(t,e,r),null===(o=this._SE)||void 0===o||o.query(t,e,r),null===(a=this._SW)||void 0===a||a.query(t,e,r)),r}queryCircle(t,e,i){return this.query(new ai(t.x,t.y,e),i)}queryRectangle(t,e,i){return this.query(new ri(t.x,t.y,e.width,e.height),i)}subdivide(){const t=this.rectangle.position.x,e=this.rectangle.position.y,i=this.rectangle.size.width,s=this.rectangle.size.height,n=this.capacity;this._NE=new li(new ri(t,e,i/2,s/2),n),this._NW=new li(new ri(t+i/2,e,i/2,s/2),n),this._SE=new li(new ri(t,e+s/2,i/2,s/2),n),this._SW=new li(new ri(t+i/2,e+s/2,i/2,s/2),n),this._divided=!0}}class hi{constructor(t,e){this.container=e,this._engine=t,this.nextId=0,this.array=[],this.zArray=[],this.pool=[],this.limit=0,this.needsSort=!1,this.lastZIndex=0,this.interactionManager=new ei(this._engine,e);const i=this.container.canvas.size;this.quadTree=new li(new ri(-i.width/4,-i.height/4,3*i.width/2,3*i.height/2),4),this.movers=this._engine.plugins.getMovers(e,!0),this.updaters=this._engine.plugins.getUpdaters(e,!0)}get count(){return this.array.length}addManualParticles(){const t=this.container,e=t.actualOptions;for(const i of e.manualParticles)this.addParticle(z({size:t.canvas.size,position:i.position}),i.options)}addParticle(t,e,i,s){const n=this.container.actualOptions.particles.number.limit;if(n>0){const t=this.count+1-n;t>0&&this.removeQuantity(t)}return this._pushParticle(t,e,i,s)}clear(){this.array=[],this.zArray=[]}destroy(){this.array=[],this.zArray=[],this.movers=[],this.updaters=[]}async draw(t){const e=this.container,i=this.container.canvas.size;this.quadTree=new li(new ri(-i.width/4,-i.height/4,3*i.width/2,3*i.height/2),4),e.canvas.clear(),await this.update(t),this.needsSort&&(this.zArray.sort(((t,e)=>e.position.z-t.position.z||t.id-e.id)),this.lastZIndex=this.zArray[this.zArray.length-1].position.z,this.needsSort=!1);for(const[,i]of e.plugins)e.canvas.drawPlugin(i,t);for(const e of this.zArray)e.draw(t)}handleClickMode(t){this.interactionManager.handleClickMode(t)}init(){var t;const e=this.container,i=e.actualOptions;this.lastZIndex=0,this.needsSort=!1;let s=!1;this.updaters=this._engine.plugins.getUpdaters(e,!0),this.interactionManager.init();for(const[,t]of e.plugins)if(void 0!==t.particlesInitialization&&(s=t.particlesInitialization()),s)break;this.interactionManager.init();for(const[,t]of e.pathGenerators)t.init(e);if(this.addManualParticles(),!s){for(const e in i.particles.groups){const s=i.particles.groups[e];for(let n=this.count,o=0;o<(null===(t=s.number)||void 0===t?void 0:t.value)&&n<i.particles.number.value;n++,o++)this.addParticle(void 0,s,e)}for(let t=this.count;t<i.particles.number.value;t++)this.addParticle()}}push(t,e,i,s){this.pushing=!0;for(let n=0;n<t;n++)this.addParticle(null==e?void 0:e.position,i,s);this.pushing=!1}async redraw(){this.clear(),this.init(),await this.draw({value:0,factor:0})}remove(t,e,i){this.removeAt(this.array.indexOf(t),void 0,e,i)}removeAt(t,e=1,i,s){if(t<0||t>this.count)return;let n=0;for(let o=t;n<e&&o<this.count;o++){const t=this.array[o];if(!t||t.group!==i)continue;t.destroy(s),this.array.splice(o--,1);const e=this.zArray.indexOf(t);this.zArray.splice(e,1),this.pool.push(t),n++,this._engine.dispatchEvent("particleRemoved",{container:this.container,data:{particle:t}})}}removeQuantity(t,e){this.removeAt(0,t,e)}setDensity(){const t=this.container.actualOptions;for(const e in t.particles.groups)this._applyDensity(t.particles.groups[e],0,e);this._applyDensity(t.particles,t.manualParticles.length)}async update(t){var e,i;const s=this.container,n=[];for(const[,t]of s.pathGenerators)t.update();for(const[,i]of s.plugins)null===(e=i.update)||void 0===e||e.call(i,t);for(const e of this.array){const o=s.canvas.resizeFactor;o&&!e.ignoresResizeRatio&&(e.position.x*=o.width,e.position.y*=o.height,e.initialPosition.x*=o.width,e.initialPosition.y*=o.height),e.ignoresResizeRatio=!1,await this.interactionManager.reset(e);for(const[,s]of this.container.plugins){if(e.destroyed)break;null===(i=s.particleUpdate)||void 0===i||i.call(s,e,t)}for(const i of this.movers)i.isEnabled(e)&&i.move(e,t);e.destroyed?n.push(e):this.quadTree.insert(new ni(e.getPosition(),e))}for(const t of n)this.remove(t);await this.interactionManager.externalInteract(t);for(const e of this.array){for(const i of this.updaters)i.update(e,t);e.destroyed||e.spawning||await this.interactionManager.particlesInteract(e,t)}delete s.canvas.resizeFactor}_applyDensity(t,e,i){var s;if(!(null===(s=t.number.density)||void 0===s?void 0:s.enable))return;const n=t.number,o=this._initDensityFactor(n.density),a=n.value,r=n.limit>0?n.limit:a,l=Math.min(a,r)*o+e,h=Math.min(this.count,this.array.filter((t=>t.group===i)).length);this.limit=n.limit*o,h<l?this.push(Math.abs(l-h),void 0,t,i):h>l&&this.removeQuantity(h-l,i)}_initDensityFactor(t){const e=this.container;if(!e.canvas.element||!t.enable)return 1;const i=e.canvas.element,s=e.retina.pixelRatio;return i.width*i.height/(t.factor*s**2*t.area)}_pushParticle(t,e,i,s){try{let n=this.pool.pop();n?n.init(this.nextId,t,e,i):n=new si(this._engine,this.nextId,this.container,t,e,i);let o=!0;if(s&&(o=s(n)),!o)return;return this.array.push(n),this.zArray.push(n),this.nextId++,this._engine.dispatchEvent("particleAdded",{container:this.container,data:{particle:n}}),n}catch(t){return void console.warn(`error adding particle: ${t}`)}}}class ci{constructor(t){this.container=t}init(){const t=this.container,e=t.actualOptions;this.pixelRatio=!e.detectRetina||R()?1:window.devicePixelRatio,this.reduceFactor=1;const i=this.pixelRatio;if(t.canvas.element){const e=t.canvas.element;t.canvas.size.width=e.offsetWidth*i,t.canvas.size.height=e.offsetHeight*i}const s=e.particles;this.attractDistance=p(s.move.attract.distance)*i,this.sizeAnimationSpeed=p(s.size.animation.speed)*i,this.maxSpeed=p(s.move.gravity.maxSpeed)*i}initParticle(t){const e=t.options,i=this.pixelRatio,s=e.move.distance,n=t.retina;n.attractDistance=p(e.move.attract.distance)*i,n.moveDrift=p(e.move.drift)*i,n.moveSpeed=p(e.move.speed)*i,n.sizeAnimationSpeed=p(e.size.animation.speed)*i;const o=n.maxDistance;o.horizontal=void 0!==s.horizontal?s.horizontal*i:void 0,o.vertical=void 0!==s.vertical?s.vertical*i:void 0,n.maxSpeed=p(e.move.gravity.maxSpeed)*i}}function di(t){return t&&!t.destroyed}function ui(t,e,...i){const s=new ti(t,e);return Je(s,...i),s}const pi={generate:t=>{const e=t.velocity.copy();return e.angle+=e.length*Math.PI/180,e},init:()=>{},update:()=>{},reset:()=>{}};class vi{constructor(t,e,i){this.id=e,this._engine=t,this.fpsLimit=120,this.smooth=!1,this._delay=0,this.duration=0,this.lifeTime=0,this._firstStart=!0,this.started=!1,this.destroyed=!1,this._paused=!0,this.lastFrameTime=0,this.zLayers=100,this.pageHidden=!1,this._sourceOptions=i,this._initialSourceOptions=i,this.retina=new ci(this),this.canvas=new Zt(this),this.particles=new hi(this._engine,this),this.frameManager=new Kt(this),this.pathGenerators=new Map,this.interactivity={mouse:{clicking:!1,inside:!1}},this.plugins=new Map,this.drawers=new Map,this._options=ui(this._engine,this),this.actualOptions=ui(this._engine,this),this._eventListeners=new Jt(this),"undefined"!=typeof IntersectionObserver&&IntersectionObserver&&(this._intersectionObserver=new IntersectionObserver((t=>this._intersectionManager(t)))),this._engine.dispatchEvent("containerBuilt",{container:this})}get options(){return this._options}get sourceOptions(){return this._sourceOptions}addClickHandler(t){if(!di(this))return;const e=this.interactivity.element;if(!e)return;const i=(e,i,s)=>{if(!di(this))return;const n=this.retina.pixelRatio,o={x:i.x*n,y:i.y*n},a=this.particles.quadTree.queryCircle(o,s*n);t(e,a)};let s=!1,n=!1;e.addEventListener("click",(t=>{if(!di(this))return;const e=t,s={x:e.offsetX||e.clientX,y:e.offsetY||e.clientY};i(t,s,1)})),e.addEventListener("touchstart",(()=>{di(this)&&(s=!0,n=!1)})),e.addEventListener("touchmove",(()=>{di(this)&&(n=!0)})),e.addEventListener("touchend",(t=>{if(di(this)){if(s&&!n){const e=t;let s=e.touches[e.touches.length-1];if(!s&&(s=e.changedTouches[e.changedTouches.length-1],!s))return;const n=this.canvas.element,o=n?n.getBoundingClientRect():void 0,a={x:s.clientX-(o?o.left:0),y:s.clientY-(o?o.top:0)};i(t,a,Math.max(s.radiusX,s.radiusY))}s=!1,n=!1}})),e.addEventListener("touchcancel",(()=>{di(this)&&(s=!1,n=!1)}))}addPath(t,e,i=!1){return!(!di(this)||!i&&this.pathGenerators.has(t))&&(this.pathGenerators.set(t,null!=e?e:pi),!0)}destroy(){if(!di(this))return;this.stop(),this.particles.destroy(),this.canvas.destroy();for(const[,t]of this.drawers)t.destroy&&t.destroy(this);for(const t of this.drawers.keys())this.drawers.delete(t);this._engine.plugins.destroy(this),this.destroyed=!0;const t=this._engine.dom(),e=t.findIndex((t=>t===this));e>=0&&t.splice(e,1),this._engine.dispatchEvent("containerDestroyed",{container:this})}draw(t){if(!di(this))return;let e=t;this._drawAnimationFrame=E()((async t=>{e&&(this.lastFrameTime=void 0,e=!1),await this.frameManager.nextFrame(t)}))}exportConfiguration(){return JSON.stringify(this.actualOptions,((t,e)=>{if("_engine"!==t&&"_container"!==t)return e}),2)}exportImage(t,e,i){const s=this.canvas.element;s&&s.toBlob(t,null!=e?e:"image/png",i)}exportImg(t){this.exportImage(t)}getAnimationStatus(){return!this._paused&&!this.pageHidden&&di(this)}handleClickMode(t){if(di(this)){this.particles.handleClickMode(t);for(const[,e]of this.plugins)e.handleClickMode&&e.handleClickMode(t)}}async init(){if(!di(this))return;const t=this._engine.plugins.getSupportedShapes();for(const e of t){const t=this._engine.plugins.getShapeDrawer(e);t&&this.drawers.set(e,t)}this._options=ui(this._engine,this,this._initialSourceOptions,this.sourceOptions),this.actualOptions=ui(this._engine,this,this._options);const e=this._engine.plugins.getAvailablePlugins(this);for(const[t,i]of e)this.plugins.set(t,i);this.retina.init(),await this.canvas.init(),this.zLayers=this.actualOptions.zLayers,this.duration=1e3*p(this.actualOptions.duration),this._delay=1e3*p(this.actualOptions.delay),this.lifeTime=0,this.fpsLimit=this.actualOptions.fpsLimit>0?this.actualOptions.fpsLimit:120,this.smooth=this.actualOptions.smooth;for(const[,t]of this.drawers)t.init&&await t.init(this);for(const[,t]of this.plugins)t.init&&await t.init();this._engine.dispatchEvent("containerInit",{container:this}),this.particles.init(),this.particles.setDensity();for(const[,t]of this.plugins)t.particlesSetup&&t.particlesSetup();this._engine.dispatchEvent("particlesSetup",{container:this})}async loadTheme(t){di(this)&&(this._currentTheme=t,await this.refresh())}pause(){if(di(this)&&(void 0!==this._drawAnimationFrame&&(D()(this._drawAnimationFrame),delete this._drawAnimationFrame),!this._paused)){for(const[,t]of this.plugins)t.pause&&t.pause();this.pageHidden||(this._paused=!0),this._engine.dispatchEvent("containerPaused",{container:this})}}play(t){if(!di(this))return;const e=this._paused||t;if(!this._firstStart||this.actualOptions.autoPlay){if(this._paused&&(this._paused=!1),e)for(const[,t]of this.plugins)t.play&&t.play();this._engine.dispatchEvent("containerPlay",{container:this}),this.draw(e||!1)}else this._firstStart=!1}async refresh(){if(di(this))return this.stop(),this.start()}async reset(){if(di(this))return this._options=ui(this._engine,this),this.refresh()}setNoise(t,e,i){di(this)&&this.setPath(t,e,i)}setPath(t,e,i){if(!t||!di(this))return;const s=Object.assign({},pi);if("function"==typeof t)s.generate=t,e&&(s.init=e),i&&(s.update=i);else{const e=s;s.generate=t.generate||e.generate,s.init=t.init||e.init,s.update=t.update||e.update}this.addPath("default",s,!0)}async start(){di(this)&&!this.started&&(await this.init(),this.started=!0,await new Promise((t=>{this._delayTimeout=setTimeout((async()=>{this._eventListeners.addListeners(),this.interactivity.element instanceof HTMLElement&&this._intersectionObserver&&this._intersectionObserver.observe(this.interactivity.element);for(const[,t]of this.plugins)t.start&&await t.start();this._engine.dispatchEvent("containerStarted",{container:this}),this.play(),t()}),this._delay)})))}stop(){if(di(this)&&this.started){this._delayTimeout&&(clearTimeout(this._delayTimeout),delete this._delayTimeout),this._firstStart=!0,this.started=!1,this._eventListeners.removeListeners(),this.pause(),this.particles.clear(),this.canvas.clear(),this.interactivity.element instanceof HTMLElement&&this._intersectionObserver&&this._intersectionObserver.unobserve(this.interactivity.element);for(const[,t]of this.plugins)t.stop&&t.stop();for(const t of this.plugins.keys())this.plugins.delete(t);this._sourceOptions=this._options,this._engine.dispatchEvent("containerStopped",{container:this})}}updateActualOptions(){this.actualOptions.responsive=[];const t=this.actualOptions.setResponsive(this.canvas.size.width,this.retina.pixelRatio,this._options);return this.actualOptions.setTheme(this._currentTheme),this.responsiveMaxWidth!==t&&(this.responsiveMaxWidth=t,!0)}_intersectionManager(t){if(di(this)&&this.actualOptions.pauseOnOutsideViewport)for(const e of t)e.target===this.interactivity.element&&(e.isIntersecting?this.play:this.pause)()}}class fi{constructor(){this._listeners=new Map}addEventListener(t,e){var i;this.removeEventListener(t,e),this._listeners.get(t)||this._listeners.set(t,[]),null===(i=this._listeners.get(t))||void 0===i||i.push(e)}dispatchEvent(t,e){var i;null===(i=this._listeners.get(t))||void 0===i||i.forEach((t=>t(e)))}hasEventListener(t){return!!this._listeners.get(t)}removeAllEventListeners(t){t?this._listeners.delete(t):this._listeners=new Map}removeEventListener(t,e){const i=this._listeners.get(t);if(!i)return;const s=i.length,n=i.indexOf(e);n<0||(1===s?this._listeners.delete(t):i.splice(n,1))}}function mi(t,e,i,s=!1){let n=e.get(t);return n&&!s||(n=[...i.values()].map((e=>e(t))),e.set(t,n)),n}class gi{constructor(t){this._engine=t,this.plugins=[],this._initializers={interactors:new Map,movers:new Map,updaters:new Map},this.interactors=new Map,this.movers=new Map,this.updaters=new Map,this.presets=new Map,this.drawers=new Map,this.pathGenerators=new Map}addInteractor(t,e){this._initializers.interactors.set(t,e)}addParticleMover(t,e){this._initializers.movers.set(t,e)}addParticleUpdater(t,e){this._initializers.updaters.set(t,e)}addPathGenerator(t,e){this.getPathGenerator(t)||this.pathGenerators.set(t,e)}addPlugin(t){this.getPlugin(t.id)||this.plugins.push(t)}addPreset(t,e,i=!1){!i&&this.getPreset(t)||this.presets.set(t,e)}addShapeDrawer(t,e){Z(t,(t=>{this.getShapeDrawer(t)||this.drawers.set(t,e)}))}destroy(t){this.updaters.delete(t),this.movers.delete(t),this.interactors.delete(t)}getAvailablePlugins(t){const e=new Map;for(const i of this.plugins)i.needsPlugin(t.actualOptions)&&e.set(i.id,i.getPlugin(t));return e}getInteractors(t,e=!1){return mi(t,this.interactors,this._initializers.interactors,e)}getMovers(t,e=!1){return mi(t,this.movers,this._initializers.movers,e)}getPathGenerator(t){return this.pathGenerators.get(t)}getPlugin(t){return this.plugins.find((e=>e.id===t))}getPreset(t){return this.presets.get(t)}getShapeDrawer(t){return this.drawers.get(t)}getSupportedShapes(){return this.drawers.keys()}getUpdaters(t,e=!1){return mi(t,this.updaters,this._initializers.updaters,e)}loadOptions(t,e){for(const i of this.plugins)i.loadOptions(t,e)}loadParticlesOptions(t,e,...i){const s=this.updaters.get(t);if(s)for(const t of s)t.loadOptions&&t.loadOptions(e,...i)}}class yi{constructor(){this.key="hsl",this.stringPrefix="hsl"}handleColor(t){var e;const i=null!==(e=t.value.hsl)&&void 0!==e?e:t.value;if(void 0!==i.h&&void 0!==i.s&&void 0!==i.l)return pt(i)}handleRangeColor(t){var e;const i=null!==(e=t.value.hsl)&&void 0!==e?e:t.value;if(void 0!==i.h&&void 0!==i.l)return pt({h:p(i.h),l:p(i.l),s:p(i.s)})}parseString(t){if(!t.startsWith("hsl"))return;const e=/hsla?\(\s*(\d+)\s*,\s*(\d+)%\s*,\s*(\d+)%\s*(,\s*([\d.%]+)\s*)?\)/i.exec(t);return e?vt({a:e.length>4?C(e[5]):1,h:parseInt(e[1],10),l:parseInt(e[3],10),s:parseInt(e[2],10)}):void 0}}class bi{constructor(){this.key="rgb",this.stringPrefix="rgb"}handleColor(t){var e;const i=null!==(e=t.value.rgb)&&void 0!==e?e:t.value;if(void 0!==i.r)return i}handleRangeColor(t){var e;const i=null!==(e=t.value.rgb)&&void 0!==e?e:t.value;if(void 0!==i.r)return{r:p(i.r),g:p(i.g),b:p(i.b)}}parseString(t){if(!t.startsWith(this.stringPrefix))return;const e=/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*([\d.%]+)\s*)?\)/i.exec(t);return e?{a:e.length>4?C(e[5]):1,b:parseInt(e[3],10),g:parseInt(e[2],10),r:parseInt(e[1],10)}:void 0}}class wi{constructor(t){this.container=t,this.type="external"}}class _i{constructor(t){this.container=t,this.type="particles"}}const xi=new bi,zi=new yi;st(xi),st(zi);const Mi=new class{constructor(){this._configs=new Map,this._domArray=[],this._eventDispatcher=new fi,this.plugins=new gi(this)}get configs(){const t={};for(const[e,i]of this._configs)t[e]=i;return t}addConfig(t,e){var i;"string"==typeof t?e&&(e.name=t,this._configs.set(t,e)):this._configs.set(null!==(i=t.name)&&void 0!==i?i:"default",t)}addEventListener(t,e){this._eventDispatcher.addEventListener(t,e)}async addInteractor(t,e){this.plugins.addInteractor(t,e),await this.refresh()}async addMover(t,e){this.plugins.addParticleMover(t,e),await this.refresh()}async addParticleUpdater(t,e){this.plugins.addParticleUpdater(t,e),await this.refresh()}async addPathGenerator(t,e){this.plugins.addPathGenerator(t,e),await this.refresh()}async addPlugin(t){this.plugins.addPlugin(t),await this.refresh()}async addPreset(t,e,i=!1){this.plugins.addPreset(t,e,i),await this.refresh()}async addShape(t,e,i,s,n){let o;o="function"==typeof e?{afterEffect:s,destroy:n,draw:e,init:i}:e,this.plugins.addShapeDrawer(t,o),await this.refresh()}dispatchEvent(t,e){this._eventDispatcher.dispatchEvent(t,e)}dom(){return this._domArray}domItem(t){const e=this.dom(),i=e[t];if(i&&!i.destroyed)return i;e.splice(t,1)}async load(t){var e,i,s;const n=null!==(e=t.id)&&void 0!==e?e:`tsparticles${Math.floor(1e4*h())}`,{index:o,url:a}=t,r=a?await async function(t){const e=Q(t.url,t.index);if(!e)return t.fallback;const i=await fetch(e);return i.ok?i.json():(console.error(`tsParticles - Error ${i.status} while retrieving config file`),t.fallback)}({fallback:t.options,index:o,url:a}):t.options;let l=null!==(i=t.element)&&void 0!==i?i:document.getElementById(n);l||(l=document.createElement("div"),l.id=n,null===(s=document.querySelector("body"))||void 0===s||s.append(l));const c=Q(r,o),d=this.dom(),u=d.findIndex((t=>t.id===n));if(u>=0){const t=this.domItem(u);t&&!t.destroyed&&(t.destroy(),d.splice(u,1))}let p;if("canvas"===l.tagName.toLowerCase())p=l,p.dataset[Lt]="false";else{const t=l.getElementsByTagName("canvas");t.length?(p=t[0],p.dataset[Lt]="false"):(p=document.createElement("canvas"),p.dataset[Lt]="true",l.appendChild(p))}p.style.width||(p.style.width="100%"),p.style.height||(p.style.height="100%");const v=new vi(this,n,c);return u>=0?d.splice(u,0,v):d.push(v),v.canvas.loadCanvas(p),await v.start(),v}async refresh(){for(const t of this.dom())await t.refresh()}removeEventListener(t,e){this._eventDispatcher.removeEventListener(t,e)}setOnClickHandler(t){const e=this.dom();if(!e.length)throw new Error("Can only set click handlers after calling tsParticles.load()");for(const i of e)i.addClickHandler(t)}};return e})()));
@@ -0,0 +1,10 @@
1
+ /*!
2
+ * tsParticles Engine v3.0.0-alpha.0
3
+ * Author: Matteo Bruni
4
+ * MIT license: https://opensource.org/licenses/MIT
5
+ * Website: https://particles.js.org/
6
+ * Confetti Website: https://confetti.js.org
7
+ * GitHub: https://www.github.com/matteobruni/tsparticles
8
+ * How to use?: Check the GitHub README
9
+ * ------------------------------------------------------
10
+ */
@@ -0,0 +1,47 @@
1
+ import type { Container } from "./Container";
2
+ import type { IContainerPlugin } from "./Interfaces/IContainerPlugin";
3
+ import type { IDelta } from "./Interfaces/IDelta";
4
+ import type { IDimension } from "./Interfaces/IDimension";
5
+ import type { Particle } from "./Particle";
6
+ export declare class Canvas {
7
+ private readonly container;
8
+ element?: HTMLCanvasElement;
9
+ resizeFactor?: IDimension;
10
+ readonly size: IDimension;
11
+ private _colorPlugins;
12
+ private _context;
13
+ private _coverColorStyle?;
14
+ private _generated;
15
+ private readonly _mutationObserver?;
16
+ private _originalStyle?;
17
+ private _postDrawUpdaters;
18
+ private _preDrawUpdaters;
19
+ private _resizePlugins;
20
+ private _trailFill?;
21
+ constructor(container: Container);
22
+ private get _fullScreen();
23
+ clear(): void;
24
+ destroy(): void;
25
+ draw<T>(cb: (context: CanvasRenderingContext2D) => T): T | undefined;
26
+ drawParticle(particle: Particle, delta: IDelta): void;
27
+ drawParticlePlugin(plugin: IContainerPlugin, particle: Particle, delta: IDelta): void;
28
+ drawPlugin(plugin: IContainerPlugin, delta: IDelta): void;
29
+ init(): Promise<void>;
30
+ loadCanvas(canvas: HTMLCanvasElement): void;
31
+ windowResize(): Promise<void>;
32
+ private _applyPostDrawUpdaters;
33
+ private _applyPreDrawUpdaters;
34
+ private _applyResizePlugins;
35
+ private _getPluginParticleColors;
36
+ private _initBackground;
37
+ private _initCover;
38
+ private _initPlugins;
39
+ private _initStyle;
40
+ private _initTrail;
41
+ private _initUpdaters;
42
+ private _paint;
43
+ private _repairStyle;
44
+ private _resetOriginalStyle;
45
+ private _resize;
46
+ private _setFullScreenStyle;
47
+ }
@@ -0,0 +1,72 @@
1
+ import { Canvas } from "./Canvas";
2
+ import type { ClickMode } from "../Enums/Modes/ClickMode";
3
+ import type { Engine } from "../engine";
4
+ import { FrameManager } from "./Utils/FrameManager";
5
+ import type { IContainerInteractivity } from "./Interfaces/IContainerInteractivity";
6
+ import type { IContainerPlugin } from "./Interfaces/IContainerPlugin";
7
+ import type { IMovePathGenerator } from "./Interfaces/IMovePathGenerator";
8
+ import type { IShapeDrawer } from "./Interfaces/IShapeDrawer";
9
+ import type { ISourceOptions } from "../Types/ISourceOptions";
10
+ import { Options } from "../Options/Classes/Options";
11
+ import type { Particle } from "./Particle";
12
+ import { Particles } from "./Particles";
13
+ import { Retina } from "./Retina";
14
+ import type { Vector } from "./Utils/Vector";
15
+ export declare class Container {
16
+ readonly id: string;
17
+ actualOptions: Options;
18
+ readonly canvas: Canvas;
19
+ destroyed: boolean;
20
+ readonly drawers: Map<string, IShapeDrawer>;
21
+ duration: number;
22
+ fpsLimit: number;
23
+ readonly frameManager: FrameManager;
24
+ interactivity: IContainerInteractivity;
25
+ lastFrameTime?: number;
26
+ lifeTime: number;
27
+ pageHidden: boolean;
28
+ readonly particles: Particles;
29
+ pathGenerators: Map<string, IMovePathGenerator>;
30
+ readonly plugins: Map<string, IContainerPlugin>;
31
+ responsiveMaxWidth?: number;
32
+ readonly retina: Retina;
33
+ smooth: boolean;
34
+ started: boolean;
35
+ zLayers: number;
36
+ private _currentTheme?;
37
+ private _delay;
38
+ private _delayTimeout?;
39
+ private _drawAnimationFrame?;
40
+ private readonly _engine;
41
+ private readonly _eventListeners;
42
+ private _firstStart;
43
+ private readonly _initialSourceOptions;
44
+ private readonly _intersectionObserver;
45
+ private _options;
46
+ private _paused;
47
+ private _sourceOptions;
48
+ constructor(engine: Engine, id: string, sourceOptions?: ISourceOptions);
49
+ get options(): Options;
50
+ get sourceOptions(): ISourceOptions | undefined;
51
+ addClickHandler(callback: (evt: Event, particles?: Particle[]) => void): void;
52
+ addPath(key: string, generator?: IMovePathGenerator, override?: boolean): boolean;
53
+ destroy(): void;
54
+ draw(force: boolean): void;
55
+ exportConfiguration(): string;
56
+ exportImage(callback: BlobCallback, type?: string, quality?: number): void;
57
+ exportImg(callback: BlobCallback): void;
58
+ getAnimationStatus(): boolean;
59
+ handleClickMode(mode: ClickMode | string): void;
60
+ init(): Promise<void>;
61
+ loadTheme(name?: string): Promise<void>;
62
+ pause(): void;
63
+ play(force?: boolean): void;
64
+ refresh(): Promise<void>;
65
+ reset(): Promise<void>;
66
+ setNoise(noiseOrGenerator?: IMovePathGenerator | ((particle: Particle) => Vector), init?: () => void, update?: () => void): void;
67
+ setPath(pathOrGenerator?: IMovePathGenerator | ((particle: Particle) => Vector), init?: () => void, update?: () => void): void;
68
+ start(): Promise<void>;
69
+ stop(): void;
70
+ updateActualOptions(): boolean;
71
+ private _intersectionManager;
72
+ }
@@ -0,0 +1,57 @@
1
+ import type { RangeValue } from "../../Types/RangeValue";
2
+ import type { SingleOrMultiple } from "../../Types/SingleOrMultiple";
3
+ export interface IAlphaColor {
4
+ a: number;
5
+ }
6
+ export interface IColor {
7
+ value: SingleOrMultiple<IValueColor | IRgb | IHsl | IHsv | SingleOrMultiple<string>>;
8
+ }
9
+ export interface IRangeColor {
10
+ value: SingleOrMultiple<IRangeValueColor | IRangeRgb | IRangeHsl | IRangeHsv | SingleOrMultiple<string>>;
11
+ }
12
+ export interface IHsl {
13
+ h: number;
14
+ l: number;
15
+ s: number;
16
+ }
17
+ export interface IRangeHsl {
18
+ h: RangeValue;
19
+ l: RangeValue;
20
+ s: RangeValue;
21
+ }
22
+ export interface IHsla extends IHsl, IAlphaColor {
23
+ }
24
+ export interface IHsv {
25
+ h: number;
26
+ s: number;
27
+ v: number;
28
+ }
29
+ export interface IRangeHsv {
30
+ h: RangeValue;
31
+ s: RangeValue;
32
+ v: RangeValue;
33
+ }
34
+ export interface IHsva extends IHsv, IAlphaColor {
35
+ }
36
+ export interface IRgb {
37
+ b: number;
38
+ g: number;
39
+ r: number;
40
+ }
41
+ export interface IRangeRgb {
42
+ b: RangeValue;
43
+ g: RangeValue;
44
+ r: RangeValue;
45
+ }
46
+ export interface IRgba extends IRgb, IAlphaColor {
47
+ }
48
+ export interface IValueColor {
49
+ hsl?: IHsl;
50
+ hsv?: IHsv;
51
+ rgb?: IRgb;
52
+ }
53
+ export interface IRangeValueColor {
54
+ hsl?: IRangeHsl;
55
+ hsv?: IRangeHsv;
56
+ rgb?: IRangeRgb;
57
+ }
@@ -0,0 +1,6 @@
1
+ export interface IBounds {
2
+ bottom: number;
3
+ left: number;
4
+ right: number;
5
+ top: number;
6
+ }
@@ -0,0 +1,9 @@
1
+ import type { IHsl } from "./Colors";
2
+ export interface IBubbleParticleData {
3
+ color?: IHsl;
4
+ div?: HTMLElement;
5
+ finalColor?: IHsl;
6
+ inRange: boolean;
7
+ opacity?: number;
8
+ radius?: number;
9
+ }
@@ -0,0 +1,9 @@
1
+ import type { ICoordinates } from "./ICoordinates";
2
+ import type { Vector } from "../Utils/Vector";
3
+ export interface ICircleBouncer {
4
+ factor: Vector;
5
+ mass: number;
6
+ position: ICoordinates;
7
+ radius: number;
8
+ velocity: Vector;
9
+ }
@@ -0,0 +1,8 @@
1
+ import type { IColor, IRangeColor, IRgb, IRgba } from "./Colors";
2
+ export interface IColorManager {
3
+ readonly key: string;
4
+ readonly stringPrefix: string;
5
+ handleColor(color: IColor): IRgb | undefined;
6
+ handleRangeColor(color: IRangeColor): IRgb | undefined;
7
+ parseString(input: string): IRgba | undefined;
8
+ }
@@ -0,0 +1,6 @@
1
+ import type { IMouseData } from "./IMouseData";
2
+ export interface IContainerInteractivity {
3
+ element?: HTMLElement | Window | Node | null;
4
+ mouse: IMouseData;
5
+ status?: string;
6
+ }
@@ -0,0 +1,29 @@
1
+ import type { ClickMode } from "../../Enums/Modes/ClickMode";
2
+ import type { ICoordinates } from "./ICoordinates";
3
+ import type { IDelta } from "./IDelta";
4
+ import type { IOptionsColor } from "../../Options/Interfaces/IOptionsColor";
5
+ import type { OutModeDirection } from "../../Enums/Directions/OutModeDirection";
6
+ import type { Particle } from "../Particle";
7
+ export interface IContainerPlugin {
8
+ clickPositionValid?: (position: ICoordinates) => boolean;
9
+ draw?: (context: CanvasRenderingContext2D, delta: IDelta) => void;
10
+ drawParticle?: (context: CanvasRenderingContext2D, particle: Particle, delta: IDelta) => void;
11
+ handleClickMode?: (mode: ClickMode | string) => void;
12
+ init?: () => Promise<void>;
13
+ particleBounce?: (particle: Particle, delta: IDelta, direction: OutModeDirection) => boolean;
14
+ particleCreated?: (particle: Particle) => void;
15
+ particleDestroyed?: (particle: Particle, override?: boolean) => void;
16
+ particleFillColor?: (particle: Particle) => string | IOptionsColor | undefined;
17
+ particlePosition?: (position?: ICoordinates, particle?: Particle) => ICoordinates | undefined;
18
+ particleStrokeColor?: (particle: Particle) => string | IOptionsColor | undefined;
19
+ particleUpdate?: (particle: Particle, delta: IDelta) => void;
20
+ particlesInitialization?: () => boolean;
21
+ particlesSetup?: () => void;
22
+ pause?: () => void;
23
+ play?: () => void;
24
+ reset?: () => void;
25
+ resize?: () => void;
26
+ start?: () => Promise<void>;
27
+ stop?: () => void;
28
+ update?: (delta: IDelta) => void;
29
+ }
@@ -0,0 +1,20 @@
1
+ import type { RangeValue } from "../../Types/RangeValue";
2
+ import type { SizeMode } from "../../Enums/Modes/SizeMode";
3
+ export interface ICoordinates {
4
+ x: number;
5
+ y: number;
6
+ }
7
+ export interface ICoordinates3d extends ICoordinates {
8
+ z: number;
9
+ }
10
+ export interface IRangedCoordinates {
11
+ x: RangeValue;
12
+ y: RangeValue;
13
+ }
14
+ export interface IRangedCoordinates3d extends IRangedCoordinates {
15
+ z: RangeValue;
16
+ }
17
+ export interface ICenterCoordinates extends ICoordinates {
18
+ mode: SizeMode;
19
+ radius: number;
20
+ }
@@ -0,0 +1,4 @@
1
+ export interface IDelta {
2
+ factor: number;
3
+ value: number;
4
+ }
@@ -0,0 +1,4 @@
1
+ export interface IDimension {
2
+ height: number;
3
+ width: number;
4
+ }
@@ -0,0 +1,4 @@
1
+ export interface IDistance {
2
+ horizontal: number;
3
+ vertical: number;
4
+ }
@@ -0,0 +1,19 @@
1
+ import type { Container } from "../Container";
2
+ import type { IDelta } from "./IDelta";
3
+ import type { IParticleColorStyle } from "./IParticleColorStyle";
4
+ import type { IParticleTransformValues } from "./IParticleTransformValues";
5
+ import type { IShadow } from "../../Options/Interfaces/Particles/IShadow";
6
+ import type { Particle } from "../Particle";
7
+ export interface IDrawParticleParams {
8
+ backgroundMask: boolean;
9
+ colorStyles: IParticleColorStyle;
10
+ composite: GlobalCompositeOperation;
11
+ container: Container;
12
+ context: CanvasRenderingContext2D;
13
+ delta: IDelta;
14
+ opacity: number;
15
+ particle: Particle;
16
+ radius: number;
17
+ shadow: IShadow;
18
+ transform: IParticleTransformValues;
19
+ }
@@ -0,0 +1,13 @@
1
+ import type { ClickMode } from "../../Enums/Modes/ClickMode";
2
+ import type { IDelta } from "./IDelta";
3
+ import type { IInteractor } from "./IInteractor";
4
+ import type { IModes } from "../../Options/Interfaces/Interactivity/Modes/IModes";
5
+ import type { Modes } from "../../Options/Classes/Interactivity/Modes/Modes";
6
+ import type { Particle } from "../Particle";
7
+ import type { RecursivePartial } from "../../Types/RecursivePartial";
8
+ export interface IExternalInteractor extends IInteractor {
9
+ handleClickMode?: (mode: ClickMode | string) => void;
10
+ loadModeOptions?: (options: Modes, ...sources: RecursivePartial<IModes | undefined>[]) => void;
11
+ interact(delta: IDelta): Promise<void>;
12
+ isEnabled(particle?: Particle): boolean;
13
+ }
@@ -0,0 +1,16 @@
1
+ import type { IDelta } from "./IDelta";
2
+ import type { IParticlesOptions } from "../../Options/Interfaces/Particles/IParticlesOptions";
3
+ import type { ISourceOptions } from "../../Types/ISourceOptions";
4
+ import type { InteractorType } from "../../Enums/Types/InteractorType";
5
+ import type { Options } from "../../Options/Classes/Options";
6
+ import type { Particle } from "../Particle";
7
+ import type { ParticlesOptions } from "../../Options/Classes/Particles/ParticlesOptions";
8
+ import type { RecursivePartial } from "../../Types/RecursivePartial";
9
+ export interface IInteractor {
10
+ loadOptions?: (options: Options, ...sources: (ISourceOptions | undefined)[]) => void;
11
+ loadParticlesOptions?: (options: ParticlesOptions, ...sources: (RecursivePartial<IParticlesOptions> | undefined)[]) => void;
12
+ type: InteractorType;
13
+ clear(particle: Particle, delta: IDelta): void;
14
+ init(): void;
15
+ reset(particle: Particle): void;
16
+ }
@@ -0,0 +1,9 @@
1
+ import type { ISourceOptions } from "../../Types/ISourceOptions";
2
+ import type { SingleOrMultiple } from "../../Types/SingleOrMultiple";
3
+ export interface ILoadParams {
4
+ element?: HTMLElement;
5
+ id?: string;
6
+ index?: number;
7
+ options?: SingleOrMultiple<ISourceOptions>;
8
+ url?: SingleOrMultiple<string>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import type { ICoordinates } from "./ICoordinates";
2
+ export interface IMouseData {
3
+ clickPosition?: ICoordinates;
4
+ clickTime?: number;
5
+ clicking: boolean;
6
+ downPosition?: ICoordinates;
7
+ inside: boolean;
8
+ position?: ICoordinates;
9
+ }
@@ -0,0 +1,9 @@
1
+ import type { Container } from "../Container";
2
+ import type { Particle } from "../Particle";
3
+ import type { Vector } from "../Utils/Vector";
4
+ export interface IMovePathGenerator {
5
+ generate: (particle: Particle) => Vector;
6
+ init: (container: Container) => void;
7
+ reset: (particle: Particle) => void;
8
+ update: () => void;
9
+ }
@@ -0,0 +1,48 @@
1
+ import type { IHsl, IRgb } from "./Colors";
2
+ import type { IBubbleParticleData } from "./IBubbleParticleData";
3
+ import type { ICoordinates3d } from "./ICoordinates";
4
+ import type { IParticleHslAnimation } from "./IParticleHslAnimation";
5
+ import type { IParticleNumericValueAnimation } from "./IParticleValueAnimation";
6
+ import type { IParticleRetinaProps } from "./IParticleRetinaProps";
7
+ import type { IParticleRoll } from "./IParticleRoll";
8
+ import type { IParticlesOptions } from "../../Options/Interfaces/Particles/IParticlesOptions";
9
+ import type { IShapeValues } from "./IShapeValues";
10
+ import type { Interactivity } from "../../Options/Classes/Interactivity/Interactivity";
11
+ import type { Vector } from "../Utils/Vector";
12
+ export interface IParticle {
13
+ readonly backColor?: IHsl;
14
+ readonly bubble: IBubbleParticleData;
15
+ readonly close: boolean;
16
+ readonly color?: IParticleHslAnimation;
17
+ readonly destroyed: boolean;
18
+ readonly direction: number;
19
+ readonly fill: boolean;
20
+ readonly id: number;
21
+ readonly initialVelocity: Vector;
22
+ readonly interactivity: Interactivity;
23
+ misplaced: boolean;
24
+ readonly offset: Vector;
25
+ readonly opacity?: IParticleNumericValueAnimation;
26
+ readonly options: IParticlesOptions;
27
+ readonly position: Vector;
28
+ randomIndexData?: number;
29
+ readonly retina: IParticleRetinaProps;
30
+ readonly roll?: IParticleRoll;
31
+ readonly rotation: number;
32
+ readonly shadowColor?: IRgb;
33
+ readonly shape?: string;
34
+ readonly shapeData?: IShapeValues;
35
+ readonly sides: number;
36
+ readonly size: IParticleNumericValueAnimation;
37
+ readonly strokeColor?: IParticleHslAnimation;
38
+ readonly strokeOpacity?: number;
39
+ readonly strokeWidth?: number;
40
+ readonly velocity: Vector;
41
+ getFillColor(): IHsl | undefined;
42
+ getMass(): number;
43
+ getPosition(): ICoordinates3d;
44
+ getRadius(): number;
45
+ getStrokeColor(): IHsl | undefined;
46
+ isInsideCanvas(): boolean;
47
+ isVisible(): boolean;
48
+ }