위토즈 - 개발자프로그램판매공간

정보공유

[기타] 화면 하단 TOP 버튼

 

 

화면이 길어질경우 버튼을 클릭하여 상단으로 올라가게 하고싶을경우.

 

 

JAVASCRIPT

 

function go_top(orix, oriy, desx, desy) {

 

    var Timer;

 

    if (document.body.scrollTop == 0) {

        var winHeight = document.documentElement.scrollTop;

    } else {

        var winHeight = document.body.scrollTop;

    }

 

    if (Timer) clearTimeout(Timer);

 

    startx = 0;

 

    starty = winHeight;

 

    if (!orix || orix < 0) orix = 0;

    if (!oriy || oriy < 0) oriy = 0;

 

    var speed = 7;

 

    if (!desx) desx = 0 + startx;

    if (!desy) desy = 0 + starty;

 

    desx += (orix - startx) / speed;

 

    if (desx < 0) desx = 0;

 

    desy += (oriy - starty) / speed;

 

    if (desy < 0) desy = 0;

 

    var posX = Math.ceil(desx);

    var posY = Math.ceil(desy);

 

    window.scrollTo(posX, posY);

 

    if ((Math.floor(Math.abs(startx - orix)) < 1) && (Math.floor(Math.abs(starty - oriy)) < 1)) {

        clearTimeout(Timer);

        window.scroll(orix, oriy);

    } else if (posX != orix || posY != oriy) {

        Timer = setTimeout("go_top(" + orix + "," + oriy + "," + desx + "," + desy + ")", 15);

    } else {

        clearTimeout(Timer);

    }

}

 

 

 

 

HTML

 

<a style="z-index:9999;display:scroll;position:fixed;bottom:8px;right:10px;" onclick="go_top();" title="top"><img src="./top.png" border=0 style="cursor:pointer" /></a> 

 

 

 

 

IMAGE 파일.

 

041bf3653af5a04bb6e83658236718f2_1497448743_9646.png
 

 

 

 

정보공유
Total 448건 14 페이지
번호 제목 글쓴이 날짜 조회
253 ajax 로 post 데이터 전송시 The action you have requested is not allowed 오류 뜰경우. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-12 32936
252 카텍좌표값 을 WGS84로 변환하기. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-11 59735
251 WGS84 두지점 간 거리 계산식. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-11 35012
250 mysql 근접한 값을 구하려 할때. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-11 32072
249 로그인하지 않았을경우 뒤로가기처리. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-10 34167
248 개발자모드로 사용하기. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-07 32338
247 html 코드 정리를 90%이상 빠르게 해주는 도구 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-07 50223
246 그누보드, 영카트 add_javascript 함수 안먹을 경우 해결법 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-06 36376
245 그누보드, 영카트 add_stylesheet 함수 안먹을 경우 해결법 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-06 42284
244 2단 레이아웃 만들기. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 06-22 34791
243 SIR 편리님의 올리신 SNS 로그인 API 설정. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 06-21 53269
열람중 화면 하단 TOP 버튼 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 06-14 33720
241 ajax 로 불러오는 html 에 hover 처리를 해야할경우 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-31 35873
240 차세대 javascript 컨트롤 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-22 49486
239 IE9 이전 버전에서 Canvas 사용가능하도록 하는 js 라이브러리 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-22 45154