Chase

Magic Cursor 效果库 / 烟雾

从指针发射缓慢上升并漂移的烟雾,可调颜色、尺寸、寿命与运动参数。

smoke
Code
import { createEffect } from "magic-cursor-effect";

const root = document.querySelector("#your-root") as HTMLElement;

const instance = createEffect("smoke", root, {
  "emission": 2,
  "size": 18,
  "lifeMs": 1400,
  "rise": 0.8,
  "drift": 0.7,
  "color": "rgba(99, 102, 241, 0.95)"
});

// later
// instance.destroy();