iT邦幫忙

2022 iThome 鐵人賽

DAY 28
0
自我挑戰組

React 面 項目 看起來很好吃吧--佐material 調料系列 第 28

React side project--Modal(子母彈窗)

  • 分享至 

  • xImage
  •  

有的時候客製化需求需要多層次彈跳視窗,以下簡稱為彈窗,這邊mui提供一個Modal 組件做疊加

可以產出下方圖片的效果
https://ithelp.ithome.com.tw/upload/images/20221012/20098345lq9mclFvvL.png
其中可以用兩個狀態分別切換子母彈窗

<Button onClick={handleOpen}>Open modal</Button>
<Modal 
  open={open}
  onClose={handleClose}
  aria-labelledby="parent-modal-title"
  aria-describedby="parent-modal-description"
>
  <Box sx={{ ...style, width: 400 }}>
    <h2 id="parent-modal-title">Text in a modal</h2>
    <p id="parent-modal-description">
      Duis mollis, est non commodo luctus, nisi erat porttitor ligula.
    </p>
    <ChildModa![https://ithelp.ithome.com.tw/upload/images/20221012/20098345VxwFdwTRja.png](https://ithelp.ithome.com.tw/upload/images/20221012/20098345VxwFdwTRja.png)l />
  </Box>
</Modal>

上一篇
React side project--Speed dial(快速菜單)
下一篇
React side project--Skeleton (元件 Loding)
系列文
React 面 項目 看起來很好吃吧--佐material 調料30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言