windi.config.ts 1.8 KB
Newer Older
V
Vben 已提交
1 2 3 4
import { defineConfig } from 'vite-plugin-windicss';
import { primaryColor } from './build/config/themeConfig';

export default defineConfig({
5
  darkMode: 'class',
6
  plugins: [createEnterPlugin()],
V
vben 已提交
7 8
  theme: {
    extend: {
9 10
      zIndex: {
        '-1': '-1',
11
      },
V
vben 已提交
12
      colors: {
V
Vben 已提交
13
        primary: primaryColor,
V
vben 已提交
14 15 16 17 18 19 20
      },
      screens: {
        sm: '576px',
        md: '768px',
        lg: '992px',
        xl: '1200px',
        '2xl': '1600px',
21
      },
22
    },
V
vben 已提交
23
  },
V
Vben 已提交
24 25
});

V
vben 已提交
26
/**
V
vben 已提交
27 28
 * Used for animation when the element is displayed.
 * @param maxOutput The larger the maxOutput output, the larger the generated css volume.
V
vben 已提交
29
 */
V
vben 已提交
30
function createEnterPlugin(maxOutput = 6) {
V
Vben 已提交
31
  const createCss = (index: number, d = 'x') => {
V
vben 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
    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 }) => {
V
Vben 已提交
50
    const addRawCss = {};
V
vben 已提交
51
    for (let index = 1; index < maxOutput; index++) {
V
Vben 已提交
52
      Object.assign(addRawCss, {
V
vben 已提交
53 54 55 56 57
        ...createCss(index, 'x'),
        ...createCss(index, 'y'),
      });
    }
    addBase({
V
Vben 已提交
58
      ...addRawCss,
V
vben 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
      [`@keyframes enter-x-animation`]: {
        to: {
          opacity: '1',
          transform: 'translateX(0)',
        },
      },
      [`@keyframes enter-y-animation`]: {
        to: {
          opacity: '1',
          transform: 'translateY(0)',
        },
      },
    });
  };
  return { handler };
}