좌동 상가매장 CCTV 테라피숍 210만화소 카메라 설치
안녕하세요~ 유씨입니다!
모두 건강하게 잘 지내고 계신지요 ㅎㅎ 공사문의로 고객님들을 만나뵙다보니 시간이 참 빠른것같아요 자 오늘은 부산시 해운대구 좌동 상가에위치한 테라피숍CCTV 설치사례를 포스팅하겠습니다!
방범 및 시설관리 차원에서 210만화소 카메라로 문의주셨고, 총 2대를 매장 내부에 설치해드렸던 사례에요.
어떻게 설치해드렸는지, 함께 보실까요~^^ 오늘도 출동!
<!-- /** * 이미지 테이블크기와 맞쳐 재조정 */ function resizeImage() { var img_max_width = 615; var use_origin_img = 'Y'; if(use_origin_img == 'N') { return; }
var imgObj = document.getElementById("post_area").getElementsByTagName("img"); var osrc; for (i = 0; i ");
pNode.insertBefore(imgContainer, imgObj[i]); imgContainer.appendChild(imgObj[i]); osrc = imgObj[i].src;*/ if(imgObj[i].width > img_max_width) {
imgObj[i].style['width'] = img_max_width; imgObj[i].style['height'] = 'auto'; }
if( imgObj[i].parentNode.tagName != "A" ) { imgObj[i].style.cursor = "pointer";
imgObj[i].onclick = function(){ showPicture(this); } }
/*imgContainer.style.marginBottom = "0px"; imgObj[i].style.cursor = "pointer"; // declare onclick event
if( imgObj[i].parentNode.tagName == "div" ) {
if( imgObj[i].parentNode.parentNode.tagName == "A" ) { imgObj[i].onclick = function() {
if( this.parentNode.parentNode.target != "_blank" ){
location.href = this.parentNode.parentNode.href; } }; } else{
imgObj[i].onclick = function(){ showPicture(this); } } }
else if( imgObj[i].parentNode.tagName != "A" ) {
imgObj[i].onclick = function(){ showPicture(this); } }*/ }
document.getElementById("post_area").style.visibility = "visible"; } /** * 팝업 이미지 */ function showPicture(obj) { var imgObj = new Image(); imgObj.src = obj.src;
var wopt = "scrollbars=yes,status=no,resizable=no"; wopt += ",width=" + imgObj.width; wopt += ",height=" + imgObj.height; var wbody = " "; wbody += "function finalResize(){"; wbody += " var oBody=document.body;";
wbody += " var oImg=document.images[0];";
wbody += " var xdiff=oImg.width-oBody.clientWidth;";
wbody += " var ydiff=oImg.height-oBody.clientHeight-20;";
wbody += " window.resizeBy(xdiff,ydiff);"; wbody += "}"; wbody += " "; wbody += " "; wbody += " "; wbody += " ";
winResult = window.open("about:blank","",wopt);
winResult.document.open("text/html", "replace"); winResult.document.write(wbody); winResult.document.close(); return; } /** * 함수 실행 */ window.onload = function() { resizeImage(); } //-->