codecamp

组件可见区域变化事件

组件可见区域变化事件是组件在屏幕中的显示区域面积变化时触发的事件,提供了判断组件是否完全或部分显示在屏幕中的能力,适用于广告曝光埋点之类的场景。

说明

从API Version 9开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

事件

名称

功能描述

onVisibleAreaChange(ratios: Array<number>, event: (isVisible: boolean, currentRatio: number) => void)

组件可见区域变化时触发该回调。

-ratios:阈值数组。其中,每个阈值代表组件可见面积(即组件在屏幕显示区的面积)与组件自身面积的比值。当组件可见面积与自身面积的比值大于或小于阈值时,均会触发该回调。每个阈值的取值范围为[0.0, 1.0],如果开发者设置的阈值超出该范围,则会实际取值0.0或1.0.

-isVisible:表示组件的可见面积与自身面积的比值是否大于阈值,true表示大于,false表示小于。

-currentRatio:触发回调时,组件可见面积与自身面积的比值。

说明:

该接口只适用于组件布局区域超出或离开了当前屏幕显示区域的情况,不支持组件堆叠(Stack)导致的面积不可见、使用offset或translate等图形变换接口导致的面积超出情况。

示例

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ScrollExample {
  5. scroller: Scroller = new Scroller()
  6. private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  7. @State testTextStr: string = 'test'
  8. @State testRowStr: string = 'test'
  9. build() {
  10. Column() {
  11. Column() {
  12. Text(this.testTextStr)
  13. .fontSize(20)
  14. Text(this.testRowStr)
  15. .fontSize(20)
  16. }
  17. .height(100)
  18. .backgroundColor(Color.Gray)
  19. .opacity(0.3)
  20. Scroll(this.scroller) {
  21. Column() {
  22. Text("Test Text Visible Change")
  23. .fontSize(20)
  24. .height(200)
  25. .margin({ top: 50, bottom: 20 })
  26. .backgroundColor(Color.Green)
  27. // 通过设置ratios为[0.0, 1.0],实现当组件完全显示或完全消失在屏幕中时触发回调
  28. .onVisibleAreaChange([0.0, 1.0], (isVisible: boolean, currentRatio: number) => {
  29. console.info('Test Text isVisible: ' + isVisible + ', currentRatio:' + currentRatio)
  30. if (isVisible && currentRatio >= 1.0) {
  31. console.info('Test Text is fully visible. currentRatio:' + currentRatio)
  32. this.testTextStr = 'Test Text is fully visible'
  33. }
  34. if (!isVisible && currentRatio <= 0.0) {
  35. console.info('Test Text is completely invisible.')
  36. this.testTextStr = 'Test Text is completely invisible'
  37. }
  38. })
  39. Row() {
  40. Text('Test Row Visible Change')
  41. .fontSize(20)
  42. .margin({ bottom: 20 })
  43. }
  44. .height(200)
  45. .backgroundColor(Color.Yellow)
  46. .onVisibleAreaChange([0.0, 1.0], (isVisible: boolean, currentRatio: number) => {
  47. console.info('Test Row isVisible:' + isVisible + ', currentRatio:' + currentRatio)
  48. if (isVisible && currentRatio >= 1.0) {
  49. console.info('Test Row is fully visible.')
  50. this.testRowStr = 'Test Row is fully visible'
  51. }
  52. if (!isVisible && currentRatio <= 0.0) {
  53. console.info('Test Row is is completely invisible.')
  54. this.testRowStr = 'Test Row is is completely invisible'
  55. }
  56. })
  57. ForEach(this.arr, (item) => {
  58. Text(item.toString())
  59. .width('90%')
  60. .height(150)
  61. .backgroundColor(0xFFFFFF)
  62. .borderRadius(15)
  63. .fontSize(16)
  64. .textAlign(TextAlign.Center)
  65. .margin({ top: 10 })
  66. }, item => item)
  67. }.width('100%')
  68. }
  69. .backgroundColor(0x317aff)
  70. .scrollable(ScrollDirection.Vertical)
  71. .scrollBar(BarState.On)
  72. .scrollBarColor(Color.Gray)
  73. .scrollBarWidth(10)
  74. .onScroll((xOffset: number, yOffset: number) => {
  75. console.info(xOffset + ' ' + yOffset)
  76. })
  77. .onScrollEdge((side: Edge) => {
  78. console.info('To the edge')
  79. })
  80. .onScrollEnd(() => {
  81. console.info('Scroll Stop')
  82. })
  83. }.width('100%').height('100%').backgroundColor(0xDCDCDC)
  84. }
  85. }

组件区域变化事件
尺寸设置
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

媒体组件

像素

枚举

类型

接口

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }