mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-03 06:41:44 +08:00
This commit is contained in:
parent
95dc762faf
commit
c67abdad55
@ -553,7 +553,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&--animate {
|
&--animate {
|
||||||
animation: scale .3s ease-in-out;
|
animation: bottom2Top .3s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
div[data-type="NodeMathBlock"] {
|
div[data-type="NodeMathBlock"] {
|
||||||
|
@ -50,15 +50,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes scale {
|
@keyframes bottom2Top {
|
||||||
0% {
|
0% {
|
||||||
transform: scaleY(1.3);
|
transform: translateY(60px);
|
||||||
transform-origin: 0 0;
|
transform-origin: 0 0;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
transform: scaleY(1);
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -172,7 +172,7 @@ export const initUI = (protyle: IProtyle) => {
|
|||||||
focusByRange(range);
|
focusByRange(range);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
});
|
});
|
||||||
let overAttr = false;
|
let overAttr = false;
|
||||||
protyle.element.addEventListener("mouseover", (event: KeyboardEvent & { target: HTMLElement }) => {
|
protyle.element.addEventListener("mouseover", (event: KeyboardEvent & { target: HTMLElement }) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user