? ??? ? ?? ?? ??????.
???>? ??? ???????. ? ? ???.
??? ?? ??
HTML ???> ??? ?? ?? ?? ??? ??? ? ?? ????? ??? ?? ??? ????.
??? ?? ???, ???? ??? ??, ?? ?? ??? ??? ?? ?? ???? ?? ??? ?? ??? ??? ???? ? ?? ?????.
?? ?? ??? ??? ??? ?? ? ??, ??? ??? ??, ???? ???? ????? ? ???? ?? ??? ???? ? ??? ???.
??? ????? ?? ??? ???? ?? ?? ?? ?? ??? ?????? ??? ??? ?? ?? ??? ?????. ? ??? ?? ????? ???? ?? ?????. ??? ???? ?? ??? ?? ? ???? ?????.
??? ?? ??
— ??:
<dialog>
<pre class="brush:php;toolbar:false">const popUpElement = document.getElementById("pop-up");
popUpElement.show();
— ?? ?:
<dialog>
<pre class="brush:php;toolbar:false">const modalElement = document.getElementById("modal");
modalElement.showModal();
? ?? ?? ???> ??? open ??? true? ?????. ?? ???? ?? ??? ??? ?? ???? ????. ?? ?? ?????? ??? ??? ???? ???. ?? ??? ??? ???? ??? JavaScript? ???? ????.
<dialog open>Hi, I'm a popup!</dialog>
??? ???:
- .show() ???? ???? ?? ??: https://codepen.io/alexgriss/pen/zYeMKJE
- .showModal() ???? ???? ?? ? ??: https://codepen.io/alexgriss/pen/jOdQMeq
- ?? ?? ?? ??: https://codepen.io/alexgriss/pen/wvNQzRB
?? ?? ? ?? ?? ??
???? ?? ??? ??? ???? ?? ???? ????. ?? ?? ?? ?? ?? ? ?? ??? ??? ????.
— .close() ??? ??:
<dialog>
<pre class="brush:php;toolbar:false">const popUpElement = document.getElementById("pop-up");
popUpElement.show();
— method="dialog" ??? ???? ???? ?? ???? ??????.
<dialog>
<pre class="brush:php;toolbar:false">const modalElement = document.getElementById("modal");
modalElement.showModal();
— Esc ?? ??? ??? ????.
Esc? ??? ?? ???? ?????. ?? ?? ???? ???? ?? ?? ??? ???? ?? ?? ??? ?? ????? ?? ??? ? ????.
??? ???:
- close ???? ?? ?? ??: https://codepen.io/alexgriss/pen/GRzwjaV
- ?? ??? ?? ?? ?? ??: https://codepen.io/alexgriss/pen/jOdQVNV
- Esc ?? ?? ? ??: https://codepen.io/alexgriss/pen/KKJrNKW
- Esc? ?? ?? ??? ?? ????: https://codepen.io/alexgriss/pen/mdvQObN
?? ? ?? ?
method="dialog" ??? ???? ???? ?? ??? ?? ? ?? ??? ?? ??? ? ????. ?? ??? ??? ?? ?? ??? ?????? ?? ?????. ?? returnValue ??? ?????.
??? ???: https://codepen.io/alexgriss/pen/ZEwmBKx
?? ??? ??? ?????.
???? ?? ????? ???? ??? ?? ????? ??? ???????.
??? ????
???> ?? .show() ?? open ??? ???? ???? DOM?? position:absolute? ?? ?????. ?? ? ???? ?? ?? CSS ???? ??? ???? ? ??? ? ?? ??? ??? ??? ?? ?? ??? ?? ???? ???? ????. ???? ??? ??? ????? ?????.
?? ?? ????
?? ?? ???? ? ??? ???? ???? ?????.
?? ????
.showModal()? ???? ?? ?? ??

??? ??? ???? ???? Z?? ?? ??? ???? ??? ???? ??? ????? ?????. CSS?? z-index ?? ???? ??? ?? ?? ????? ????, ?? ???? ??? ?? ??? ??? ?????. ?? ?? ?? ? ?? ??? ???? ???? Z-??? ???? ????.
MDN?? ??? ????? ?? ??? ?????.
??? ????? ????? ??? ?? ??? ????? MDN? ?????.
?? ??
??? ???? ?? ??? ????? ???? ?? ??? ??? ??? ::backdrop ?? ??? ?????. ? ????? ??? ???: ?? CSS ??? ??? ???? ???? ??? ???? ?? ??? ?????.
?? ?? ??? ?? ??? ?? ??? ??? ???? ???? ??? ??? ?????. ?? ? ??? ???? ?????? ??? ?? ? ?? ?? ??? ?? ??? ???? ? ?? ????.
MDN? ??? ??? ?? ??? ?????.
?? ??
??? ??? ? ?? ?? ? ?? ??? ??? ??? ???? ???? ????. ??? ??? ??? ??? ????? autofocus ?? tabindex ??? ??? ? ????. ?? ?? ?? ??? ?? tabindex? ???? ?? ??????. ????? ??? ??? ???? ?? ??? ???? ?????.
????? ?? ??? ????? ??? ??? ???? ?????.
?? ??? UX ?? ??
?????
??? ??
???? HTML5 ?? ?? ? ??? ?? ????? ?? ??? ???? ::backdrop ?? ??? ?????? ??? ???? ??? ???? ?????. ?? ????? ??? ???? ? ? ???? ??? ?? ? ??? ??? ??? ?? ????.
<dialog>
<pre class="brush:php;toolbar:false">const popUpElement = document.getElementById("pop-up");
popUpElement.show();
??? CSS ??? ?? ?? ?? ?? ??? ???? ?? ? ????? ???. ?? ?? CSS ??? ??? ???? ???? ??? ? ????.
<dialog>
<pre class="brush:php;toolbar:false">const modalElement = document.getElementById("modal");
modalElement.showModal();
?? ??? ???? ?? ??? ???? ?? :has ???? ??? ?? ????.
<dialog open>Hi, I'm a popup!</dialog>
??? ???: https://codepen.io/alexgriss/pen/XWOyVKj
? ??? ???? ?? ?? ??
??? ?? ?? ?? ?? UX ?????? ?? ?? ???? ??? ? ????. ? ??? ???? ? ?? ??? ??? ????.
::backdrop ?? ??? ??? ???? ?? ??
:backdrop ?? ??? ???? ?? ?? ?? ?? ??? ???? ??? ?????. ??? ?? ?? ?? ???? ??
?? ?? ?? ?? ?? ??? ??? ??? ??? ??(?? ?? ?? ? ???)? ??? ? ????.
???>? ?? ????? ?? ?? ? ??? ???? ????? ?? ?? ???. ??? ??? ? ?? ?? ??? ?? ???? ??:
<dialog>
<pre class="brush:php;toolbar:false">const popUpElement = document.getElementById("pop-up");
popUpElement.show();
?? ?? ?? ???? ??? ?? ?? ???? ?? ???? ?????.
?? ?? ??? ?? ??? ??? ?? ?? ?? ?? ??? ???? ???.
<dialog>
<pre class="brush:php;toolbar:false">const modalElement = document.getElementById("modal");
modalElement.showModal();
??? ???: https://codepen.io/alexgriss/pen/mdvQXpJ
???? ??? ???? ??
? ??? ?? ???? ?? ?? ??? ??? ? ?? ??? ????. ???? ?? ??? ???? ????. ??? ?? ??? ? ?? ??? ?? ?? ??? ???? ???? ????.
<dialog open>Hi, I'm a popup!</dialog>
??? ???: https://codepen.io/alexgriss/pen/NWoePVP
??? ??? ??
???> ??? ?? ?? HTML ???? ??? ?? ???? ? ?????. ??? ?? ?? ? ???? ???? ? ?? ????.
::?? ???? ???? ?? ??? ??: https://codepen.io/alexgriss/pen/ExrOQEO
????? ??? ?? ? ??: https://codepen.io/alexgriss/pen/QWYJQJO
????? ???? ?? ?: https://codepen.io/alexgriss/pen/GRzwxgr
???
???? ?> ???? ??? ??? ???? ??? ??? ??(VoiceOver, TalkBack, NVDA)? ?? ?? ?? ??? ? ?????.
???> ?? ??? ?? ???? ?? ??? ?? ??? ?????. ?? ?? ?? ??? ?? ??? ?? ??? ?? ?? ?? ?????.
????? ???> ??? ARIA ?? role="dialog"? ?? ??? ?? ??? ?? ?????. ?? ?? ??? ARIA ?? aria-modal="true"? ?? ??? ?????.
??? ???>? ???? ????? ? ?? ?????. ??:
aria-labelledby
?? ?? ?? ? ?? ??? ????
<dialog>
<pre class="brush:php;toolbar:false">const popUpElement = document.getElementById("pop-up");
popUpElement.show();
:backdrop ?? ??? ???? ???? ?? ?? ?? ???? ?? .backdrop ???? ???? ?? ?????? ???? ?????.
<dialog>
<pre class="brush:php;toolbar:false">const modalElement = document.getElementById("modal");
modalElement.showModal();
<dialog open>Hi, I'm a popup!</dialog>
??
???? HTML5 ???> ??? ?? ?? ??? ???? ?? ??? ?????? ??? ?????. ?? ?????? ? ???? ??? JS? ?? ????? ?????? ???? ?? ?????? ????? ??? ? ????.
? ????? ?? ??? ?? ??????.
- ???> ?? ?? ??? ?????.
- ???> ??? API;
- ???? ???? ???? ?? ???? ??
- ?? ? ?? ???? ???? ??
- ???> ??? ?? ??? ??? ?? ?? ??? ?? ??
- ???>? ?? ???? ?? ?? ??.
????? ???? ??? ?? ??? ??? ?? JS? ?? ? ?? ?? ??? ??? ??? ????: https://codepen.io/alexgriss/pen/abXPOPP
?> ??? ?? ?? ???? ?? ??? ??? ?????. HTML ??. ? ??? ???? ??? ??? ??? ????!
? ??? HTMLlt;dialog> ?? ?? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!