国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

使用jquery animate創建平滑滾動效果(可以是到頂部、到底部或指定地方)

2024-05-06 16:06:43
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了使用jquery animate創建平滑滾動效果,效果可以滾動到頂部、到底部或頁面中指定地方,生要的是非常平滑,很舒服,需要的朋友可以參考下

采用錨點進行頁面中的跳轉的確很方便,但是要想增加網頁的效果,可以使用jquery中的animate,實現滾動的一個動作,慢慢的滾動到你想跳轉到的位置,從而看起來會非常高大上。

滾動到頂部:

復制代碼 代碼如下:

$('.scroll_top').click(function(){$('html,body').animate({scrollTop: '0px'}, 800);});

滾動到指定位置:

復制代碼 代碼如下:

$('.scroll_a').click(function(){$('html,body').animate({scrollTop:$('.a').offset().top}, 800);});


完整實例源碼參考:

復制代碼 代碼如下:


<!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>js平滑滾動到頂部、底部、指定地方</title>
<script type="text/javascript" src="http://cdn.staticfile.org/jquery/2.1.1-rc2/jquery.min.js"></script>
<style>
 .box{ height:200px; width:100%; background:#ccc; margin:10px 0;}
 .location{ position:fixed; right:0; bottom:10px; width:20px; background:#FFC; padding:5px; cursor:pointer;color:#003};
</style>
</head>

<body>
<div></div>
<div></div>
<div></div>
<div></div>
<div>產品介紹產品介紹產品介紹產品介紹產品介紹產品介紹產品介紹產品介紹產品介紹產品介紹產品介紹產品介紹產品介紹</div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>

<div>
  <p>返回頂部</p>
  <p>產品介紹</p>
  <p>滑到底部</p>
</div>
<script type="text/javascript">
 jQuery(document).ready(function($){
  $('.scroll_top').click(function(){$('html,body').animate({scrollTop: '0px'}, 800);});
  $('.scroll_a').click(function(){$('html,body').animate({scrollTop:$('.a').offset().top}, 800);});
  $('.scroll_bottom').click(function(){$('html,body').animate({scrollTop:$('.bottom').offset().top}, 800);});
 });
</script>
</body>
</html>

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 仪陇县| 特克斯县| 元朗区| 梁山县| 咸阳市| 铜陵市| 章丘市| 武城县| 皮山县| 伊宁市| 丰顺县| 长武县| 贡觉县| 三河市| 偏关县| 勃利县| 仙游县| 平昌县| 怀化市| 固镇县| 济阳县| 潼关县| 平陆县| 松溪县| 麟游县| 乌拉特前旗| 芦山县| 武邑县| 信阳市| 富阳市| 双桥区| 门头沟区| 吴堡县| 高青县| 清河县| 伊春市| 塔河县| 衡东县| 古浪县| 东乡县| 云南省|