++ Animation fixed in Home pic.

++"Dark Mode"
This commit is contained in:
Surya Paolo
2022-11-23 23:57:21 +01:00
parent 46bf74e9e2
commit fab0dbbb72
17 changed files with 722 additions and 232 deletions

View File

@@ -13,7 +13,7 @@ export default defineComponent({
type: Object as PropType<IAnim | string | undefined>,
required: false,
default : () => {
return {name: '', clduration: '', cldelay: ''}
return {name: '', clduration: '', cldelay: '', timingtype: 'ease-in-out'}
}
},
label: {

View File

@@ -1,9 +1,10 @@
<template>
<div v-if="!!myrec">
{{label}}
<div class="row">
<q-select
rounded
style="min-width: 150px"
style="width: 150px"
outlined
v-model="myrec.name"
:options="tools.SelectListAnimation"
@@ -15,6 +16,21 @@
>
</q-select>
<q-select
rounded
style="width: 150px"
outlined
v-model="myrec.timingtype"
:options="tools.SelectListTimingType"
@update:model-value="updateClass"
dense
label="Timing:"
emit-value
map-options
>
</q-select>
</div>
<q-select
rounded
style="min-width: 150px"