CSS Animations
This commit is contained in:
@@ -44,6 +44,12 @@ const MyElemSchema = new Schema({
|
|||||||
align: {
|
align: {
|
||||||
type: Number,
|
type: Number,
|
||||||
},
|
},
|
||||||
|
vertalign: {
|
||||||
|
type: Number,
|
||||||
|
},
|
||||||
|
speed: {
|
||||||
|
type: Number,
|
||||||
|
},
|
||||||
parambool: {
|
parambool: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
},
|
},
|
||||||
@@ -99,7 +105,10 @@ const MyElemSchema = new Schema({
|
|||||||
color: {
|
color: {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
active: {
|
colorsub: {
|
||||||
|
type: String
|
||||||
|
},
|
||||||
|
active: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
},
|
},
|
||||||
class: {
|
class: {
|
||||||
@@ -111,6 +120,15 @@ const MyElemSchema = new Schema({
|
|||||||
class3: {
|
class3: {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
|
class4: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
class_anim: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
class_anim2: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
styleadd: {
|
styleadd: {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -100,7 +100,18 @@ const SiteSchema = new Schema({
|
|||||||
type: Number,
|
type: Number,
|
||||||
default: 0,
|
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);
|
var Site = module.exports = mongoose.model('Site', SiteSchema);
|
||||||
|
|||||||
Reference in New Issue
Block a user