묻고답하기
스크롤 따라다니는 퀵메뉴가 끝까지 안내려가요..ㅜㅜ
2015.07.08 03:59
스크롤 따라다니는 사이드메뉴를 넣었는데 메인페이지에 이미지가 많아서 오브젝트가 끝까지 안내려가요...
안내려가면 initMoving을 load 이벤트에 적용하라는데..
자바 초보라....
고수님들 도와주세요.....
바디안에
<div id="gotop">
<img src="../img/cus1.png" alt=""/>
</div>
<script type="text/javascript">initMoving(document.getElementById("gotop"), 10, 10, 50);
</script>
스크립트
function initMoving(target, position, topLimit, btmLimit) {
if (!target)
return false;
var obj = target;
obj.initTop = position;
obj.topLimit = topLimit;
obj.bottomLimit = document.documentElement.scrollHeight - btmLimit;
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 document.documentElement.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;
}
}
obj.move = setInterval(function() {
if (obj.initTop > 0) {
pos = obj.getTop() + obj.initTop;
} else {
pos = obj.getTop() + obj.getHeight() + obj.initTop;
//pos = obj.getTop() + obj.getHeight() / 2 - 15;
}
if (pos > obj.bottomLimit)
pos = obj.bottomLimit;
if (pos < obj.topLimit)
pos = obj.topLimit;
interval = obj.top - pos;
obj.top = obj.top - interval / 3;
obj.style.top = obj.top + "px";
}, 30)
}