따라다니는 배너 스크립트인데요

· 13년 전 · 1334
따라다니는게 아니라 항상 제일 하단에 스티커처럼 고정되어 있는것처럼 할려면 어떻게 해야하나요?
 
참고로 경향신문 모바일입니다.
 
<script type="text/javascript">
var adObj = document.createElement("DIV");
adObj.id="dualad_div34";
adObj.style.zindex="999";
adObj.style.position="absolute";
adObj.style.bottom="0px";
adObj.style.left="0px";
adObj.style.width="100%";
adObj.style.height="50px";
document.body.appendChild(adObj);
var daum_adam_vars = {
 position : 'MIDDLE',  // TOP (화면상단) | BOTTOM (화면 하단) | MIDDLE (화면 중간 삽입. bannerDivId 지정 필요)
 bannerDivId : 'dualad_div34',  // position : 'MIDDLE' 인 경우, 광고를 삽입할 DIV 테그의 ID 값.
};
function setAdPosition(target, position, topLimit, btmLimit) {
    if (!target) return false;
    var obj = target;
    obj.initTop = position;
    obj.topLimit = topLimit;
    obj.bottomLimit = Math.max(document.documentElement.scrollHeight, document.body.scrollHeight) - btmLimit - obj.offsetHeight;
    obj.style.position = "absolute";
    obj.top = obj.initTop;
    obj.left = obj.initLeft;
    if (typeof (window.pageYOffset) == "number") {
        obj.getTop = function () {
            return window.pageYOffset;
        }
    } else if (typeof (document.documentElement.scrollTop) == "number") {
        obj.getTop = function () {
            return Math.max(document.documentElement.scrollTop, document.body.scrollTop);
        }
    } else {
        obj.getTop = function () {
            return 0;
        }
    }
    if (self.innerHeight) {
        obj.getHeight = function () {
            return self.innerHeight;
        }
    } else if (document.documentElement.clientHeight) {
        obj.getHeight = function () {
            return document.documentElement.clientHeight;
        }
    } else {
        obj.getHeight = function () {
            return 500;
        }
    }
    if (obj.initTop > 0) {
        pos = obj.getTop() + obj.initTop;
    } else {
        pos = obj.getTop() + obj.getHeight() + obj.initTop;
    }
    if (pos > obj.bottomLimit) pos = obj.bottomLimit;
    if (pos < obj.topLimit) pos = obj.topLimit;
    obj.style.top = (obj.top + pos) + "px";
}
document.body.addEventListener('touchstart', function (e) {
    var evt = e || window.event;
    var target = evt.target || evt.srcElement;
    var node = target.parentNode;
    var hide = true;
    while (node) {
        if (node.id === daum_adam_vars.bannerDivId) {
            hide = false;
            break;
        }
        node = node.parentNode;
    }
    if (hide) {
        document.getElementById('dualad_div34').style.display = 'none';
    }
}, false);
window.addEventListener('scroll', function () {
    setAdPosition(document.getElementById("dualad_div34"), - 30, 0, - 30);
    document.getElementById('dualad_div34').style.display = 'block';
}, false);

window.addEventListener('load', function() {
 if (navigator.userAgent.indexOf('Safari')!=-1){
  setTimeout(scrollTo,0,0,1);
 }else{
  window.scrollTo(0,1);
 }
 setTimeout("setAdPosition(document.getElementById('dualad_div34'), -24, 0, -24)",1);
}, false);
</script>
|
댓글을 작성하시려면 로그인이 필요합니다. 로그인

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 4,613
13년 전 조회 900
13년 전 조회 1,009
13년 전 조회 752
13년 전 조회 6,637
13년 전 조회 814
13년 전 조회 1,143
13년 전 조회 1,112
13년 전 조회 2,825
13년 전 조회 800
13년 전 조회 2,692
13년 전 조회 1,166
13년 전 조회 1,758
13년 전 조회 1,324
13년 전 조회 1,471
13년 전 조회 1,692
13년 전 조회 537
13년 전 조회 732
13년 전 조회 707
13년 전 조회 1,027
13년 전 조회 1,054
13년 전 조회 1,824
13년 전 조회 694
13년 전 조회 749
13년 전 조회 3,149
13년 전 조회 878
13년 전 조회 1,137
13년 전 조회 1,512
13년 전 조회 960
13년 전 조회 1,948
13년 전 조회 662
13년 전 조회 2,810
13년 전 조회 1,166
13년 전 조회 1,485
13년 전 조회 893
13년 전 조회 1,055
13년 전 조회 1,414
13년 전 조회 1,092
13년 전 조회 1,645
13년 전 조회 1,540
13년 전 조회 709
13년 전 조회 2,786
13년 전 조회 948
13년 전 조회 1,966
13년 전 조회 853
13년 전 조회 1,925
13년 전 조회 1,807
13년 전 조회 1,803
13년 전 조회 764
13년 전 조회 1,335
13년 전 조회 1,059
13년 전 조회 2,023
13년 전 조회 896
13년 전 조회 987
13년 전 조회 1,236
13년 전 조회 1,080
13년 전 조회 884
13년 전 조회 2,285
13년 전 조회 1,066
13년 전 조회 1,019
13년 전 조회 2,119
13년 전 조회 1,802
13년 전 조회 6,539
13년 전 조회 1,439
13년 전 조회 773
13년 전 조회 580
13년 전 조회 995
13년 전 조회 1,042
13년 전 조회 881
13년 전 조회 674
13년 전 조회 1,115
13년 전 조회 1,432
13년 전 조회 825
13년 전 조회 646
13년 전 조회 1,127
13년 전 조회 1,594
13년 전 조회 945
13년 전 조회 2,218
13년 전 조회 1,109
13년 전 조회 734
13년 전 조회 1,309
13년 전 조회 1,410
13년 전 조회 1,485
13년 전 조회 669
13년 전 조회 1,397
13년 전 조회 1,012
13년 전 조회 2,543
13년 전 조회 1,050
13년 전 조회 939
13년 전 조회 795
13년 전 조회 1,312
13년 전 조회 847
13년 전 조회 1,604
13년 전 조회 1,187
13년 전 조회 828
13년 전 조회 786
13년 전 조회 7,294
13년 전 조회 832
13년 전 조회 670
13년 전 조회 1,935
🐛 버그신고