ui-js-components-menu.md 5.8 KB
Newer Older
H
HelloCrease 已提交
1
# menu开发指导
H
HelloCrease 已提交
2 3


H
HelloCrease 已提交
4
提供菜单组件,作为临时性弹出窗口,用于展示用户可执行的操作,具体用法请参考[menu](../reference/arkui-js/js-components-basic-menu.md)
H
HelloCrease 已提交
5 6


H
HelloCrease 已提交
7
## 创建menu组件
H
HelloCrease 已提交
8

H
HelloCrease 已提交
9
在pages/index目录下的hml文件中创建一个menu组件,添加target、type、title属性。
H
HelloCrease 已提交
10 11


H
HelloCrease 已提交
12
```html
H
HelloCrease 已提交
13 14 15 16 17 18 19 20 21 22 23 24
<!-- xxx.hml-->
<div class="container">
  <text class="title-text" id="textId">show menu</text>
  <menu target="textId" type="click" title="title">
    <option value="Item 1">Item 1</option>
    <option value="Item 2">Item 2</option>
    <option value="Item 3">Item 3</option>
  </menu>
</div>
```


H
HelloCrease 已提交
25
```css
H
HelloCrease 已提交
26 27
/* xxx.css */
.container{
W
wangshuainan1 已提交
28 29
  width: 100%;
  height: 100%; 
H
HelloCrease 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42
  flex-direction: column;
  background-color: #F1F3F5;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.title-text{
  font-size: 35px;
}
```

![zh-cn_image_0000001226815299](figures/zh-cn_image_0000001226815299.gif)

H
HelloCrease 已提交
43 44 45 46
> **说明:**
> - menu仅支持[option](../reference/arkui-js/js-components-basic-option.md)子组件。
>
> - menu组件不支持focusable、disabled属性。
H
HelloCrease 已提交
47 48 49 50 51 52 53


## 设置样式

为menu组件设置样式,例如字体颜色、大小、字符间距等。


H
HelloCrease 已提交
54
```html
H
HelloCrease 已提交
55 56 57 58 59 60 61 62 63 64 65 66
<!-- xxx.hml-->
<div class="container">
  <text class="title-text" id="textId">show menu</text>
  <menu target="textId" type="click" title="title">
    <option value="Item 1">Item 1</option>
    <option value="Item 2">Item 2</option>
    <option value="Item 3">Item 3</option>
  </menu>
</div>
```


H
HelloCrease 已提交
67
```css
H
HelloCrease 已提交
68 69
/* xxx.css */
.container{
W
wangshuainan1 已提交
70 71
  width: 100%;
  height: 100%; 
H
HelloCrease 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
  flex-direction: column;
  background-color: #F1F3F5;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.title-text{
  font-size: 35px;
  background-color: #5a5aee;
  color: white;
  width: 70%;
  text-align: center;
  height: 85px;
  border-radius: 12px;
}
menu{
  text-color: blue;
  font-size: 35px;
  letter-spacing: 2px;
}
option{
  color: #6a6aef;
  font-size: 30px;
}
```

![zh-cn_image_0000001181337170](figures/zh-cn_image_0000001181337170.gif)


## 绑定事件

为menu组件绑定onselected事件(菜单中某个值被点击选中时触发)和oncancel事件(取消操作时触发),点击text组件调用show方法可设置menu组件的坐标。


H
HelloCrease 已提交
106
```html
H
HelloCrease 已提交
107 108 109 110 111 112 113 114 115 116 117 118
<!-- xxx.hml-->
<div class="container">
  <text  class="title-text" id="textId" onclick="textClick">show menu</text>
  <menu  title="title" onselected="select" oncancel="cancel" id="menuId">
    <option value="Item 1">Item 1</option>
    <option value="Item 2">Item 2</option>
    <option value="Item 3">Item 3</option>
  </menu>
</div>
```


H
HelloCrease 已提交
119
```css
H
HelloCrease 已提交
120 121
/* xxx.css */
.container{
W
wangshuainan1 已提交
122 123
  width: 100%;
  height: 100%;
H
HelloCrease 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
  flex-direction: column;
  background-color: #F1F3F5;
  width: 100%;
}
.title-text{
  font-size: 35px;
  background-color: #5a5aee;
  color: white;
  width: 70%;
  text-align: center;
  height: 85px;
  border-radius: 12px;
  margin-top: 500px;
  margin-left: 15%;
}
menu{
  text-color: blue;
  font-size: 35px;
  letter-spacing: 2px;
}
option{
  color: #6a6aef;
  font-size: 30px;
}
```


H
HelloCrease 已提交
151 152
```js
// xxx.js
H
HelloCrease 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
import prompt from '@system.prompt';
export default {
  select(e) {
    prompt.showToast({
      message: e.value
    })
  },
  cancel(){
    prompt.showToast({
      message: "cancel"
    })
  },
  textClick() {
    this.$element("menuId").show({x:175,y:590});
  },
}
```

![zh-cn_image_0000001181495744](figures/zh-cn_image_0000001181495744.gif)


## 场景示例

本场景中开发者可点击toggle组件修改文字颜色,选择menu组件修改渐变色块大小。


H
HelloCrease 已提交
179
```html
H
HelloCrease 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
<!-- xxx.hml-->
<div class="container">
  <div class="contentToggle">
    <toggle class="toggle" for="{{item in togglesList}}" onclick="toggleClick({{$idx}})" checked="{{item.checked}}">{{item.name}}</toggle>
  </div>
  <text class="size" style="color: {{color}};">width:{{width}},height:{{height}}</text>
  <div style="width: {{width}}'px';height: {{height}}px;background:linear-gradient(to right,#FF0000,#0000FF);"></div>
  <text id="menuId" class="text">change size</text>
  <menu onselected="select" oncancel="cancel" target="menuId">
    <option value="{{item.value}}" for="item in optionList">{{item.text}}</option>
  </menu>
</div>
```


H
HelloCrease 已提交
195
```css
H
HelloCrease 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
/* xxx.css */
.container{
  flex-direction: column;
  background-color: #F1F3F5;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.contentToggle{
  width: 100%;
  justify-content: space-around;
}
.toggle{
  padding: 10px;
  height:80px;
  font-size: 35px;
  width: 200px;
  height: 85px;
}
.size{
  width: 100%;
  height: 200px;
  text-align: center;
  font-size: 40px;
  text-align: center;
}
.text{
  width: 300px;
  height: 80px;
  background-color: #615def;
  color: white;
  font-size: 35px;
  text-align: center;
  margin-top: 100px;
}
menu{
  text-color: blue;
  font-size: 35px;
  letter-spacing: 2px;
}
option{
  color: #6a6aef;
  font-size: 30px;
}
```


H
HelloCrease 已提交
243 244
```js
// xxx.js
H
HelloCrease 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
import prompt from '@system.prompt';
export default {
  data:{
    fresh: false,
    width: 200,
    height: 200,
    color: '',
    optionList:[
      {text:'200 x 200',value:2},
      {text:'300 x 300',value:3},
      {text:'500 x 500',value:5},
    ],
    togglesList:[
      {name:"red", checked:false},
      {name:"blue", checked:false},
      {name: "black", checked:false},
    ],
  },
W
wangshuainan1 已提交
263 264 265
  toggleClick(index) {   
    for(let i=0;i<this.togglesList.length;i++) {     
      if (i == index) {        
W
wangshuainan1 已提交
266 267
      this.color = this.togglesList[index].name;        
      this.togglesList[i].checked = true;      
W
wangshuainan1 已提交
268
      }else {        
W
wangshuainan1 已提交
269 270 271 272
        this.togglesList[i].checked = false;      
      }    
    }  
  },
H
HelloCrease 已提交
273 274 275 276 277 278 279 280
  select(e) {
    this.width = e.value * 100;
    this.height = e.value * 100;
  }
}
```

![zh-cn_image_0000001226815403](figures/zh-cn_image_0000001226815403.gif)
281 282 283

## 相关实例

H
HelloCrease 已提交
284
针对menu开发,有以下相关实例可供参考:
285

286
- [`JSMenu`:菜单(JS)(API8)](https://gitee.com/openharmony/app_samples/tree/master/UI/JSMenu)