Vben
authored
|
1
2
3
4
5
|
module.exports = {
mode: 'jit',
// darkMode: 'class',
plugins: [createEnterPlugin()],
purge: {
|
vben
authored
|
6
|
enable: process.env.NODE_ENV === 'production',
|
Vben
authored
|
7
8
|
content: ['./index.html', './src/**/*.{vue,ts,tsx}'],
},
|
vben
authored
|
9
10
|
theme: {
extend: {
|
Vben
authored
|
11
12
|
zIndex: {
'-1': '-1',
|
Vben
authored
|
13
|
},
|
vben
authored
|
14
15
16
17
18
19
20
21
22
23
24
25
|
colors: {
primary: {
DEFAULT: '#0960bd',
// dark: primaryColorDark,
},
},
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1200px',
'2xl': '1600px',
|
Vben
authored
|
26
|
},
|
Vben
authored
|
27
|
},
|
vben
authored
|
28
|
},
|
Vben
authored
|
29
|
};
|
vben
authored
|
30
31
32
33
|
/**
* Used for animation when the element is displayed
* @param maxOutput The larger the maxOutput output, the larger the generated css volume
*/
|
Vben
authored
|
34
35
|
function createEnterPlugin(maxOutput = 6) {
const createCss = (index, d = 'x') => {
|
vben
authored
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
const upd = d.toUpperCase();
return {
[`*> .enter-${d}:nth-child(${index})`]: {
transform: `translate${upd}(50px)`,
},
[`*> .-enter-${d}:nth-child(${index})`]: {
transform: `translate${upd}(-50px)`,
},
[`* > .enter-${d}:nth-child(${index}),* > .-enter-${d}:nth-child(${index})`]: {
'z-index': `${10 - index}`,
opacity: '0',
animation: `enter-${d}-animation 0.4s ease-in-out 0.3s`,
'animation-fill-mode': 'forwards',
'animation-delay': `${(index * 1) / 10}s`,
},
};
};
const handler = ({ addBase }) => {
|
Vben
authored
|
54
|
const addRawCss = {};
|
vben
authored
|
55
|
for (let index = 1; index < maxOutput; index++) {
|
Vben
authored
|
56
|
Object.assign(addRawCss, {
|
vben
authored
|
57
58
59
60
61
|
...createCss(index, 'x'),
...createCss(index, 'y'),
});
}
addBase({
|
Vben
authored
|
62
|
...addRawCss,
|
vben
authored
|
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
[`@keyframes enter-x-animation`]: {
to: {
opacity: '1',
transform: 'translateX(0)',
},
},
[`@keyframes enter-y-animation`]: {
to: {
opacity: '1',
transform: 'translateY(0)',
},
},
});
};
return { handler };
}
|