이 기사의 예에서는 jQuery로 구현된 맞춤형 하단 복귀 및 상단 복귀 특수 효과 코드에 대해 설명합니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
이 효과를 만들기 위해 배운 jQuery 기능을 사용했습니다. 이 효과는 맨 아래로 돌아가기, 맨 위로 돌아가기, 웹사이트 메시지 탐색의 세 가지 기능을 결합합니다. 웹사이트 메시지의 링크를 원하는 링크로 변경할 수 있습니다. 탐색하는 데 유연하게 사용할 수 있습니다. 이 효과의 하이라이트는 호환성과 애니메이션 효과는 물론 아름답게 디자인된 화살표입니다.
런닝 효과 스크린샷은 다음과 같습니다.
온라인 데모 주소는 다음과 같습니다.
http://demo.jb51.net/js/2015/jquery-back-top-buttom-style-codes/
구체적인 코드는 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>特效加工厂</title> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> <style type="text/css"> body { margin:0; padding:0; font-size:12px; } #main { width:910px; margin:0 auto; height:2000px; } .go{width:47px;height:106px;position:fixed;_position:absolute;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||200)-(parseInt(this.currentStyle.marginBottom,10)||0)));right:12px;bottom:25%; background-image:url("images/tobg.png"); background-repeat:no-repeat;} .go a{background:url(images/a.png) no-repeat;display:block;text-indent:999em;width:37px;margin:5px;border:0;overflow:hidden;float:left; cursor:pointer;} .go .top{background-position:0 0px;height:22px} .go .feedback{background-position:0 -22px;height:32px} .go .bottom{background-position:0 -55px;height:22px} .go .top:hover{background-position:-38px -0px} .go .feedback:hover{background-position:-38px -22px} .go .bottom:hover{background-position:-38px -55px} </style> <script type="text/javascript"> $(function () { $(".top").click(//定义返回顶部点击向上滚动的动画 function () { $('html,body').animate({ scrollTop: 0 }, 700); }); $(".bottom").click(//定义返回顶部点击向上滚动的动画 function () { $('html,body').animate({ scrollTop: document.body.clientHeight }, 700); }); }) </script> </head> <body> <div id="main"> <div class="go"> <a title="返回顶部" class="top"></a> <a title="如果您有意见,请反馈给我们!" class="feedback" href="#" target="_blank"></a> <a title="返回底部" class="bottom" ></a> </div> </div> </body> </html>
이 기사가 jQuery 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.