1# 组件可见区域变化事件 2 3组件可见区域变化事件是组件在屏幕中的显示区域面积变化时触发的事件,提供了判断组件是否完全或部分显示在屏幕中的能力,适用于广告曝光埋点之类的场景。 4 5> **说明:** 6> 7> 从API Version 9开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 8 9 10## 事件 11 12| 名称 | 功能描述 | 13| ---------------------------------------- | ---------------------------------------- | 14| onVisibleAreaChange(ratios: Array\<number>, event: (isVisible: boolean, currentRatio: number) => void) | 组件可见区域变化时触发该回调。<br/>-ratios:阈值数组。其中,每个阈值代表组件可见面积(即组件在屏幕显示区的面积)与组件自身面积的比值。当组件可见面积与自身面积的比值大于或小于阈值时,均会触发该回调。每个阈值的取值范围为[0.0, 1.0],如果开发者设置的阈值超出该范围,则会实际取值0.0或1.0.<br/>-isVisible:表示组件的可见面积与自身面积的比值是否大于阈值,true表示大于,false表示小于。<br/>-currentRatio:触发回调时,组件可见面积与自身面积的比值。 | 15 16 17## 示例 18 19```ts 20// xxx.ets 21@Entry 22@Component 23struct ScrollExample { 24 scroller: Scroller = new Scroller() 25 private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 26 @State testTextStr: string = 'test' 27 @State testRowStr: string = 'test' 28 29 build() { 30 Column() { 31 Column() { 32 Text(this.testTextStr) 33 .fontSize(20) 34 35 Text(this.testRowStr) 36 .fontSize(20) 37 } 38 .height(100) 39 .backgroundColor(Color.Gray) 40 .opacity(0.3) 41 42 Scroll(this.scroller) { 43 Column() { 44 Text("Test Text Visible Change") 45 .fontSize(20) 46 .height(200) 47 .margin({ top: 50, bottom: 20 }) 48 .backgroundColor(Color.Green) 49 // 通过设置ratios为[0.0, 1.0],实现当组件完全显示或完全消失在屏幕中时触发回调 50 .onVisibleAreaChange([0.0, 1.0], (isVisible: boolean, currentRatio: number) => { 51 console.info('Test Text isVisible: ' + isVisible + ', currentRatio:' + currentRatio) 52 if (isVisible && currentRatio >= 1.0) { 53 console.info('Test Text is fully visible. currentRatio:' + currentRatio) 54 this.testTextStr = 'Test Text is fully visible' 55 } 56 57 if (!isVisible && currentRatio <= 0.0) { 58 console.info('Test Text is completely invisible.') 59 this.testTextStr = 'Test Text is completely invisible' 60 } 61 }) 62 63 Row() { 64 Text('Test Row Visible Change') 65 .fontSize(20) 66 .margin({ bottom: 20 }) 67 68 } 69 .height(200) 70 .backgroundColor(Color.Yellow) 71 .onVisibleAreaChange([0.0, 1.0], (isVisible: boolean, currentRatio: number) => { 72 console.info('Test Row isVisible:' + isVisible + ', currentRatio:' + currentRatio) 73 if (isVisible && currentRatio >= 1.0) { 74 console.info('Test Row is fully visible.') 75 this.testRowStr = 'Test Row is fully visible' 76 } 77 78 if (!isVisible && currentRatio <= 0.0) { 79 console.info('Test Row is is completely invisible.') 80 this.testRowStr = 'Test Row is is completely invisible' 81 } 82 }) 83 84 ForEach(this.arr, (item) => { 85 Text(item.toString()) 86 .width('90%') 87 .height(150) 88 .backgroundColor(0xFFFFFF) 89 .borderRadius(15) 90 .fontSize(16) 91 .textAlign(TextAlign.Center) 92 .margin({ top: 10 }) 93 }, item => item) 94 95 }.width('100%') 96 } 97 .backgroundColor(0x317aff) 98 .scrollable(ScrollDirection.Vertical) 99 .scrollBar(BarState.On) 100 .scrollBarColor(Color.Gray) 101 .scrollBarWidth(10) 102 .onScroll((xOffset: number, yOffset: number) => { 103 console.info(xOffset + ' ' + yOffset) 104 }) 105 .onScrollEdge((side: Edge) => { 106 console.info('To the edge') 107 }) 108 .onScrollEnd(() => { 109 console.info('Scroll Stop') 110 }) 111 112 }.width('100%').height('100%').backgroundColor(0xDCDCDC) 113 } 114} 115``` 116 117![zh-cn_visible_area_change.gif](figures/zh-cn_visible_area_change.gif) 118