no message

This commit is contained in:
2025-10-18 14:46:52 +08:00
commit 7a84025b05
387 changed files with 75711 additions and 0 deletions

47
Ruaka/tip.css.bak Normal file
View File

@@ -0,0 +1,47 @@
.rk-tip-in {
bottom:30px;
right:10px;
animation: rki 1s ease;
}
@keyframes rki {
0% {
right:-520px;
bottom:50px;
}
40% {
right:10px;
bottom:50px;
}
60 %{
right:10px;
bottom:-10px;
}
100 %{
right:10px;
bottom:10px;
}
}
.rk-tip-out {
right:-520px;
bottom:-110px;
animation: rko 1s ease;
}
@keyframes rko {
0% {
bottom:30px;
right:10px;
}
50% {
bottom:-20px;
right:10px;
}
100% {
bottom:110px;
right:-520px;
}
}