代码拉取完成,页面将自动刷新
const plugin = require('tailwindcss/plugin');
const spacing = 0.25;
const unit = 'rem';
const space = time => `${time * spacing}${unit}`;
module.exports = {
content: ['./src/index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
spacing: {
42: space(42),
78: space(78),
115: space(115),
},
boxShadow: {
mdd: '0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1)',
},
},
trans: {
DEFAULT: '0.2s',
'04': '0.4s',
'07': '0.7s',
2: '2s',
},
},
plugins: [
plugin(({ addUtilities, matchUtilities, theme }) => {
addUtilities({
// inblock=inline-block + 顶部对齐
'.inblock': {
display: 'inline-block',
verticalAlign: 'top'
},
// 文本溢出省略号
'.elli': {
overflow: 'hidden',
whiteSpace: 'nowrap',
textOverflow: 'ellipsis'
},
});
// 动画延迟
matchUtilities(
{
trans: duration => ({
transitionProperty: 'all',
transitionDuration: duration,
transform: 'translateZ(0)',
}),
},
{ values: theme('trans') }
);
}),
],
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。