mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 05:33:40 -05:00
18 lines
439 B
HTML
18 lines
439 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>test</title>
|
|
<script type="module">
|
|
import { fairyDustCursor } from "https://unpkg.com/cursor-effects@latest/dist/esm.js";
|
|
|
|
new fairyDustCursor();
|
|
</script>
|
|
<script>
|
|
window.addEventListener("load", (event) => {
|
|
new cursoreffects.ghostCursor();
|
|
</script>
|
|
});
|
|
</body>
|
|
</html>
|