added animations and pageLoad and preLoader

This commit is contained in:
Amir Mohamadi
2020-12-19 13:26:55 +03:30
parent bc5e617778
commit 9433eb84ac
57 changed files with 13099 additions and 494 deletions
+7 -4
View File
@@ -1,7 +1,7 @@
<template>
<div class="hero">
<div class="bg"></div>
<div class="txt">
<div class="hero anim-parallax-hero-container">
<div class="bg anim-parallax-hero"></div>
<div class="txt anim-parallax-hero-txt">
<div class="container">
<div class="row align-items-center">
<h2 class="col">{{title}}</h2>
@@ -12,13 +12,16 @@
</template>
<script>
import {parallaxAnimation_hero} from '~/mixins/animations'
export default {
props: {
title: {
required: true,
type: String
}
}
},
mixins: [parallaxAnimation_hero]
}
</script>