您好,登錄后才能下訂單哦!
這篇文章主要介紹“前端開發AmazeUI平滑滾動如何實現”,在日常操作中,相信很多人在前端開發AmazeUI平滑滾動如何實現問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”前端開發AmazeUI平滑滾動如何實現”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
具體代碼如下所示:
<!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 >
<!-- $('html, body').animate({scrollTop: 0}, '500'); //兼容舊版IE的寫法 -->
<div ></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>
<!-- 如果要指定滾動的位置,可以給這個屬性設一個值。 -->
<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 ></div>
</body>
</html>
到此,關于“前端開發AmazeUI平滑滾動如何實現”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。