CSS Animations

This commit is contained in:
Surya Paolo
2022-11-18 18:54:30 +01:00
parent 495abc33be
commit a56ee80fbb
30 changed files with 1131 additions and 251 deletions

View File

@@ -1192,6 +1192,10 @@ export const shared_consts = {
value: 8,
label: 'ImgTitolo',
},
{
value: 9,
label: 'Img Poster',
},
{
value: 10,
label: 'Testo',
@@ -1263,6 +1267,7 @@ export const shared_consts = {
MARGINI: 6,
CARD: 7,
IMGTITLE: 8,
IMGPOSTER: 9,
TEXT: 10,
HTML: 20,
IMAGE: 30,
@@ -1288,6 +1293,15 @@ export const shared_consts = {
RIGHT: 3,
},
VERTALIGNTYPE: {
NONE: 0,
UP: 1,
CENTER: 2,
DOWN: 3,
DOWN_LEFT: 4,
UP_LEFT: 5,
},
getStatusStr(status: number) {
const trovatorec = this.OrderStatusStr.find((rec) => rec.value === status)