feat(customCursor.scss): add custom cursor styles to improve user experience

refactor(customCursor.ts): remove unused code and optimize custom cursor functionality
refactor(stageNav.ts): remove unused code and optimize stage navigation functionality
refactor(stage.ts): remove unused code and optimize stage functionality
This commit is contained in:
Sped0n
2023-10-29 22:25:36 +08:00
parent bfea861ed4
commit 2022c7f03a
5 changed files with 25 additions and 313 deletions

View File

@@ -0,0 +1,21 @@
.cursor {
position: fixed;
z-index: var(--z-cursor);
top: 0;
left: 0;
display: none;
cursor: none;
pointer-events: none;
color: white;
mix-blend-mode: difference;
}
.active {
display: block;
}
.cursorInner {
transform: translate3d(-50%, -50%, 0);
}