Programming language/Javascript,jQuery [Javascript]div modal창 만들기 - 반응형 오늘은 시간이 조금 남아서 부트스트랩의 모달이 아닌 div로 모달창을 만들어봤다. 매우 간단하게!먼저 <script>로 쓰인 코드마우스 오버 시에 아래 이벤트가 발생하게 되고 div의 id를 가지고 숨겨진 div를 display시켜준다.+ 추가로 display되는 div안에 이미지 및 텍스트를 넣을 수 있다.123456789101112131415161718192021222324252627function mousehover(e){ var background = document.getElementById("background"); var popup = document.getElementById("popup"); var emp_nm = document.getElementById(e.getAttribute('id')).getAttribute('id'); var emp_img = document.createElement("img"); emp_img.id = "kakao"; emp_img.src = "/sample/test/"+emp_nm+".jpg"; emp_img.style.width = "200px"; emp_img.style.height = "250px"; document.getElementById('EMP_IMG').appendChild(emp_img); background.style.filter = "alpha(Opacity=50)"; background.style.display = ''; popup.style.display = ''; document.getElementById("EMP_NM").innerHTML = emp_nm; //alert("test : " +document.getElementById(e.getAttribute('id')).getAttribute('id'));} function modalclose(){ document.getElementById("popup").style.display = 'none'; document.getElementById("background").style.display = 'none'; document.getElementById("EMP_NM").innerHTML = ''; document.getElementById("EMP_IMG").innerHTML = '';} Colored by Color Scriptercs<css>에 쓰인 코드div 태그 영역을 투명하게 만들어 그 위에 또 div를 입혔다.화면을 꽉 채우려고 최소 높이를 100%로 설정했다.123456789101112131415161718192021222324<style type="text/css"> .container { background-color: gray; background: rgba(0,0,0,0.4); position: absolute; width: 100%; min-height: 100%; left: 0; top: 0; text-align:center;}.content { border: 2px solid white; border-radius: 25px; background-color: #ffffff; position:absolute; top:50%; left:50%; width: 60%; height: 450px; transform:translate(-50%, -50%)}</style>cs<body> 태그 안에 사용된 코드body태그 안에는 테이블이 하나 있는데 그 위로 마우스 오버시 div창이 출력되도록 하였다.그리고 숨겨져 있는 모달창 div이미지ⓧ 버튼을 클릭하면 div는 다시 사라진다.1234567891011121314151617181920212223<div class="container" id="background" style="display: none;"> <div class="content" id="popup" style="display: none;"> <div style="height: 20%; text-align: center;"> <span id="EMP_NM" style="font-size: 15px; font-weight: bold; padding-top: 10px;" ></span> <span style="float: right;"> <img src='/sample/test/cancel.png' style="cursor: pointer;" onclick="modalclose()"> </span> </div> <div id="EMP_IMG" style="border: 1px solid black; height: 60%;"> </div> <div style="height: 20%;"> 하단 </div> </div> </div> ...(생략) <td class="td_content_c" id="td_c"> <span id="ryan" style="cursor: pointer;" onmouseover="mousehover(this)">김라이언</span> </td> Colored by Color Scripter cs<결과>+피드백은 언제나 환영입니다 :) 반응형 공유하기 URL 복사카카오톡 공유페이스북 공유엑스 공유 게시글 관리 구독하기3인칭시점 저작자표시 비영리 변경금지 Contents 연관 포스팅 [Javascript]이미지 크기 구하기 2018. 8. 31. DOM(Document Object Model) 2018. 8. 21. [Javascript]id값 가져오기 2018. 6. 25. [Javascript]document.getElementById() - (2) 2018. 6. 22. 댓글 0 + 이전 댓글 더보기