초

퀵메뉴 소스수정..

· 2012-01-29 (일) 12:09:45 · 3674
홈페이지에 퀵메뉴를 붙이려 하는데요..
퀵메뉴가 슬라이딩이나 움직임이 없이 딱 고정되서 휠을따라 상하로 움직이는 퀵메뉴를 구현하려 합니다.
소스를 구해서 조금 수정하려 하는데 자바스크립을 잘 다룰줄 몰라 어느부분을 수정해야 할지 모르겠네요..

참고 홈페이지 퀵메뉴입니다.
http://www.carmine-design.com/


아래는 수정해보려는 퀵메뉴 소스인데요..
어느부분을 수정하면 될까요?..ㅜ

<style type="text/css">
<!--
#gotop {position:absolute; z-index:3;left:50%; margin-left:-640px;margin-top: -220px;}
-->
</style>





<script language="javascript">

//<![CDATA[
function initMoving(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") { //WebKit
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) { //WebKit
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)
}
//]]>


</script>








  <div id="gotop">
        <td><img src="img/top_01.jpg" width="183" height="90" />
  </div>

  <script type="text/javascript">initMoving(document.getElementById("gotop"), 220, 50, 50);</script>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
12-06-05 조회 3,124
12-06-04 조회 3,157
12-06-02 조회 3,065
12-06-02 조회 3,800
12-06-01 조회 3,535
12-05-25 조회 3,519
12-05-25 조회 3,041
12-05-21 조회 3,451
12-05-19 조회 2,791
12-05-18 조회 3,208
12-05-16 조회 3,259
12-05-11 조회 2,811
12-05-07 조회 2,872
12-05-05 조회 3,089
12-05-05 조회 2,988
12-05-05 조회 2,880
12-05-04 조회 3,933
12-05-03 조회 3,040
12-04-30 조회 3,064
12-04-26 조회 3,986
12-04-25 조회 2,804
12-04-23 조회 2,892
12-04-23 조회 2,840
12-04-20 조회 4,234
12-04-20 조회 3,188
12-04-18 조회 2,786
12-04-17 조회 3,458
12-04-17 조회 2,789
12-04-17 조회 3,285
12-04-16 조회 2,744
12-04-16 조회 3,035
12-04-13 조회 2,765
12-04-06 조회 3,509
12-04-05 조회 2,891
12-04-03 조회 3,146
12-04-03 조회 2,783
12-03-30 조회 2,768
12-03-30 조회 3,235
12-03-29 조회 3,794
12-03-27 조회 2,927
12-03-26 조회 4,012
12-03-24 조회 6,261
12-03-24 조회 3,761
12-03-23 조회 2,909
12-03-22 조회 3,141
12-03-22 조회 3,420
12-03-22 조회 3,608
12-03-22 조회 4,963
12-03-21 조회 3,062
12-03-21 조회 2,763
12-03-21 조회 4,780
12-03-20 조회 5,540
12-03-20 조회 2,724
12-03-17 조회 3,236
12-03-16 조회 3,269
12-03-15 조회 2,651
12-03-14 조회 2,821
12-03-13 조회 2,863
12-03-12 조회 3,906
12-03-09 조회 2,977
12-03-09 조회 3,905
12-03-07 조회 2,788
12-03-07 조회 2,952
12-03-07 조회 2,635
12-03-02 조회 3,002
12-03-02 조회 3,251
12-03-01 조회 5,037
12-02-29 조회 3,850
12-02-27 조회 4,233
12-02-27 조회 3,115
12-02-26 조회 2,846
12-02-26 조회 5,046
12-02-25 조회 2,592
12-02-23 조회 2,916
12-02-23 조회 2,681
12-02-22 조회 3,765
12-02-21 조회 2,794
12-02-20 조회 3,022
12-02-20 조회 2,868
12-02-20 조회 5,570
12-02-20 조회 3,477
12-02-19 조회 3,235
12-02-18 조회 2,963
12-02-17 조회 3,457
12-02-15 조회 3,013
12-02-14 조회 2,915
12-02-11 조회 2,885
12-02-09 조회 6,324
12-02-09 조회 3,005
12-02-06 조회 2,869
12-02-05 조회 2,882
12-02-04 조회 6,632
12-02-02 조회 5,273
12-01-31 조회 2,785
12-01-30 조회 2,724
12-01-30 조회 2,892
12-01-29 조회 3,100
12-01-27 조회 2,775
12-01-26 조회 2,830
12-01-25 조회 2,736