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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | < style type = "text/css" > #poplayer_No { position:absolute; font-family:굴림; font-size:12px; border:1px solid #000000;width:400; VISIBILITY: hidden;} .notice { left:170; top:170; height:22; color:#ffffff; font-weight:bold; background-color:orange; padding:5; width:400; cursor:move;} .contents { clear:both; width:320; height:280; padding:0} .winClose { width:65; height:16; background-color:#ffffff; padding:5 5 0 5; font-weight:bold; cursor:pointer;} </ style > < script language = "javascript" > window.onload = function() { with(document) { getElementById("layer_move").onmousedown = function() { onMove_layer(1); } getElementById("htmlMove").onmousemove = getMove; getElementById("htmlMove").onmouseup = function() { onMove_layer(0); }; getElementById("notNote").onclick = function() { noticeClose('poplayer_No',1); }; getElementById("winClose").onclick = closeWin; } } //---------------------------------------------Layer Move---------------------------------------------------------// var move_on, x_styleLeft, y_styleTop, x_accept, y_accept; move_num = 0; function onMove_layer(chk) { var val = document.getElementById("poplayer_No"); if (chk ==1) { x_styleLeft = event.clientX - val.offsetLeft; y_styleTop = event.clientY - val.offsetTop; } move_num = chk; } function getMove() { var val = document.getElementById("poplayer_No") if (move_num == 1) { x_accept = event.clientX - x_styleLeft; y_accept = event.clientY - y_styleTop; if (x_accept > 1) { val.style.left = x_accept } if (y_accept > 1) { val.style.top = y_accept } } } //-------------------------------------------------PopCookies-----------------------------------------------------------------// //팝업을 그만 띄운다. function SetNoticeCookie(name, day) { var ExpDate = new Date(); ExpDate.setDate(ExpDate.getDate() + day); document.cookie = name + "=" + escape("No") + "; path=; expires=" + ExpDate.toGMTString() + ";" } //팝업창을 띄우기전 사용자의 쿠키를 체크 function getNoticeCookie(name) { var nameOfCookie = name + "="; var x = 0; while ( x <= document.cookie.length ) { var y = (x+nameOfCookie.length); if ( document.cookie.substring( x, y ) == nameOfCookie ) { if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 ) endOfCookie = document.cookie.length; return unescape( document.cookie.substring( y, endOfCookie ) ); } x = document.cookie.indexOf( " ", x ) + 1; if ( x == 0 ) break; } return ""; } </ script > < body id = "htmlMove" > < div id = "poplayer_No" name = "poplayer_No" > < div class = "notice" id = "layer_move" >▒ 이벤트 안내 ▒</ div > < div class = "contents" > < table id = "Table_01" style = "width: 00px;" border = "0" cellspacing = "0" cellpadding = "0" align = "center" > < tbody > < tr > < td >팝업 내용</ td > </ tr > </ tbody > </ table > </ div > < div style = "text-align:bottom" > < div style = "text-align:right" > < input type = "checkbox" id = "notNote" >오늘 하루 뛰우지 않음 < span class = "winClose" id = "winClose" >[ 닫기 ]</ span > </ div > </ div > </ div > < script language = "javascript" > function noticeShow(divid){ var divObj = document.getElementById(divid); divObj.style.visibility = "visible"; } function noticeHide(divid) { var divObj = document.getElementById(divid); divObj.style.visibility = "hidden"; } function noticeClose(divid, closday) { noticeHide(divid); SetNoticeCookie(divid, closday); } function closeWin() { document.getElementById('poplayer_No').style.visibility = "hidden"; } if (getNoticeCookie('poplayer_No') != "No") { noticeShow('poplayer_No'); } </ script > </ body > |