CSS Animations

This commit is contained in:
Surya Paolo
2022-11-18 18:54:18 +01:00
parent 745d4829bb
commit 3c7350024b
2 changed files with 31 additions and 2 deletions

View File

@@ -44,6 +44,12 @@ const MyElemSchema = new Schema({
align: {
type: Number,
},
vertalign: {
type: Number,
},
speed: {
type: Number,
},
parambool: {
type: Boolean,
},
@@ -99,6 +105,9 @@ const MyElemSchema = new Schema({
color: {
type: String,
},
colorsub: {
type: String
},
active: {
type: Boolean,
},
@@ -111,6 +120,15 @@ const MyElemSchema = new Schema({
class3: {
type: String,
},
class4: {
type: String,
},
class_anim: {
type: String,
},
class_anim2: {
type: String,
},
styleadd: {
type: String,
},

View File

@@ -100,7 +100,18 @@ const SiteSchema = new Schema({
type: Number,
default: 0,
},
}
},
contacts: {
facebook: { type: String},
instagram: { type: String},
whatsapp: { type: String},
whatsapp_home: { type: Boolean},
telegram: { type: String},
youtube: { type: String},
email: { type: String},
address: { type: String},
map: { type: String},
},
});
var Site = module.exports = mongoose.model('Site', SiteSchema);