html - Disable scrolling. Overflow:hidden not working - Stack Overflow
i need help figuring out how to disable scrolling when vue easy lightbox is open. nothing ive tried works.
overflow: hidden doesnt work i have tried adding :scrollDisabled="true" . still no luck
i have asked chatgpt , it reccomended creating a watcher on the lightbox, that also didnt work.
Any help would be greatly appreciated
<template>
<div class="container">
<button @click="toggleScrollLock">
{{ isScrollLocked ? 'Unlock Scroll' : 'Lock Scroll' }}
</button>
<p>Scroll down to test. When locked, the page shouldn’t scroll.</p>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
const isScrollLocked = ref(false)
function toggleScrollLock() {
isScrollLocked.value = !isScrollLocked.value
if (isScrollLocked.value) {
document.body.style.overflow = 'hidden'
} else {
document.body.style.overflow = ''
}
}
</script>
<style scoped>
.container {
/* Make the page tall so we can easily see scroll locking. */
height: 2000px;
background-color: #fafafa;
padding: 20px;
font-family: sans-serif;
}
button {
margin: 20px;
padding: 10px 15px;
cursor: pointer;
}
</style>
最新文章
- 向iPhone学习:谷歌计划改进Android后台管理机制
- 安卓上市11年 为何说iPhone用户也要感谢它
- 外媒称谷歌正筹划自主开发安卓手机
- 仅售74美元的Android迷你电脑:你会买吗?
- 评论:Android - 谷歌的一剂药-搜狐滚动
- amazon ec2 - Flask Babel inconsistent language switching in production - Stack Overflow
- soa - How to use a variable in a composite or wsdl, as I need to have this variable per environment? - Stack Overflow
- How do you use partitions in Music Player Daemon (MPD) - Stack Overflow
- oracle sqldeveloper - SQL Workshop in Apex cannot run more statements at once - Stack Overflow
- javascript - Mapping through these JSON elements - Stack Overflow
- segmentation fault - PHP-FPM sub-process dead with signal 11 when I submit a edit in MediaWiki - Stack Overflow
- python - How to display only the tags translated into the corresponding language on a multilingual site? - Stack Overflow
- react native - Views are still shifted when the keyboard opens, even though they are not wrapped in a KeyboardAvoidingView - Sta
- Symfony 7 - Autocomplete form field - Stack Overflow
- imagemagick - How to add annotations in Right-To-Left (RTL) languages (like Arabic and Persian) to images using R's magi
- python - Newton raphson fails to approximate beyond two decimal points - Stack Overflow
- python - preprocessing strategies for OCR (pytesseract) character recognition - Stack Overflow