fix
This commit is contained in:
parent
6e18d753a6
commit
48dc6861ea
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "calckey",
|
||||
"version": "12.119.0-calc.18-rc.1",
|
||||
"version": "12.119.0-calc.18-rc.2",
|
||||
"codename": "aqua",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -71,10 +71,12 @@ const el = ref<HTMLElement>();
|
|||
const width = ref(0);
|
||||
const height = ref(0);
|
||||
const colors = ['#eb6f92', '#9ccfd8', '#f6c177', '#f6c177', '#f6c177'];
|
||||
const reducedQuery = window.matchMedia('(prefers-reduced-motion: reduce)');
|
||||
let stop = false;
|
||||
let ro: ResizeObserver | undefined;
|
||||
|
||||
onMounted(() => {
|
||||
if (!reducedQuery.matches) {
|
||||
ro = new ResizeObserver((entries, observer) => {
|
||||
width.value = el.value?.offsetWidth + 64;
|
||||
height.value = el.value?.offsetHeight + 64;
|
||||
|
@ -103,6 +105,7 @@ onMounted(() => {
|
|||
}, 500 + (Math.random() * 500));
|
||||
};
|
||||
add();
|
||||
}
|
||||
});
|
||||
|
||||
onUnmounted(() => {
|
||||
|
|
|
@ -158,7 +158,7 @@ const props = withDefaults(defineProps<{
|
|||
}
|
||||
|
||||
@media(prefers-reduced-motion) {
|
||||
div[class^='mfm'], div[class*=' mfm'] {
|
||||
span[class^='mfm'], div[class*=' mfm'] {
|
||||
animation: none;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue