++ Animation fixed in Home pic.
++"Dark Mode"
This commit is contained in:
@@ -598,6 +598,22 @@ export const tools = {
|
||||
label: '[Nessuna]',
|
||||
value: '',
|
||||
},
|
||||
{
|
||||
label: 'Slow 20s',
|
||||
value: 'animate__slow20',
|
||||
},
|
||||
{
|
||||
label: 'Slow 10s',
|
||||
value: 'animate__slow10',
|
||||
},
|
||||
{
|
||||
label: 'Slow 5s',
|
||||
value: 'animate__slow5',
|
||||
},
|
||||
{
|
||||
label: 'Slow 3s',
|
||||
value: 'animate__slow3',
|
||||
},
|
||||
{
|
||||
label: 'Slow 2s',
|
||||
value: 'animate__slow',
|
||||
@@ -644,6 +660,34 @@ export const tools = {
|
||||
|
||||
],
|
||||
|
||||
SelectListTimingType: [
|
||||
{
|
||||
label: '[Nessuna]',
|
||||
value: '',
|
||||
},
|
||||
{
|
||||
label: 'Linear',
|
||||
value: 'animate__linear',
|
||||
},
|
||||
{
|
||||
label: 'Ease',
|
||||
value: 'animate__ease',
|
||||
},
|
||||
{
|
||||
label: 'Ease-In',
|
||||
value: 'animate__ease-in',
|
||||
},
|
||||
{
|
||||
label: 'Ease-Out',
|
||||
value: 'animate__ease-out',
|
||||
},
|
||||
{
|
||||
label: 'Ease-In-Out',
|
||||
value: 'animate__ease-in-out',
|
||||
},
|
||||
|
||||
|
||||
],
|
||||
|
||||
SelectListAnimation: [
|
||||
{
|
||||
@@ -694,6 +738,10 @@ export const tools = {
|
||||
label: 'slideOut Down',
|
||||
value: 'animate__slideOutDown',
|
||||
},
|
||||
{
|
||||
label: 'zoomImg',
|
||||
value: 'zoomImg',
|
||||
},
|
||||
{
|
||||
label: 'zoomIn',
|
||||
value: 'animate__zoomIn',
|
||||
@@ -730,6 +778,14 @@ export const tools = {
|
||||
label: 'zoomOut Down',
|
||||
value: 'animate__zoomOutDown',
|
||||
},
|
||||
{
|
||||
label: 'Effetto Film 1',
|
||||
value: 'film',
|
||||
},
|
||||
{
|
||||
label: 'Zoom IMG',
|
||||
value: 'zoomImg',
|
||||
},
|
||||
{
|
||||
label: 'FadeIn',
|
||||
value: 'animate__fadeIn',
|
||||
@@ -7180,9 +7236,15 @@ export const tools = {
|
||||
},
|
||||
|
||||
getClassAnim(myanim: IAnim) {
|
||||
if (!myanim)
|
||||
return ''
|
||||
|
||||
let mycl = ''
|
||||
if (myanim)
|
||||
mycl = (!!myanim.name ? myanim.name : '') + ' ' + (!!myanim.clduration ? myanim.clduration : '') + ' ' + (!!myanim.cldelay ? myanim.cldelay : '')
|
||||
mycl = (!!myanim.name ? myanim.name : '') +
|
||||
' ' + (!!myanim.clduration ? myanim.clduration : '') +
|
||||
' ' + (!!myanim.cldelay ? myanim.cldelay : '') +
|
||||
' ' + (!!myanim.timingtype ? myanim.timingtype : '')
|
||||
else
|
||||
mycl = ''
|
||||
|
||||
|
||||
Reference in New Issue
Block a user