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
32
33
|
<style> #btnWrap {display:flex; flex-wrap:wrap; width:100%; text-align:center;border:1px solid #999;} #btnWrap a {width:50%; padding:13px 0; font-weight:600; font-size:21px} #btnWrap a:first-child {background-color:var(--main); color:#ffd200;} #btnWrap a:last-child {border-top:1px solid #999; border-left:1px solid #999} #btnWrap .company_pop_btn {} #btnWrap .basicBtn {color:var(--main); background-color:#fff; } </style>
<section id="btnWrap"> <a class="basicBtn" href="./right_install.php">도입상담요청</a> <a href="./customerprice.php">견적요청</a> <a href="./install_req.php">설치요청</a> <a class="company_pop_btn">주요고객사</a> </section>
<script> //24.02.16 남상복 수정 $('.company_pop_btn').click(function(){ //상단 주요고객사 버튼 클릭시 팝업창 띄움 $.get("customeroffice_main.inc.php",function(rtn){ $("#modal_member_box3").html(rtn).dialog({ resizable: true, height: 540, width: "94%", modal: true, title:"", open: function(){ $('html, body').css('overflow', 'hidden'); }, close: function(){ $('html, body').css('overflow', 'unset'); }, }); }); });
</script>
|