UNPKG

742 BJavaScriptView Raw
1export class Constants {
2}
3Constants.canvasClass = "tsparticles-canvas-el";
4Constants.randomColorValue = "random";
5Constants.midColorValue = "mid";
6Constants.touchEndEvent = "touchend";
7Constants.mouseDownEvent = "mousedown";
8Constants.mouseUpEvent = "mouseup";
9Constants.mouseMoveEvent = "mousemove";
10Constants.touchStartEvent = "touchstart";
11Constants.touchMoveEvent = "touchmove";
12Constants.mouseLeaveEvent = "mouseleave";
13Constants.mouseOutEvent = "mouseout";
14Constants.touchCancelEvent = "touchcancel";
15Constants.resizeEvent = "resize";
16Constants.visibilityChangeEvent = "visibilitychange";
17Constants.noPolygonDataLoaded = "No polygon data loaded.";
18Constants.noPolygonFound = "No polygon found, you need to specify SVG url in config.";