inleft
2022-03-03 dc66ec6f3c3ae560bdcbb5e0a1790b27228205e8
commit | author | age
f60b31 1 <template>
I 2
3     <div class="test_wow">
4
5             <section class="wow animate__slideOutUp test_wow" data-wow-duration="5s" data-wow-de>
6
7                 </section>
8
9                 <section class="wow animate__slideOutUp test_wow1" data-wow-duration="5s">
10
11                 </section> 
12
13                 <section class="wow animate__slideOutUp test_wow2" data-wow-duration="5s">
14
15                 </section> 
16
17                 <section class="wow animate__slideOutUp test_wow3" data-wow-duration="5s">
18
19                 </section> 
20
21                 <section class="wow animate__slideOutUp test_wow4" data-wow-duration="5s">
22
23                 </section>       
24
25     </div>
26
27
28
29 </template>
30
31 <script>
32     export default {
33
34         name: 'Home',
35
36         data() {
37
38             return {
39
40             }
41
42         },
43
44         mounted() {
45
46             new this.$wow.WOW().init()
47
48         }
49
50     }
51 </script>
52
53 <style scoped>
54     .test_wow {
55
56         position: relative;
57
58         width: 1000px;
59
60         height: 400px;
61
62         background: #212121;
63
64         margin: 0 auto;
65
66     }
67
68     .test_wow1 {
69
70         position: relative;
71
72         width: 1000px;
73
74         height: 400px;
75
76         background: #741919;
77
78         margin: 0 auto;
79
80     }
81
82     .test_wow2 {
83
84         position: relative;
85
86         width: 1000px;
87
88         height: 400px;
89
90         background: #2b0f44;
91
92         margin: 0 auto;
93
94     }
95
96     .test_wow3 {
97
98         position: relative;
99
100         width: 1000px;
101
102         height: 400px;
103
104         background: #558614;
105
106         margin: 0 auto;
107
108     }
109
110     .test_wow4 {
111
112         position: relative;
113
114         width: 1000px;
115
116         height: 400px;
117
118         background: #440707;
119
120         margin: 0 auto;
121
122     }
123 </style>