指令转换器
UnoCSS 的 @apply、@screen 和 theme() 指令转换器:@unocss/transformer-directives。
安装
bash
pnpm add -D @unocss/transformer-directivesbash
yarn add -D @unocss/transformer-directivesbash
npm install -D @unocss/transformer-directivests
// uno.config.ts
import { defineConfig } from 'unocss'
import transformerDirectives from '@unocss/transformer-directives'
export default defineConfig({
// ...
transformers: [
transformerDirectives(),
],
})用法
@apply
css
.custom-div {
@apply text-center my-0 font-medium;
}将被转换为:
css
.custom-div {
margin-top: 0rem;
margin-bottom: 0rem;
text-align: center;
font-weight: 500;
}--at-apply
为了与原生 CSS 兼容,你可以使用 CSS 自定义属性替换 @apply 指令:
css
.custom-div {
--at-apply: text-center my-0 font-medium;
}此功能默认启用,并带有几个别名,你可以通过以下方式配置或禁用:
js
transformerDirectives({
// 默认值
applyVariable: ['--at-apply', '--uno-apply', '--uno'],
// 或禁用:
// applyVariable: false
})添加引号
要使用包含 : 的规则,你需要为整个值添加引号:
css
.custom-div {
--at-apply: "hover:text-red hover:font-bold";
/* 或 */
@apply 'hover:text-red hover:font-bold';
}在 @apply 后使用引号是可选的,以满足某些格式化程序的行为。
@screen
@screen 指令允许你创建引用断点名称的媒体查询,来自 theme.breakpoints。
css
.grid {
--uno: grid grid-cols-2;
}
@screen xs {
.grid {
--uno: grid-cols-1;
}
}
@screen sm {
.grid {
--uno: grid-cols-3;
}
}
/* ... */将被转换为:
css
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 320px) {
.grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (min-width: 640px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
/* ... */断点变体支持
@screen 还支持 lt、at 变体:
@screen lt-
css
.grid {
--uno: grid grid-cols-2;
}
@screen lt-xs {
.grid {
--uno: grid-cols-1;
}
}
@screen lt-sm {
.grid {
--uno: grid-cols-3;
}
}
/* ... */将被转换为:
css
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 319.9px) {
.grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (max-width: 639.9px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
/* ... */@screen at-
css
.grid {
--uno: grid grid-cols-2;
}
@screen at-xs {
.grid {
--uno: grid-cols-1;
}
}
@screen at-xl {
.grid {
--uno: grid-cols-3;
}
}
@screen at-xxl {
.grid {
--uno: grid-cols-4;
}
}
/* ... */将被转换为:
css
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 320px) and (max-width: 639.9px) {
.grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (min-width: 1280px) and (max-width: 1535.9px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (min-width: 1536px) {
.grid {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
/* ... */theme()
使用 theme() 函数通过点符号访问你的主题配置值。
css
.btn-blue {
background-color: theme('colors.blue.500');
}将被编译为:
css
.btn-blue {
background-color: #3b82f6;
}许可证
- MIT 许可证 © 2022-现在 hannoeru