Skip to content

Commit e29f5d1

Browse files
committed
adding window motion animation
1 parent c2ea39a commit e29f5d1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Milk-WebView/src/lib/elements/desktop/components/vaporwave_window.svelte

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,16 @@
9898
9999
offset-path: path("M -1 0 C -1 -2 3 -2 3 0 C 3 2 -1 2 -1 0");
100100
offset-rotate: 0deg;
101-
animation: move 3000ms infinite forwards ease-in-out;
101+
animation: move 3000ms infinite forwards linear;
102102
103+
@keyframes move {
104+
0% {
105+
offset-distance: 0%;
106+
}
107+
100% {
108+
offset-distance: 100%;
109+
}
110+
}
103111
.app-bar {
104112
/* little-window-bar */
105113

0 commit comments

Comments
 (0)