Scroll lock #500
Answered
by
KingSora
MyNameTony1000
asked this question in
Q&A
Scroll lock
#500
-
Tell me - how best to block scrolling so that the page freezes in place on any device, when opening modal windows, for example, is there a separate function for this?) I would be very grateful |
Beta Was this translation helpful? Give feedback.
Answered by
KingSora
Feb 10, 2023
Replies: 1 comment 1 reply
-
Good day @MyNameTony1000 You can simply hide the overflow with |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
MyNameTony1000
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good day @MyNameTony1000
You can simply hide the overflow with
osInstance.options({ overflow: { x: 'hidden', y: 'hidden' })
if the modal is open, and set it back toscroll
as soon as it is closed again.