What I am trying to achieve is a kind of notification box (a div
element). I would like to show it with some opacity. And I need the box to be "invisible" by the events. For example, if the box is on top of a button, I can still click the button through the box.
Some may suggest make it movable by the user, but the current UI does not allow me to do so.
Can it be achieved by any mean? HTML, CSS, Javascript and jQuery are all available.
My current notification box CSS:
.notification-box {
position: fixed;
top: 0;
left: 100vw;
transform: translate(-100%, 0);
}