Some text content about Slide 1...
Some text content about Slide 2...
-
-
-
-
-
-
-
Some text content about Slide 1...
Some text content about Slide 2...
The standard: W3C Recommended Design Pattern for Menu
Screen readers intercept keystrokes for other functions. So our elaborate keyboard model isn't necessarily accessible to screen reader users.
<body>
...
</body>
#modalMask {
position: fixed;
top: 0;
left: 0;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: black;
opacity: 0.75;
z-index: 10;
}
#modalContent {
position: fixed;
background-color: #FFC;
width: 50%;
top: 25%;
left: 25%;
margin: 0 auto;
opacity: 1;
z-index: 100;
}
<body>
...
</body>
...
Title of Modal Window
Some content...