tencent cloud

Tencent Cloud Super App as a Service

Window

PDF
Focus Mode
Font Size
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



Help and Support

Was this page helpful?

Help us improve! Rate your documentation experience in 5 mins.

Feedback