vben-admin-thin-next/windi.config.ts

75 lines
1.8 KiB
TypeScript
Raw Permalink Normal View History

2021-08-04 23:26:08 +08:00
import { defineConfig } from 'vite-plugin-windicss';
import { primaryColor } from './build/config/themeConfig';
export default defineConfig({
darkMode: 'class',
plugins: [createEnterPlugin()],
2021-02-21 17:56:23 +08:00
theme: {
extend: {
zIndex: {
'-1': '-1',
},
colors: {
2021-08-04 23:26:08 +08:00
primary: primaryColor,
},
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1200px',
'2xl': '1600px',
},
},
2021-02-21 17:56:23 +08:00
},
2021-08-04 23:26:08 +08:00
});
2021-02-21 17:56:23 +08:00
/**
* Used for animation when the element is displayed
* @param maxOutput The larger the maxOutput output, the larger the generated css volume
*/
2021-10-26 01:06:35 +08:00
function createEnterPlugin(maxOutput = 7) {
2021-08-04 23:26:08 +08:00
const createCss = (index: number, d = 'x') => {
2021-02-21 17:56:23 +08:00
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 = {};
2021-02-21 17:56:23 +08:00
for (let index = 1; index < maxOutput; index++) {
Object.assign(addRawCss, {
2021-02-21 17:56:23 +08:00
...createCss(index, 'x'),
...createCss(index, 'y'),
});
}
addBase({
...addRawCss,
2021-02-21 17:56:23 +08:00
[`@keyframes enter-x-animation`]: {
to: {
opacity: '1',
transform: 'translateX(0)',
},
},
[`@keyframes enter-y-animation`]: {
to: {
opacity: '1',
transform: 'translateY(0)',
},
},
});
};
return { handler };
}