您好,登錄后才能下訂單哦!
這篇文章主要講解了“css怎么實現平滑滾動效果”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“css怎么實現平滑滾動效果”吧!
代碼如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>錨點平滑跳轉</title> <style> * { margin: 0; padding: 0; } html { scroll-behavior: smooth; } nav { width: 50%; height: 50px; text-align: center; position: fixed; left: 50%; transform: translateX(-50%); top: 0; background: green; } nav a { display: inline-block; line-height: 50px; color: #FFF; text-decoration: none; padding: 0 30px; } .box { width: 100%; text-align: center; font-size: 30px; color: #FFF; } #box1 { background: #d00; } #box2 { background: #42a4ff; } #box3 { background: #008080; } #to-top { position: fixed; bottom: 20px; right: 20px; border-radius: 50%; width: 80px; height: 80px; background: #ccc; color: #666; display: flex; justify-content: center; align-items: center; cursor: pointer; } </style> </head> <body> <nav> <a href="#box1">box1</a> <a href="#box2">box2</a> <a href="#box3">box3</a> </nav> <div id="box1" class=" box">box1</div> <div id="box2" class=" box">box2</div> <div id="box3" class=" box">box3</div> <div id="to-top">回到頂部</div> <script> onload = function () { const _Height = document.documentElement.clientHeight; const Box = document.getElementsByClassName('box'); for (var i = 0; i < Box.length; i++) { Box[i].style.height = _Height + 'px' Box[i].style.lineHeight = _Height + 'px' } document.querySelector('#to-top').onclick = function (el) { document.body.scrollTop = document.documentElement.scrollTop = 0; } } </script> </body> </html>
html { scroll-behavior: smooth; }
這樣,在回到頂部的時候,會有動畫不會立即過去,或有漸變動畫
錨點,切換屏幕的時候也會有動畫
.querySelector('#to-top').onclick = function (el) { document.body.scrollTop = document.documentElement.scrollTop = 0; }
感謝各位的閱讀,以上就是“css怎么實現平滑滾動效果”的內容了,經過本文的學習后,相信大家對css怎么實現平滑滾動效果這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。