GSAP动画封装实现方案
# GSAP动画封装实现方案
hl-effect- 固定模式 方向:left right top bottom 延迟时间:单位ms,比如 0 100 200 300,0代表和上一个动画同步,不加默认200ms
比如:hl-effect-left-100
所有的x y都是相对于原来的位置
- paused 时间线开始不自动执行
- ease 动画规则 "power4.in", // 先慢后快 "power2.inOut", // 先快后慢
- opacity 不透明度
- duration 所需时间
- , "<0.5" 后缀添加意义为上一动画后0.5秒运行
- , "<" 后缀添加意义为与上一动画同时运行 */ 切入切出为动画类型,封装了两个动画类 panelEffectOut为面板动画 切入 / 切出 ,需要传入切入切出方向 elementsEffect为元素动画 切入 / 切出随面板,方向和延迟根据class标签读取
切入具体逻辑为: 1.面板切入动画 2.随面板切入动画后0.2秒后同时运行元素切入动画,切入元素为指定id的面板下遍历条件符合[class*="hl-effect-"]的元素并生成list集合传入元素切入封装类 3.根据时间线排序实现层次感
import gsap from 'gsap';
/*
所有的x y都是相对于原来的位置
- paused 时间线开始不自动执行
- ease 动画规则 "power4.in", // 先慢后快 "power2.inOut", // 先快后慢
- opacity 不透明度
- duration 所需时间
- , "<0.5" 后缀添加意义为上一动画后0.5秒运行
- , "<" 后缀添加意义为与上一动画同时运行
*/
//面板动画 - 切出
gsap.registerEffect({
name: "panelEffectOut",
effect: (targets, config) => {
// 定义一个时间线来串联两个动画
let tl = gsap.timeline();
if (config.mode == "in") {
if (config.direction == "left" || config.direction == "right") {
//默认左方向
let x1 = 100;
let x2 = 0
if (config.direction == "right") {
//右方向
x1 = -100;
x2 = 0
}
// 第一步动画
tl.to(targets, {
x: x1,
opacity: 0.5,
duration: 0.8
});
// 第二步动画
tl.to(targets, {
x: x2,
opacity: 1,
duration: 1
});
} else {
//默认上方向
let y1 = 100;
let y2 = 0
if (config.direction == "bottom") {
//右方向
y1 = -100;
y2 = 0
}
// 第一步动画
tl.to(targets, {
y: y1,
opacity: 0.5,
duration: 0.8
});
// 第二步动画
tl.to(targets, {
y: y2,
opacity: 1,
duration: 1
});
}
} else {
if (config.direction == "left" || config.direction == "right") {
//默认左方向
let x1 = 100;
let x2 = -700
if (config.direction == "right") {
//右方向
x1 = -100;
x2 = 700
}
// 第一步动画
tl.to(targets, {
x: x1,
opacity: 0.5,
duration: 0.4
});
// 第二步动画
tl.to(targets, {
x: x2,
opacity: 0,
duration: 1
});
} else {
//默认上方向
let y1 = 100;
let y2 = -700
if (config.direction == "bottom") {
//右方向
y1 = -100;
y2 = 700
}
// 第一步动画
tl.to(targets, {
y: y1,
opacity: 0.5,
duration: 0.4
});
// 第二步动画
tl.to(targets, {
y: y2,
opacity: 0,
duration: 1
});
}
}
return tl;
},
extendTimeline: true // 允许在 GSAP 时间线上直接调用这个效果
});
//元素动画 -元素切入
gsap.registerEffect({
name: "elementsEffect",
effect: (targets, config) => {
// console.log("🚀元素切入 ~ targets, config:", targets, config)
// 创建时间线以添加延迟
let tl = gsap.timeline();
// 使用 .forEach 遍历每个目标元素
targets.forEach(target => {
let delay = 0;
let direction = "";
// 从类名中提取延迟时间
const classList = target.classList;
classList.forEach(className => {
const match = className.match(/hl-effect-(left|right|top|bottom)-(\d+)/);
if (match != null) {
direction = match[1]
delay = parseInt(match[2], 10) / 1000; // 将毫秒转换为秒
}
});
// 根据方向设置初始位置
if (direction === "left") {
gsap.set(target, { x: -300, opacity: 0 });
} else if (direction === "right") {
gsap.set(target, { x: 300, opacity: 0 });
} else if (direction === "bottom") {
gsap.set(target, { y: 300, opacity: 0 });
} else if (direction === "top") {
gsap.set(target, { y: -300, opacity: 0 });
}
// 添加动画到时间线
if (direction === "left" || direction === "right") {
tl.to(target, {
x: 0,
opacity: 1,
duration: 0.6,
}, "<" + delay)
} else if (direction === "top" || direction === "bottom") {
tl.to(target, {
y: 0,
opacity: 1,
duration: 0.6,
}, "<" + delay);
}
});
return tl;
},
extendTimeline: true // 允许在 GSAP 时间线上直接调用这个效果
});
//隐藏传入元素
const hiddenelement = (element, direction = "x", px = 300) => {
if (direction == "x") {
gsap.set(element, {
x: px,
opacity: 0,
});
}
if (direction == "y") {
gsap.set(element, {
y: px,
opacity: 0,
});
}
}
//切出动画
export const cutOut = () => {
// 创建一个时间线
const tl1 = gsap.timeline({
paused: true,
ease: "power4.in", // 先慢后快
});
// 创建一个时间线
const tl2 = gsap.timeline({
paused: true,
ease: "power4.in", // 先慢后快
});
// 创建一个时间线 面板3
const tl3 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
// 创建一个时间线 面板4
const tl4 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
// 创建一个时间线 图例
const tl5 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
// 创建一个时间线 顶部
const tl6 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
tl1.panelEffectOut("#main-box1", { direction: "left", mode: "out" })
tl2.panelEffectOut("#main-box2", { direction: "left", mode: "out" })
tl3.panelEffectOut("#main-box3", { direction: "right", mode: "out" })
tl4.panelEffectOut("#main-box4", { direction: "right", mode: "out" })
tl5.panelEffectOut("#main-box5", { direction: "left", mode: "out" })
var el1 = '.header-left';
var el2 = '.header-right';
var el3 = '.header-box';
var el4 = '.masklayer-main';
tl6.to(el4, {
x: 0,
opacity: 0,
duration: 0.4
}).to(el1, {
x: 100,
opacity: 0.5,
duration: 0.4
}, "<").to(el2, {
x: -100,
opacity: 0.5,
duration: 0.4
}, "<").to(el1, {
x: -300,
opacity: 0,
duration: 0.4
}, "<0.4").to(el2, {
x: 300,
opacity: 0,
duration: 0.4
}, "<").to(el3, {
y: -300,
opacity: 0,
duration: 0.6
}, "<0.4");
tl1.play();
tl4.play();
tl6.play();
gsap.delayedCall(0.4, () => {
tl2.play()
tl3.play()
}
);
gsap.delayedCall(0.8, () => {
tl5.play()
}
);
}
//切入动画
export const cutIn = () => {
// 创建一个时间线 面板1
const tl1 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
// 创建一个时间线 面板2
const tl2 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
// 创建一个时间线 面板3
const tl3 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
// 创建一个时间线 面板4
const tl4 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
// 创建一个时间线 图例
const tl5 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
// 创建一个时间线 顶部
const tl6 = gsap.timeline({
paused: true,
ease: "power2.inOut", // 先快后慢
});
tl1.panelEffectOut("#main-box1", { direction: "left", mode: "in" })
const elemetlist1 = document.getElementById('main-box1').querySelectorAll('[class*="hl-effect-"]');
tl1.elementsEffect(elemetlist1, {}, "<0.2")
tl2.panelEffectOut("#main-box2", { direction: "left", mode: "in" })
const elemetlist2 = document.getElementById('main-box2').querySelectorAll('[class*="hl-effect-"]');
tl2.elementsEffect(elemetlist2, {}, "<0.2")
tl3.panelEffectOut("#main-box3", { direction: "right", mode: "in" })
const elemetlist3 = document.getElementById('main-box3').querySelectorAll('[class*="hl-effect-"]');
tl3.elementsEffect(elemetlist3, {}, "<0.2")
tl4.panelEffectOut("#main-box4", { direction: "right", mode: "in" })
const elemetlist4 = document.getElementById('main-box4').querySelectorAll('[class*="hl-effect-"]');
tl4.elementsEffect(elemetlist4, {}, "<0.2")
tl5.panelEffectOut("#main-box5", { direction: "left", mode: "in" })
var el1 = '.header-left';
var el2 = '.header-right';
var el3 = '.header-box';
var el4 = '.masklayer-main';
tl6.to(el4, {
x: 0,
opacity: 1,
duration: 0.4
}).to(el3, {
y: -300,
opacity: 0,
duration: 0.2
}, "<").to(el3, {
y: 0,
opacity: 1,
duration: 0.6
}, "<0.2").to(el1, {
x: 100,
opacity: 0.5,
duration: 0.6
}, "<0.6").to(el2, {
x: -100,
opacity: 0.5,
duration: 0.6
}, "<").to(el1, {
x: 0,
opacity: 1,
duration: 0.6
}, "<0.6").to(el2, {
x: 0,
opacity: 1,
duration: 0.6
}, "<")
tl1.play();
tl4.play();
tl6.play();
gsap.delayedCall(0.5, () => {
tl2.play()
tl3.play()
}
);
gsap.delayedCall(1, () => {
tl5.play()
}
);
}
export const hideBox = () => {
hiddenelement("#main-box1", 'x', -300)
hiddenelement("#main-box2", 'x', -300)
hiddenelement("#main-box3", 'x', 300)
hiddenelement("#main-box4", 'x', 300)
hiddenelement(".masklayer-main", 'x', 0)
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422