1# popup 2 3> **说明:** 4> 从API version 4开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 5 6气泡指示。给控件绑定气泡弹窗,并在点击控件或者调用气泡弹窗显示方法后弹出相应的气泡提示来引导用户进行操作。 7 8## 权限列表 9 10无 11 12 13## 子组件 14 15支持单个子组件节点<sup>5+</sup>。 16 17 18## 属性 19 20除支持[通用属性](../arkui-js/js-components-common-attributes.md)外,还支持如下属性: 21 22| 名称 | 类型 | 默认值 | 必填 | 描述 | 23| -------- | -------- | -------- | -------- | -------- | 24| target | string | - | 是 | popup绑定目标元素的id属性值,不支持动态切换。 | 25| placement | string | bottom | 否 | popup相对于目标元素的位置。可选值为:<br/>- left:位于目标元素左边;<br/>- right:位于目标元素右边;<br/>- top:位于目标元素上边;<br/>- bottom:位于目标元素下边;<br/>- topLeft:位于目标元素左上角;<br/>- topRight:位于目标元素右上角;<br/>- bottomLeft:位于目标元素左下角;<br/>- bottomRight:位于目标元素右下角。 | 26| keepalive<sup>5+</sup> | boolean | false | 否 | 设置当前popup是否需要保留。设置为true时,点击屏幕区域或者页面切换气泡不会消失,需调用气泡组件的hide方法才可让气泡消失;设置为false时,点击屏幕区域或者页面切换气泡会自动消失。 | 27| clickable<sup>5+</sup> | boolean | true | 否 | popup是否支持点击目标元素弹窗,当设置为false时,只支持方法调用显示弹窗。 | 28| arrowoffset<sup>5+</sup> | <length> | 0 | 否 | popup箭头在弹窗处的偏移,默认居中,正值按照语言方向进行偏移,负值相反。 | 29 30> **说明:** 31> 32> - 不支持focusable属性。 33 34 35## 样式 36 37除支持[通用样式](../arkui-js/js-components-common-styles.md)外,还支持如下样式: 38 39| 名称 | 类型 | 默认值 | 必填 | 描述 | 40| -------- | -------- | -------- | -------- | -------- | 41| mask-color | <color> | - | 否 | 遮罩层的颜色,默认值为全透明。 | 42 43> **说明:** 44> 45> - 不支持position相关样式。 46 47 48## 事件 49 50除支持[通用事件](../arkui-js/js-components-common-events.md)外,还支持如下事件: 51 52| 名称 | 参数 | 描述 | 53| -------- | -------- | -------- | 54| visibilitychange | { visibility: boolean } | 当气泡弹出和消失时会触发该回调函数。 | 55 56 57## 方法 58 59仅支持如下方法: 60 61| 名称 | 参数 | 描述 | 62| -------- | -------- | -------- | 63| show<sup>5+</sup> | - | 弹出气泡提示。 | 64| hide<sup>5+</sup> | - | 隐藏气泡提示。 | 65 66> **说明:** 67> 1. popup气泡弹窗属性、样式均不支持动态更新。 68> 69> 2. popup气泡弹窗的margin样式是相对于target元素进行生效的,如popup在target元素下方,此时只生效margin-top样式,popup在target元素左上方,此时只生效margin-bottom和margin-right样式。 70> 71> 3. popup的border四边样式需一致,若四边设置不一致且圆角为零,则按左、上、右、下的顺序取第一个被设置的样式,否则border不生效。 72> 73> 4. popup的target组件的click事件不生效。 74 75 76## 示例 77 78```html 79<!-- xxx.hml --> 80<div class="container"> 81 <text id="text">Click to show the pop-up</text> 82 <!-- popup supports single child of any type5+ --> 83 <popup id="popup" class="popup" target="text" placement="top" keepalive="true" clickable="true" 84 arrowoffset="100px" onvisibilitychange="visibilitychange" onclick="hidepopup"> 85 <text class="text">Text content of the pop-up</text> 86 </popup> 87 <button class="button" onclick="showpopup">Click to show the pop-up</button> 88</div> 89``` 90 91```css 92/* xxx.css */ 93.container { 94 flex-direction: column; 95 align-items: center; 96 padding-top: 200px; 97} 98.popup { 99 mask-color: gray; 100} 101.text { 102 color: white; 103} 104.button { 105 width: 220px; 106 height: 70px; 107 margin-top: 50px; 108} 109``` 110 111```js 112// xxx.js 113import promptAction from '@ohos.promptAction' 114export default { 115 visibilitychange(e) { 116 promptAction.showToast({ 117 message: 'visibility change visibility: ' + e.visibility, 118 duration: 3000 119 }); 120 }, 121 showpopup() { 122 this.$element("popup").show(); 123 }, 124 hidepopup() { 125 this.$element("popup").hide(); 126 } 127} 128``` 129 130![zh-cn_image_0000001178886129](figures/zh-cn_image_0000001178886129.png) 131