tencent cloud

Last updated: 2025-02-24 17:10:35
Window
Last updated: 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


Was this page helpful?
You can also Contact Sales or Submit a Ticket for help.
Yes
No

Feedback