如何在 volusion 站点中添加滚动到顶部的浮动按钮?

How to add a scroll-to-top floating button in volusion site?

我有一个滥用网站。我想添加一个滚动到顶部的浮动。我尝试了很多 js 或 css 代码,但它不起作用。有什么建议吗?先感谢您。

你可以这样试试

<style type="text/css">
.scrollToTop {position:fixed;bottom:100px;right:100px;}
</style>

<a class="scrollToTop" href="javascript:scrollToTop();">Scroll to top</a>

<script type="text/javascript">
function scrollToTop() {
    $(window).scrollTop(0); // If you work with jQuery,
    document.body.scrollTop = 0; // Or not.
}
</script>