일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- CSS
- 디저트는
- 표준프레임워크
- 빈생성에러
- 광주광역시운암동
- 전체파일내키워드찾기
- 달달한하루
- 운암동돈까스맛집
- 소스코드보는법익히기
- 자바파일업로드
- 스프링부트환경설정
- 하나이름생각이나지않고
- 담백하답니다
- fastapi
- 소스분석
- 기본소스코드끌어오기
- 다시또봐요
- ദ്ദി( ◠‿◠ )
- 매력이다이다
- 분위기가예뻐요
- 가이아티룸
- 광주광역시동구예쁜카페
- 뷰리졸버설정
- 광주광역시이색카페
- 양림동티룸
- 기세이다
- 티파라찌
- 운암동점심
- 강의리추어탕본점
- 광주꾸덕꾸덕
- Today
- Total
개발자 구겹이
alert 말고 모달창 modal 검정투명배경에 창 띄우기 css js 본문
화면에서 노출되는 것을 제지하려면
display: none; 을 부여해줘야 함
① 기본 container 는 body의 100% * 100%를 차지,
② 모달창의 배경이 되어줄 검정투명창도 container와 동급 레벨로, body의 100% * 100%를 차지,
③ 모달창의 콘텐츠를 담을 상자는 body의 정중앙을 차지하도록 함
[ CSS ]
html,
body {
width: 100%;
height: 100%;
font-family: Arial, "Franklin Gothic Medium", Arial, sans-serif;
font-size: 1.3em;
background: linear-gradient(to left, #ffab0f, #247afd, #fe46a5);
position: absolute;
}
①
div.container {
margin: 0 auto;
position: relative;
}
②
div#modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
}
③
div#modal > div.modal_content {
display: none;
position: fixed;
z-index: 2;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 70px 50px;
margin-top: 20px;
text-align: center;
}
[ JS ]
자바스크립트 코드로 클릭 이벤트 시
모달창을 띄우고 닫아주기
window.onload = function () {
modal = document.getElementById("modal");
modal_content = document.querySelector(".modal_content");
document.getElementById("user").addEventListener("click", function () {
modal.style.display = "block";
modal_content.style.display = "block";
});
document.querySelector(".close").addEventListener("click", function () {
modal.style.display = "none";
modal_content.style.display = "none";
});
document.getElementById("confirmBtn").addEventListener("click", function (e) {
e.preventDefault();
window.location.href = "/nextpage";
});
}
'CSS' 카테고리의 다른 글
그라데이션 배경 background linear-gradient (0) | 2024.07.22 |
---|---|
css a, ul 기본 스타일 없애기 (0) | 2024.07.21 |
Platform !important; (0) | 2024.05.11 |
미디어 쿼리 활용법 (0) | 2024.05.05 |
CSS3 (0) | 2024.05.05 |