tencent cloud

Tencent Cloud Super App as a Service

문서Tencent Cloud Super App as a Service

Window

다운로드
포커스 모드
폰트 크기
마지막 업데이트 시간: 2025-02-24 17:10:35

onWindowResize

This API is called using wx.onWindowResize(function listener).
Notes:
This API is supported in mini programs but not in mini games.
Feature description:Listens for window size change event.
Parameter and description:function listener. listener for window size change event.
Property
Type
size
Object
size object property
Property
Type
Description
windowWidth
number
The new window width in pixels.
windowHeight
number
The new window height in pixels.

offWindowResize

The API is called using wx.offWindowResize(function listener).
Notes:
This API is supported in mini programs but not in mini games.
Feature description:Removes the listener for the window size change event.
Parameter and description:function listener. The listener that was passed to onWindowResize. If not provided, all listeners will be removed.
const listener = function (res) { console.log(res) }

wx.onWindowResize(listener)
wx.offWindowResize(listener) // Must pass the same function object used in wx.onWindowResize



도움말 및 지원

문제 해결에 도움이 되었나요?

피드백