转换为滚动返回顶部按钮

问题描述 投票:0回答:4

我在网站上创建了一个按钮,按照本教程滚动回到页面顶部:W3Schools

问题是,当你点击按钮时,没有过渡到顶部,你只是“传送”到页面顶部。因此,如果有人知道如何改进过渡或如何制作按钮。

HTML 代码:

<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>

CSS 代码:

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

JavaScript 代码:

//Get the button:
mybutton = document.getElementById("myBtn");

// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};

function scrollFunction() {
  if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
    mybutton.style.display = "block";
  } else {
    mybutton.style.display = "none";
  }
}

// When the user clicks on the button, scroll to the top of the document
function topFunction() {
  document.body.scrollTop = 0; // For Safari
  document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
javascript html css button
4个回答
2
投票

您可以通过将

scroll-behavior: smooth;
添加到您的 html 样式中或使用窗口 scrollTo 方法以及
Javascript
中的选项 behavior: 'smooth' 来完成此操作:

window.scrollTo({
  top: 0,
  left: 0,
  behavior: 'smooth'
});

1
投票

在你的

topFunction()
中尝试一下,它肯定会起作用。您可以为 animate 命令设置回调函数。 我已经在我的本地主机中进行了测试,它的工作方式就像一个魅力。 希望对您有帮助。

 function topFunction() {
     var body = $("html, body");
      body.stop().animate({scrollTop:0}, 500, 'swing', function() { 
           console.log("Animation has finished");
      });
    }

0
投票

遵循我下面给出的结构。

<!Doctype html>
<html>
<head>
<!--Add the CSS Code here-->
<style>
</style>
</head>
<body>
<!--Add more text here-->
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum....</p>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
</body>
<script>
<!--Add the JavaScript Code here-->
</script>
</html>```
Then just run the code.

0
投票

另一种方法是给网页顶部的 div 一个 id,然后创建一个带有 onclick 函数的按钮,然后在 js 中定义该函数,如下所示: (将“myfunction”更改为您的函数名称) (将“top”更改为页面顶部div的id)

    function myfunction {
   document.getElementbyID('Top').scrollintoview();
}

如果你想让它滚动平滑, 您可以将scroll-behavior:smooth添加到css中的html中 这是它的样子:

    html {
         scroll-behavior:smooth;
    }
© www.soinside.com 2019 - 2024. All rights reserved.