当 MUI 模式处于活动状态时启用滚动 React

发布于 2025-01-19 09:16:39 字数 847 浏览 0 评论 0原文

我有一个非常简单的组件,使用MUI模态

const Contact = ({ open, handleClose }) => {
  return (
    <div>
      <Modal
        aria-labelledby="transition-modal-title"
        aria-describedby="transition-modal-description"
        open={open}
        onClose={handleClose}
        closeAfterTransition
        BackdropComponent={Backdrop}
        BackdropProps={{
          timeout: 500,
        }}
      >
        <Fade in={open}>
          <Box sx={contactModalStyle}>
            <div className='Contact'>
              <h2>contact today</h2>
            </div>
          </Box>
        </Fade>
      </Modal>
    </div>
  );
}

export default Contact;

当模态处于活动状态时,默认情况下,该页面的滚动被禁用,MUI是否提供任何道具来启用模态活动时滚动页面滚动?假设页面具有在模态处于活动状态时继续垂直滚动所需的高度尺寸

I have quite a simple component using MUI Modal

const Contact = ({ open, handleClose }) => {
  return (
    <div>
      <Modal
        aria-labelledby="transition-modal-title"
        aria-describedby="transition-modal-description"
        open={open}
        onClose={handleClose}
        closeAfterTransition
        BackdropComponent={Backdrop}
        BackdropProps={{
          timeout: 500,
        }}
      >
        <Fade in={open}>
          <Box sx={contactModalStyle}>
            <div className='Contact'>
              <h2>contact today</h2>
            </div>
          </Box>
        </Fade>
      </Modal>
    </div>
  );
}

export default Contact;

When the modal is active the scrolling of the page is disabled by default, does MUI provide any props to enable scrolling of the page while the Modal is active? Assuming the page has the height dimensions required to continue scrolling vertically while the modal is active

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬 2025-01-26 09:16:39

您可以启用disablesCrolllock模态演示

<Modal open={open} onClose={handleClose} disableScrollLock>
  // ...
</Modal>

<

a href =“ https://codesandbox.io/s/basicmodal-material-material-material-demo-demo-demo-forked-nofkw5?fontsize = 14&hidenavigation = 14&hidenavigation=1 = dark“ rel =“ nofollow noreferrer”> “

You could enable disableScrollLock prop of the modal

<Modal open={open} onClose={handleClose} disableScrollLock>
  // ...
</Modal>

Demo

Edit BasicModal Material Demo (forked)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文