溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用AmazeUI怎么實現(xiàn)一個平滑滾動效果

發(fā)布時間:2021-04-14 16:05:57 來源:億速云 閱讀:190 作者:Leah 欄目:web開發(fā)

這篇文章給大家介紹使用AmazeUI怎么實現(xiàn)一個平滑滾動效果,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

具體代碼如下所示:

<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>平滑滾動</title>
<!--[if (gte IE 9)|!(IE)]><!-->
<script src="assets/js/jquery.min.js"></script>
<!--<![endif]-->
<!--[if lte IE 8 ]>
<script src="assets/ie8/jquery.min.js"></script>
<script src="assets/ie8/modernizr.js"></script>
<script src="assets/js/amazeui.ie8polyfill.min.js"></script>
<![endif]-->
<script src="assets/js/amazeui.min.js"></script>
<link rel="stylesheet" href="assets/css/amazeui.min.css">
</head>
<body style="margin:300px;">
<!-- $('html, body').animate({scrollTop: 0}, '500'); //兼容舊版IE的寫法 -->
<div style="height: 2000px;"></div>
<!-- 滾動到頂部 -->
<button data-am-smooth-scroll class="am-btn am-btn-success">滾動到頂部</button>
<!-- 滾動到底部 -->
<button id="doc-scroll-to-btm" class="am-btn am-btn-primary">滾動到底部</button>
<script>
  $('#doc-scroll-to-btm').on('click', function() {
    var $w = $(window);
    $w.smoothScroll({position: $(document).height() - $w.height()});
  });
</script>
<!-- 定義選項 -->
<button data-am-smooth-scroll="{position: 57, speed: 5000}" class="am-btn am-btn-danger">慢悠悠地滾到距離頂部 57px 的位置</button>
<!--通過 Data API-->
<!-- 在元素上添加 data-am-smooth-scroll 屬性。 -->
<button data-am-smooth-scroll class="am-btn am-btn-success">滾動到頂部</button>
<!-- 如果要指定滾動的位置,可以給這個屬性設(shè)一個值。 -->
<button data-am-smooth-scroll="{position: 189}" class="am-btn am-btn-secondary">指定滾動的位置</button>
<!--
通過 Javascript
$(window).smoothScroll([options]);
// 滾動到底部
$('#my-button').on('click', function() {
  var $w = $(window);
  $w.smoothScroll({position: $(document).height() - $w.height()});
});
-->
<div style="height: 2000px;"></div>
</body>
</html>

關(guān)于使用AmazeUI怎么實現(xiàn)一個平滑滾動效果就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI