|
|
@ -1,10 +1,36 @@ |
|
|
|
import { defineConfig, presetAttributify, presetMini, presetUno } from 'unocss' |
|
|
|
import { defineConfig, presetAttributify, presetMini, presetUno } from 'unocss' |
|
|
|
import transformerDirectives from '@unocss/transformer-directives' |
|
|
|
import transformerDirectives from '@unocss/transformer-directives' |
|
|
|
|
|
|
|
import presetWind from '@unocss/preset-wind' |
|
|
|
import { primaryColor } from './build/config/themeConfig' |
|
|
|
import { primaryColor } from './build/config/themeConfig' |
|
|
|
|
|
|
|
|
|
|
|
export default defineConfig({ |
|
|
|
export default defineConfig({ |
|
|
|
exclude: ['node_modules', 'dist', '.git', '.husky', '.vscode', 'public', 'build'], |
|
|
|
exclude: ['node_modules', 'dist', '.git', '.husky', '.vscode', 'public', 'build'], |
|
|
|
presets: [presetMini({ dark: 'class' }), presetAttributify(), presetUno()], |
|
|
|
presets: [ |
|
|
|
|
|
|
|
presetMini({ dark: 'class' }), |
|
|
|
|
|
|
|
presetAttributify(), |
|
|
|
|
|
|
|
presetUno(), |
|
|
|
|
|
|
|
presetWind({ |
|
|
|
|
|
|
|
darkMode: 'class', |
|
|
|
|
|
|
|
plugins: [createEnterPlugin()], |
|
|
|
|
|
|
|
theme: { |
|
|
|
|
|
|
|
extend: { |
|
|
|
|
|
|
|
zIndex: { |
|
|
|
|
|
|
|
'-1': '-1' |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
colors: { |
|
|
|
|
|
|
|
primary: primaryColor |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
screens: { |
|
|
|
|
|
|
|
sm: '576px', |
|
|
|
|
|
|
|
md: '768px', |
|
|
|
|
|
|
|
lg: '992px', |
|
|
|
|
|
|
|
xl: '1200px', |
|
|
|
|
|
|
|
'2xl': '1600px' |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
], |
|
|
|
transformers: [transformerDirectives()], |
|
|
|
transformers: [transformerDirectives()], |
|
|
|
theme: { |
|
|
|
theme: { |
|
|
|
extend: { |
|
|
|
extend: { |
|
|
@ -29,48 +55,48 @@ export default defineConfig({ |
|
|
|
* Used for animation when the element is displayed. |
|
|
|
* Used for animation when the element is displayed. |
|
|
|
* @param maxOutput The larger the maxOutput output, the larger the generated css volume. |
|
|
|
* @param maxOutput The larger the maxOutput output, the larger the generated css volume. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
// function createEnterPlugin(maxOutput = 6) {
|
|
|
|
function createEnterPlugin(maxOutput = 6) { |
|
|
|
// const createCss = (index: number, d = 'x') => {
|
|
|
|
const createCss = (index: number, d = 'x') => { |
|
|
|
// const upd = d.toUpperCase()
|
|
|
|
const upd = d.toUpperCase() |
|
|
|
// return {
|
|
|
|
return { |
|
|
|
// [`*> .enter-${d}:nth-child(${index})`]: {
|
|
|
|
[`*> .enter-${d}:nth-child(${index})`]: { |
|
|
|
// transform: `translate${upd}(50px)`
|
|
|
|
transform: `translate${upd}(50px)` |
|
|
|
// },
|
|
|
|
}, |
|
|
|
// [`*> .-enter-${d}:nth-child(${index})`]: {
|
|
|
|
[`*> .-enter-${d}:nth-child(${index})`]: { |
|
|
|
// transform: `translate${upd}(-50px)`
|
|
|
|
transform: `translate${upd}(-50px)` |
|
|
|
// },
|
|
|
|
}, |
|
|
|
// [`* > .enter-${d}:nth-child(${index}),* > .-enter-${d}:nth-child(${index})`]: {
|
|
|
|
[`* > .enter-${d}:nth-child(${index}),* > .-enter-${d}:nth-child(${index})`]: { |
|
|
|
// 'z-index': `${10 - index}`,
|
|
|
|
'z-index': `${10 - index}`, |
|
|
|
// opacity: '0',
|
|
|
|
opacity: '0', |
|
|
|
// animation: `enter-${d}-animation 0.4s ease-in-out 0.3s`,
|
|
|
|
animation: `enter-${d}-animation 0.4s ease-in-out 0.3s`, |
|
|
|
// 'animation-fill-mode': 'forwards',
|
|
|
|
'animation-fill-mode': 'forwards', |
|
|
|
// 'animation-delay': `${(index * 1) / 10}s`
|
|
|
|
'animation-delay': `${(index * 1) / 10}s` |
|
|
|
// }
|
|
|
|
} |
|
|
|
// }
|
|
|
|
} |
|
|
|
// }
|
|
|
|
} |
|
|
|
// const handler = ({ addBase }) => {
|
|
|
|
const handler = ({ addBase }) => { |
|
|
|
// const addRawCss = {}
|
|
|
|
const addRawCss = {} |
|
|
|
// for (let index = 1; index < maxOutput; index++) {
|
|
|
|
for (let index = 1; index < maxOutput; index++) { |
|
|
|
// Object.assign(addRawCss, {
|
|
|
|
Object.assign(addRawCss, { |
|
|
|
// ...createCss(index, 'x'),
|
|
|
|
...createCss(index, 'x'), |
|
|
|
// ...createCss(index, 'y')
|
|
|
|
...createCss(index, 'y') |
|
|
|
// })
|
|
|
|
}) |
|
|
|
// }
|
|
|
|
} |
|
|
|
// addBase({
|
|
|
|
addBase({ |
|
|
|
// ...addRawCss,
|
|
|
|
...addRawCss, |
|
|
|
// [`@keyframes enter-x-animation`]: {
|
|
|
|
[`@keyframes enter-x-animation`]: { |
|
|
|
// to: {
|
|
|
|
to: { |
|
|
|
// opacity: '1',
|
|
|
|
opacity: '1', |
|
|
|
// transform: 'translateX(0)'
|
|
|
|
transform: 'translateX(0)' |
|
|
|
// }
|
|
|
|
} |
|
|
|
// },
|
|
|
|
}, |
|
|
|
// [`@keyframes enter-y-animation`]: {
|
|
|
|
[`@keyframes enter-y-animation`]: { |
|
|
|
// to: {
|
|
|
|
to: { |
|
|
|
// opacity: '1',
|
|
|
|
opacity: '1', |
|
|
|
// transform: 'translateY(0)'
|
|
|
|
transform: 'translateY(0)' |
|
|
|
// }
|
|
|
|
} |
|
|
|
// }
|
|
|
|
} |
|
|
|
// })
|
|
|
|
}) |
|
|
|
// }
|
|
|
|
} |
|
|
|
// return { handler }
|
|
|
|
return { handler } |
|
|
|
// }
|
|
|
|
} |
|
|
|