웹마스터 팁

또다른 TOP으로 가기

2003.05.05 10:07

RedEye

일명 스므스 타입의 톱(TOP) 스크롤 기능 이라 합뎌~


<html>
<head>

<!-- TOP 스크롤 -->
<script>
function back_top()
{
        x = document.body.scrollLeft;
        y = document.body.scrollTop;
        step = 2;

        while ((x != 0) || (y != 0)) {
                scroll (x, y);
                step += (step * step / 300);
                x -= step;
                y -= step;
                if (x < 0) x = 0;
                if (y < 0) y = 0;
        }
        scroll (0, 0);
}
</script>
<!-- TOP 스크롤 -->

</head>

<body>

<table cellpadding="0" cellspacing="0" width="100%" height="1000"><tr><td></td></tr></table>
<img src="images/data_t.jpg" width="100" height="40" onclick="back_top()" style=cursor:hand alt="꼭대기로 올라갈까요?">

</body>
</html>


단순한 TOP기능으로 주로 사용되어 지는것들...과 비교를 해 보셔도 될듯,,,
href=#
href=#none
href=#top
href=main.html
onclick=reload()


P.S : 켁;;; 출처가 빠져버렸네요,, ^^;; 죄송~
오래돼서 어디서 스크랩 했는지는 모르고,, 아마도 그쪽에서 글거올때 출처지가 미니위니 인가 그랬을 거에요.


출처 예상지 : 미니위니 닷컴.