https://www.cnblogs.com/mrszhou/p/7859020.html
1
2
3
4
5
6
7
8
9 /* .v-enter-active,.v-leave-active{
10 transition:all 2s;
11 }
12 .v-enter,.v-leave-to{
13 margin-left: 100px;
14 }
15 .v-enter-to,.v-leave{
16 margin-left:0px;
17 } */
18 .show-enter-active,.show-leave-active{
19 transition:all 2s;
20 }
21 .show-enter,.show-leave-to{
22 margin-left: 100px;
23 }
24 .show-enter-to,.show-leave{
25 margin-left:0px;
26 }
27
28
29
30
31
32
33
51
52
53
54
55 it 传说
56
57
58
59
60
61
62
63 // 实例化vue对象(MVVM中的View Model)
64 new Vue({
65 // vm控制的区块为id为app的div,此div中的所有vue指令均可以被vm解析
66 el:'#app',
67 data:{
68 // 数据 (MVVM中的Model)
69 isshow:false
70 },
71 methods:{
72 toggle:function(){
73 this.isshow = !this.isshow;
74 }
75 }
76 })
77
78
animate.css 演示地址 : https://daneden.github.io/animate.css/
View Code
实例代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 enter-active-class="animated fadeInRight"
18 leave-active-class="animated fadeOutRight"
19 >
20
23
24
25
26
27
28
29
30
31 // 实例化vue对象(MVVM中的View Model)
32 new Vue({
33 // vm控制的区块为id为app的div,此div中的所有vue指令均可以被vm解析
34 el:'#app',
35 data:{
36 // 数据 (MVVM中的Model)
37 isshow:false
38 },
39 methods:{
40 toggle:function() {
41 this.isshow = !this.isshow;
42 }
43 }
44 })
45
46
1
2
3
4
5
6
7
8
9
10 .show {
11 transition: all 0.5s;
12 }
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 // 实例化vue对象(MVVM中的View Model)
30 new Vue({
31 // vm控制的区块为id为app的div,此div中的所有vue指令均可以被vm解析
32 el: '#app',
33 data: {
34 // 数据 (MVVM中的Model)
35 isshow: false
36 },
37 methods: {
38 toggle: function () {
39 this.isshow = !this.isshow;
40 },
41 // 以下三个与enter相关的方法只会在元素由隐藏变为显示的时候才会执行
42 // el:指的是当前调用这个方法的元素对象
43 // done:用来决定是否要执行后续的代码如果不执行这个方法,那么将来执行完before执行完enter以后动画就会停止
44 beforeEnter: function (el) {
45 console.log("beforeEnter");
46 // 当入场之前会执行 v-enter
47 el.style = "padding-left:100px";
48 },
49 enter: function (el, done) {
50 // 当进行的过程中每执行 v-enter-active
51 console.log("enter");
52 // 为了能让代码正常进行,在设置了结束状态后必须调用一下这个元素的
53 // offsetHeight / offsetWeight 只是为了让动画执行
54 el.offsetHeight;
55
56 // 结束的状态最后啊写在enter中
57 el.style = "padding-left:0px";
58
59
60 // 执行done继续向下执行
61 done();
62 },
63 afterEnter: function (el) {
64 // 当执行完毕以后会执行
65 console.log("afterEnter");
66 this.isshow = false;
67 }
68 }
69 })
70
71
72
73
1
2
3
4
5
6
7
8
9
10 #app {
11 width: 600px;
12 margin: 10px auto;
13 }
14
15 .tb {
16 border-collapse: collapse;
17 width: 100%;
18 }
19
20 .tb th {
21 background-color: #0094ff;
22 color: white;
23 }
24
25 .tb td,
26 .tb th {
27 padding: 5px;
28 border: 1px solid black;
29 text-align: center;
30 }
31
32 .add {
33 padding: 5px;
34 border: 1px solid black;
35 margin-bottom: 10px;
36 }
37
38 .del li{
39 list-style: none;
40 padding: 10px;
41 }
42
43 .del{
44 position: absolute;
45 top:45%;
46 left: 45%;
47 width: 300px;
48 border: 1px solid rgba(0,0,0,0.2);
49 transition: all 0.5s;
50 }
51
52
53
54
55
56
57
58 编号: 品牌名称:
59
60
61
62
63
64
65
编号 66
品牌名称 67
创立时间 68
操作 69
70
71
没有品牌数据 72
73
74
75
{{item.id}} 76
{{item.name}} 77
{{item.ctime | dateFrm("/")}} 78
79
删除 80
81
82
83
84
85 @before-enter="beforeEnter"
86 @enter="enter"
87 @after-enter ="afterEnter"
88 @before-leave="beforeLeave"
89 @leave="leave"
90 @after-leave ="afterLeave"
91 >
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109 // 使用全局过滤器(公有过滤器)
110 Vue.filter("dateFrm", function (time,spliceStr) {
111 // return "2017-11-16";
112 var date = new Date(time);
113 //得到年
114 var year = date.getFullYear();
115 // 得到月
116 var month = date.getMonth() + 1;
117 // 得到日
118 var day = date.getDate();
119 return year + spliceStr + month + spliceStr + day;
120 });
121
122
123 // 先将自定义指令定义好
124 // directive有两个参数
125 //参数一: 自定义指令 v-focus
126 //参数二: 对象,对象中可以添加很多方法
127 // 添加一个inserted方法:而这个方法中又有两个参数:
128 //参数一:el 当前使用自定义指令的对象
129 //参数二:obj 是指它(v-color="color" )后面设置的表达式
130 //{expression:"color",value:"red",}
131 Vue.directive("focus", {
132 inserted: function (el, obj) {
133 // console.log(el);
134 el.focus();
135 }
136 });
137 Vue.directive("color", {
138 inserted: function (el, obj) {
139 // obj.style.color = "red";
140 obj.style.color = obj.value;//????????????
141 console.log(obj.value);
142 }
143 });
144
145 var vm = new Vue({
146 el: "#app",
147 data: {
148 delId:"",// 用来将要删除数据的id进行保存
149 isshow:false,
150 color: "green",
151 id: 0,
152 name: '',
153 list: [
154 { "id": 1, "name": "itcast", "ctime": Date() },
155 { "id": 2, "name": "黑马", "ctime": Date() }
156 ]
157 },
158 // mounted(){
159 // this.getFocus()
160 // },
161 methods: {
162 add: function () {
163 //将id和namepush到list数组中
164 this.list.push({ "id": this.id, "name": this.name, "ctime": Date() });
165 },
166 del: function (id) {
167 this.isshow = true;
168 // 将得到的id保存到delId里面
169 this.delId = id;
170 },
171 beforeEnter:function(el) {
172 el.style.left = "100%";
173 },
174 enter:function(el,done) {
175 el.offsetHeight;
176 el.style.left = "35%";
177 },
178 afterEnter:function(el){
179
180 },
181 beforeLeave:function(el){
182 el.style.left = "35%";
183 },
184 leave:function(el,done){
185 el.offsetHeight;
186 el.style.left = "100%";
187 setTimeout(function(){
188 done();
189 },500);
190 },
191 afterLeave:function(el){
192
193 },
194 showClose:function(el){
195 this.isshow = false;
196 },
197 delById:function() {
198 _this = this;
199 // 根据DelId删除对应的数据
200 var index = this.list.findIndex(function(item){
201 return item.id ==_this.delId;
202 });
203 this.list.splice(index,1);
204 // 关闭删除框
205 this.isshow = false;
206 }
207 }
208 });
209
210