back to top

 


Here is the code for the back to top thing. Insert it in a html-widget in your layout, doesn't matter where.

<a href="javascript:void(0);" onclick="scrollToTop()" style="position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 9999;"> //change settings here if you want it somewhere else on the screen
  <img src="INSERT URL OF PICTURE YOU WANT HERE" alt="Back to top" style="width: 100%; image-rendering: pixelated;" />
</a>
<script>
  function scrollToTop() {
    window.scrollTo({ top: 0, behavior: 'smooth' });
  }
</script>


0 件のコメント:

コメントを投稿