Skip to content

doc: GridItem 的 h 属性说明 #701

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: GridItem 的 h 属性说明
描述了实际显示高度和其它属性配置之间的关系
指出 高度系数 h 在使用小数倍数时会出现的问题,并更改其值描述
  • Loading branch information
LiMuhua authored Aug 23, 2022
commit 4e765f10a9f9c4251ff1515b2c9ee39665cd7758
5 changes: 4 additions & 1 deletion website/docs/zh/guide/properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@
* type: `Number`
* required: `true`

标识栅格元素的初始高度,值为`rowHeight`的倍数。
标识栅格元素的初始高度,值为`rowHeight`的自然倍数。
不要使用小数,能正常初始化但同列的其它元素会在拖动时因垂直位移计算不准确而产生错位。
实际显示高度(showHeight)和`h`、`rowHeight`、`margin`的关系表现为:
showHeight = (margin[1] + rowHeight) * h - margin[1]; (margin[1] 表示垂直边距)

### minW

Expand Down