++ 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

@@ -1,10 +1,16 @@
<template>
<div class="poster_shadows shadow-3">
<q-parallax
:src="getsrc()"
:speed="speed ? speed : 1"
:height="myheight ? myheight : undefined"
>
<template v-slot:media>
<img
:class="tools.getClassAnim(anim)"
:src="getsrc()"
/>
</template>
<template v-slot:content="scope">
<div
:class="`column items-center ` + myclass()"
@@ -15,6 +21,7 @@
<img
v-if="logo"
:src="logo"
:class="tools.getClassAnim(anim)"
:style="
logowidth
? `width: ` + logowidth + `px; + `
@@ -23,30 +30,18 @@
: undefined
"
/>
<div
:class="classTitle + ` ` + tools.getClassAnim(anim)"
:style="` color:` + colorTitle"
>
{{ title }}
<div v-for="(rec, index) in elemsText" :key="index">
<div
v-if="rec"
:class="
rec.class + ` ` + rec.size + ` ` + tools.getClassAnim(rec.anim)
"
:style="` color:` + rec.color"
v-html="rec.text"
></div>
</div>
<div
v-if="legendinside"
:class="classSubtitle + ` ` + tools.getClassAnim(anim2)"
:style="` color:` + colorSubtitle"
v-html="legendinside"
></div>
</div>
</template>
<div>
<!--<q-img
v-if="logo"
:src="tools.getImgFileByElem(logo)"
:fit="fit"
class="img"
:width="logowidth ? logowidth : undefined"
:height="logoheight ? logoheight : undefined"
></q-img>-->
</div>
</q-parallax>
</div>
</template>