-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindi.config.ts
119 lines (117 loc) · 2.83 KB
/
windi.config.ts
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
/*
* @Author: chen qi
* @Date: 2022-09-18 18:07:13
* @LastEditors: chen qi
* @LastEditTime: 2023-03-21 09:42:29
* @Description: ~
*/
/** @type {import('tailwindcss').Config} */
import plugin from 'windicss/plugin'
const themeColor = 'red'
module.exports = {
plugins: [
createEnterPlugin(),
plugin(({ addUtilities }) => {
const center = {
'.flex-center': {
'display': 'flex',
'flex': '1',
'justify-content': 'center',
'align-items': 'center',
},
'.center': {
'display': 'flex',
'justify-content': 'center',
'align-items': 'center',
},
}
addUtilities(center)
}),
],
content: [
// Example content paths...
'./public/**/*.html',
'./examples/**/*.{js,jsx,ts,tsx,vue}',
'./packages/**/*.{js,jsx,ts,tsx,vue}',
],
theme: {
// 自定义
// colors: {
// // cqColor: 'pink'
// },
// 原有属性覆盖
extend: {
zIndex: {
'-1': '-1',
},
backgroundImage: {
'user-bg': 'url(\'/src/assets/images/userBg.png\')',
'temp-bg': 'url(\'/src/assets/images/temp-bg.png\')',
},
backgroundSize: {
'auto-100%': 'auto 100%',
},
colors: {
primary: themeColor,
},
screens: {
// 手机
'sm': '576px',
'md': '768px',
// 平板
'lg': '992px',
'xl': '1200px',
'2xl': '1600px',
},
},
},
}
/**
* Used for animation when the element is displayed.
* @param maxOutput The larger the maxOutput output, the larger the generated css volume.
*/
function createEnterPlugin(maxOutput = 6) {
const createCss = (index: number, d = 'x') => {
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 }) => {
const addRawCss = {}
for (let index = 1; index < maxOutput; index++) {
Object.assign(addRawCss, {
...createCss(index, 'x'),
...createCss(index, 'y'),
})
}
addBase({
...addRawCss,
'@keyframes enter-x-animation': {
to: {
opacity: '1',
transform: 'translateX(0)',
},
},
'@keyframes enter-y-animation': {
to: {
opacity: '1',
transform: 'translateY(0)',
},
},
})
}
return { handler }
}