代码拉取完成,页面将自动刷新
同步操作将从 Shaohqfspace/PublicVue3ElePlusAdmin 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import { defineConfig } from 'vite-plugin-windicss';
import colors from 'windicss/colors';
import typography from 'windicss/plugin/typography';
export default defineConfig({
safelist: ['prose', 'prose-sm', 'm-auto'],
darkMode: 'class',
plugins: [typography,EnterStylePlugin()],
theme: {
extend: {
colors: {
teals: colors.teal,
},
}
}
})
// windi 动画插件
function EnterStylePlugin(maxNum=8){
const createCss = (index:number,type='y',direction='r')=>{
const upd = type.toUpperCase();
const lrd = direction;
return {
[`*> .enter-${type}:nth-child(${index})`]:{
transform:`translate${upd}(50px)`,
'z-index': `${10 - index}`,
opacity: '0',
animation: `enter-${type}-animation 0.4s ease-in-out 0.3s`,
'animation-fill-mode': 'forwards',
'animation-delay': `${(index * 1) / 10}s`,
},
[`*> .enter-${type}-${direction}:nth-child(${index})`]:{
transform:`translate${upd}(${lrd=='r'?'50px':'-50px'})`,
'z-index': `${10 - index}`,
opacity: '0',
animation: `enter-${type}-animation 0.4s ease-in-out 0.3s`,
'animation-fill-mode': 'forwards',
'animation-delay': `${(index * 1) / 10}s`,
}
}
}
// 自定义插件必须存在一个handler的入口函数
// 当前api enter-x-r/enter-x-l/enter-y(enter-y-r)
const handler = ({addBase})=>{
// handler 参数中会存在两个拓展参数addBase(可以通过此属性进行添加自定义函数), theme(可以在默认主题中提取样式)
const addRawCss = {};
for(let n = 0;n<maxNum;n++){
Object.assign(addRawCss,{
...createCss(n,'x','r'),
...createCss(n,'x','l'),
...createCss(n,'y','r'),
...createCss(n,'y','l')
})
}
addBase({
...addRawCss,
[`@keyframes enter-x-animation`]: {
to: {
opacity: '1',
transform: 'translateX(0)',
},
},
[`@keyframes enter-y-animation`]: {
to: {
opacity: '1',
transform: 'translateY(0)',
},
},
});
}
return {handler};
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。