]>
iEval git - gruntmaster-page.git/blob - js/10-modal.js
1 let modal
, backdrop
, hiding
;
3 function show_modal () {
4 modal
.classList
.remove('hidden');
5 backdrop
.classList
.remove('hidden');
6 setTimeout(function (){
7 document
.body
.classList
.add('modal-open');
11 function hide_modal () {
12 document
.body
.classList
.remove('modal-open');
16 if(window
.innerWidth
< 768)
18 modal
= $('.modal')[0];
19 backdrop
= $('.backdrop')[0];
20 $(modal
).on('transitionend', el
=> {
21 if(!document
.body
.classList
.contains('modal-open'))
22 modal
.classList
.add('hidden');
24 $('.backdrop,.modal').each(el
=> document
.body
.appendChild(el
) );
25 $('#solution').on('click', e
=> {
29 $('.backdrop').on('click', hide_modal
);
30 window
.onkeyup
= event
=> {
31 if (event
.keyCode
=== 27)
This page took 0.051088 seconds and 4 git commands to generate.