ui-js-building-ui-layout-image.md 625 字节
Newer Older
Z
zengyawen 已提交
1
# 添加图片区域
M
mamingshuai 已提交
2

Z
zengyawen 已提交
3
添加图片区域通常用[image](../reference/arkui-js/js-components-basic-image.md)组件来实现,使用的方法和text组件类似。
M
mamingshuai 已提交
4

Z
zengyawen 已提交
5

Z
zengyawen 已提交
6

7
图片资源建议放在js\default\common目录下,common目录需自行创建,详细的目录结构见[目录结构](../ui/js-framework-file.md#目录结构)。代码示例如下:
Z
zengyawen 已提交
8

M
mamingshuai 已提交
9

H
HelloCrease 已提交
10
```html
M
mamingshuai 已提交
11 12 13 14
<!-- xxx.hml -->
<image class="img" src="{{middleImage}}"></image>
```

Z
zengyawen 已提交
15

H
HelloCrease 已提交
16
```css
M
mamingshuai 已提交
17 18 19 20 21 22 23 24
/* xxx.css */
.img {  
  margin-top: 30px;
  margin-bottom: 30px;
  height: 385px;
}
```

Z
zengyawen 已提交
25

H
HelloCrease 已提交
26
```js
M
mamingshuai 已提交
27 28 29 30 31 32 33
// xxx.js
export default {
  data: {
    middleImage: '/common/ice.png',
  },
}
```