초

퀵메뉴 소스수정..

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

참고 홈페이지 퀵메뉴입니다.
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-04-26 조회 4,783
12-04-26 조회 2,626
12-04-26 조회 2,858
12-04-26 조회 2,681
12-04-26 조회 2,988
12-04-25 조회 2,435
12-04-25 조회 2,636
12-04-25 조회 2,614
12-04-25 조회 2,665
12-04-25 조회 2,531
12-04-25 조회 2,868
12-04-24 조회 4,002
12-04-24 조회 2,528
12-04-24 조회 2,443
12-04-24 조회 2,655
12-04-24 조회 2,617
12-04-24 조회 2,504
12-04-24 조회 2,800
12-04-24 조회 2,772
12-04-24 조회 2,530
12-04-24 조회 2,563
12-04-24 조회 3,141
12-04-24 조회 2,475
12-04-24 조회 2,637
12-04-24 조회 2,512
12-04-23 조회 2,497
12-04-23 조회 2,517
12-04-23 조회 2,819
12-04-23 조회 2,520
12-04-23 조회 3,429
12-04-23 조회 2,384
12-04-23 조회 2,466
12-04-23 조회 2,597
12-04-23 조회 2,474
12-04-23 조회 2,621
12-04-23 조회 2,658
12-04-23 조회 2,471
12-04-23 조회 3,362
12-04-22 조회 2,511
12-04-22 조회 2,467
12-04-22 조회 2,557
12-04-22 조회 2,774
12-04-22 조회 2,564
12-04-22 조회 3,225
12-04-21 조회 4,019
12-04-21 조회 7,662
12-04-21 조회 2,546
12-04-21 조회 3,022
12-04-21 조회 2,511
12-04-21 조회 2,753
12-04-20 조회 2,707
12-04-20 조회 2,809
12-04-20 조회 2,591
12-04-20 조회 2,721
12-04-20 조회 3,839
12-04-20 조회 2,886
12-04-16 조회 2,638
12-04-07 조회 2,610
12-04-03 조회 3,067
12-04-02 조회 3,172
12-03-28 조회 2,602
12-03-26 조회 6,008
12-03-25 조회 2,668
12-03-25 조회 2,786
12-03-24 조회 2,901
12-03-23 조회 2,761
12-03-22 조회 5,663
12-03-13 조회 2,646
12-03-11 조회 3,064
12-03-11 조회 3,994
12-03-11 조회 4,812
12-03-11 조회 3,703
12-03-11 조회 3,666
12-03-11 조회 5,322
12-03-06 조회 2,781
12-03-06 조회 2,870
12-03-05 조회 2,937
12-03-02 조회 2,856
12-03-01 조회 6,383
12-03-01 조회 3,198
12-02-29 조회 5,334
12-02-17 조회 2,951
12-02-16 조회 2,756
12-02-14 조회 3,732
12-02-14 조회 2,920
12-02-08 조회 2,894
12-02-07 조회 2,524
12-02-06 조회 1.2만
12-02-04 조회 2,789
12-02-02 조회 2,868
12-01-29 조회 4,552
12-01-27 조회 2,715
12-01-25 조회 3,863
12-01-24 조회 4,230
12-01-21 조회 3,285
12-01-21 조회 3,030
12-01-16 조회 3,464
12-01-16 조회 3,936
12-01-14 조회 2,797
12-01-13 조회 4,342