Magic Cursor 效果库 / 电弧
在指针附近生成短寿命电弧,可调长度、半径、寿命、发光、发射率与点击爆发。
electricArc
Code
import { createEffect } from "magic-cursor-effect";
const root = document.querySelector("#your-root") as HTMLElement;
const instance = createEffect("electricArc", root, {
"emission": 3,
"length": 28,
"radius": 38,
"lifeMs": 210,
"color": "rgba(99, 102, 241, 0.95)",
"glowColor": "rgba(99, 102, 241, 0.34)",
"clickBurst": 16
});
// later
// instance.destroy();