您好,登錄后才能下訂單哦!
由于項(xiàng)目中要用到,遂記錄下來
用JQuery實(shí)現(xiàn) 錨標(biāo)記平滑移動
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>錨標(biāo)記平滑移動</title>
- </head>
- <body>
- <div id="top" >
- 頂部 <a href="#bottom" class="smooth">移動到底部</a>
- </div>
- <div id="appendBox">
- <!--填充內(nèi)容-->
- </div>
- <div id="bottom" >
- 底部 <a href="#top" class="smooth">移動到頂部</a>
- </div>
- <!--替換為自己本地JQuery函數(shù)庫-->
- <script src="jquery-1.4.2.min.js"type="text/javascript"></script>
- <script type="text/javascript">
- $(".smooth").click(function(){
- var href = $(this).attr("href");
- var pos = $(href).offset().top;
- $("html,body").animate({scrollTop: pos}, 1000);
- return false;
- });
- </script>
- </body>
- </html>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。