ts-pixel-units.md 3.3 KB
Newer Older
Z
zengyawen 已提交
1 2 3 4 5
# 像素单位

为开发者提供4种像素单位,框架采用vp为基准数据单位。


H
HelloCrease 已提交
6 7 8 9 10 11
| 名称   | 描述                                       |
| ---- | ---------------------------------------- |
| px   | 屏幕物理像素单位。                                |
| vp   | 屏幕密度相关像素,根据屏幕像素密度转换为屏幕物理像素。              |
| fp   | 字体像素,与vp类似适用屏幕密度变化,随系统字体大小设置变化。          |
| lpx  | 视窗逻辑像素单位,lpx单位为实际屏幕宽度与逻辑宽度(通过[designWidth](../ui/ts-framework-js-tag.md)配置)的比值。如配置designWidth为720时,在实际宽度为1440物理像素的屏幕上,1lpx为2px大小。 |
Z
zengyawen 已提交
12 13 14 15 16 17


## 像素单位转换

提供其他单位与px单位互相转换的方法。

H
HelloCrease 已提交
18 19 20 21 22 23
| 接口                                       | 描述                     |
| ---------------------------------------- | ---------------------- |
| vp2px(value : number) : number | 将vp单位的数值转换为以px为单位的数值。  |
| px2vp(value : number) : number | 将px单位的数值转换为以vp为单位的数值。  |
| fp2px(value : number) : number | 将fp单位的数值转换为以px为单位的数值。  |
| px2fp(value : number) : number | 将px单位的数值转换为以fp为单位的数值。  |
Z
zengyawen 已提交
24 25 26 27 28 29
| lpx2px(value : number) : number | 将lpx单位的数值转换为以px为单位的数值。 |
| px2lpx(value : number) : number | 将px单位的数值转换为以lpx为单位的数值。 |


## 示例

H
HelloCrease 已提交
30 31
```ts
// xxx.ets
Z
zengyawen 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
@Entry
@Component
struct Example {
  build() {
    Column() {
      Flex({ wrap: FlexWrap.Wrap }) {
        Column() {
          Text("width(220)")
            .width(220).height(40).backgroundColor(0xF9CF93)
            .textAlign(TextAlign.Center).fontColor(Color.White).fontSize('12vp')
        }.margin(5)
        Column() {
          Text("width('220px')")
            .width('220px').height(40).backgroundColor(0xF9CF93)
            .textAlign(TextAlign.Center).fontColor(Color.White)
        }.margin(5)
        Column() {
          Text("width('220vp')")
            .width('220vp').height(40).backgroundColor(0xF9CF93)
            .textAlign(TextAlign.Center).fontColor(Color.White).fontSize('12vp')
        }.margin(5)
        Column() {
          Text("width('220lpx') designWidth:720")
            .width('220lpx').height(40).backgroundColor(0xF9CF93)
            .textAlign(TextAlign.Center).fontColor(Color.White).fontSize('12vp')
        }.margin(5)
        Column() {
          Text("width(vp2px(220) + 'px')")
            .width(vp2px(220) + 'px').height(40).backgroundColor(0xF9CF93)
            .textAlign(TextAlign.Center).fontColor(Color.White).fontSize('12vp')
        }.margin(5)
        Column() {
          Text("fontSize('12fp')")
            .width(220).height(40).backgroundColor(0xF9CF93)
            .textAlign(TextAlign.Center).fontColor(Color.White).fontSize('12fp')
        }.margin(5)
      }.width('100%')
    }
  }
}
```

![zh-cn_image_0000001169582302](figures/zh-cn_image_0000001169582302.gif)
75 76 77 78 79 80 81


## 相关实例

基于像素转换,有以下相关实例可供参考:

- [像素转换(eTS)(API9)](https://gitee.com/openharmony/codelabs/tree/master/ETSUI/PixelUnitsDemo)