Skip to content

Commit 6987591

Browse files
committed
feat: 修改文档
1 parent 0f3648b commit 6987591

File tree

1 file changed

+49
-4
lines changed

1 file changed

+49
-4
lines changed

README.md

+49-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,61 @@
22

33
## 简介
44

5-
解析 React 组件与对应的 CSS 文件,为每一个 React 节点计算样式最终样式,应用于 React Native 、鸿蒙等不支持 CSS 写法的场景,目前仅支持类名选择器。
5+
解析 React 组件与对应的 CSS 文件,为每一个 React 节点计算样式最终样式,应用于 React Native 、鸿蒙等不支持 CSS 写法的场景
66

77
## 使用方式
88

99
```typescript
1010
import { parse } from '@tarojs/parse-css-to-stylesheet'
1111

1212
// Harmony
13-
const code = parse(jsxCode, [cssCode1, cssCode2, ...], "Harmony")
14-
// ReactNative
15-
// const code = parse(jsxCode, [cssCode1, cssCode2, ...], "ReactNative")
13+
const code = parse(jsxCode, [cssCode1, cssCode2, ...], {
14+
platformString: 'Harmony',
15+
isEnableNesting: true // 支持生成嵌套选择器
16+
})
17+
```
18+
19+
## 支持选择器
20+
21+
#### 类选择器
22+
23+
```css
24+
.item {
25+
/* ... */
26+
}
27+
```
28+
29+
#### 后代组合器
30+
31+
```css
32+
.parent .child {
33+
/* ... */
34+
}
35+
```
36+
37+
#### 直接子代选择器
38+
39+
```css
40+
.parent > .child {
41+
/* ... */
42+
}
43+
```
44+
45+
#### 多类选择器
46+
47+
```css
48+
.child1.child2 {
49+
/* ... */
50+
}
51+
```
52+
53+
#### 伪类
1654

55+
```css
56+
.child1::before {
57+
/* ... */
58+
}
59+
.child1::after {
60+
/* ... */
61+
}
1762
```

0 commit comments

Comments
 (0)