UXUI 웹디자인 과정_과제/2달차

[UXUI 웹디자인] 2달차 과제_33 / 팝업창 구현

https://ninefloor.github.io/web-practice/work/33/

$(document).ready(function(){
  $(".layerPopup").click(function(){
    $(".layer").show();
  })
  $(".close").click(function(){
    $(this).parent().hide();
  })
})