- Full-Stack Vue.js 2 and Laravel 5
- Anthony Gore
- 68字
- 2021-07-02 19:57:22
Dimming the main window
We could simply hide our main window when the modal is open, but it's better if the user can still be aware of where they are in flow of the app. To achieve this, we will dim the main window under a semi-transparent panel.
We can do this by giving our modal panel an opaque black background.
style.css:
#modal { ... background-color: rgba(0,0,0,0.85); }
推薦閱讀