브라우저 중앙에 띄우는 모달 팝업 (레이어 윈도우) > 기술자료 | 해피정닷컴

브라우저 중앙에 띄우는 모달 팝업 (레이어 윈도우) > 기술자료

본문 바로가기

사이트 내 전체검색

브라우저 중앙에 띄우는 모달 팝업 (레이어 윈도우) > 기술자료

JavaScript 브라우저 중앙에 띄우는 모달 팝업 (레이어 윈도우)

페이지 정보


첨부파일

본문

샘플 : https://www.happyjung.com/demo/js/needpopup.html

needpopup.css
needpopup.html
needpopup.js
needpopup.min.css
needpopup.min.js


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>needPopup demo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../dist/needpopup.min.css">

<!-- Styles just for demo -->
<style>
    body {
        font: 14px/1 "Helvetica Neue",Helvetica,Arial,sans-serif;
        margin:0;
        padding:0;
        background: #FFE;
    }

    .wrapper {
        padding: 40px 60px;
    }

    a[data-needpopup-show] {
        display: inline-block;
        margin: 0 10px 10px 0;
        padding: 10px 15px;
        font-weight: bold;
        letter-spacing: 1px;
        text-decoration: none;
        color: #fff;
        background: #7B5207;
      border-radius: 3px;
      box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
    }

    p {
        font-size: 1.2em;
        line-height: 1.4;
        color: #343638;
        margin: 20px 0;
    }

    .needpopup {
      border-radius: 6px;
      box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 1);
    }

    .needpopup p {
        margin: 0;
    }
    .needpopup p + p {
        margin-top: 10px;
    }
</style>
</head>

<body>
<div class="wrapper">
    <a href="#" data-needpopup-show="#small-popup">Show small popup</a>
    <a href="#" data-needpopup-show="#big-popup">Show big popup</a>
    <a href="#" data-needpopup-show="#custom-popup">Show custom options popup</a>


    <div id='small-popup' class="needpopup">
        <a href="#" data-needpopup-show="#big-popup">Go to big popup</a>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
    </div>
    <div id='custom-popup' class="needpopup" data-needpopup-options="custom">
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
    </div>
    <div id='big-popup' class="needpopup">
        <a href="#" data-needpopup-show="#small-popup">Go to small popup</a>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
    </div>
</div>

<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="../dist/needpopup.min.js"></script>
<script>  
    needPopup.config.custom = {
        'removerPlace': 'outside',
        'closeOnOutside': false,
        onShow: function() {
            console.log('needPopup is shown');
        },
        onHide: function() {
            console.log('needPopup is hidden');
        }
    };
    needPopup.init();
</script>
</body>
</html>




자료출처
http://www.blueb.co.kr/?c=1/15&cat=레이어윈도우&uid=3961

댓글목록

등록된 댓글이 없습니다.


Total 152건 1 페이지
  • RSS
기술자료 목록
152
JavaScript   1361  2024-02-16 18:50 ~ 2024-02-16 20:37  
151
JavaScript   2732  2023-08-01 23:01 ~ 2023-08-01 23:35  
150
JavaScript   3834  2023-02-27 17:26 ~ 2023-12-06 08:33  
149
JavaScript   4135  2023-02-22 17:33 ~ 2023-02-24 21:08  
148
JavaScript   4459  2023-01-27 17:42  
147
JavaScript   5520  2022-12-06 10:30 ~ 2022-12-06 13:11  
146
JavaScript   7734  2022-07-28 16:08 ~ 2022-07-28 16:13  
145
JavaScript   4910  2021-11-26 20:23  
144
JavaScript   7002  2021-09-14 19:34 ~ 2021-09-15 17:06  
143
JavaScript   5427  2021-08-18 15:13  
142
JavaScript   6211  2021-06-15 22:02  
141
JavaScript   5352  2021-05-13 17:23 ~ 2021-05-13 17:34  
140
JavaScript   6630  2020-12-24 19:40  
139
JavaScript   6871  2019-10-02 22:05 ~ 2019-10-04 16:13  
138
JavaScript   7421  2019-05-02 02:10  
137
JavaScript   7814  2019-02-08 18:37 ~ 2019-02-08 19:32  
열람
JavaScript   11415  2018-08-28 18:49 ~ 2022-06-13 22:38  
135
JavaScript   21998  2018-08-02 14:39 ~ 2019-11-24 22:20  
134
JavaScript   9217  2018-07-25 14:30 ~ 2018-09-21 08:36  
133
JavaScript   7259  2018-07-23 14:43 ~ 2018-07-23 16:45  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.