CSS Back to Top Code Example

CSS Back to Top Code Example

Most websites nowadays have long pages, some are four or five screens long, and some are two or three screens long. If a page is too long, in order to improve the user experience, a back to top button will appear on the right side of the page so that users can quickly return to the top to avoid visual screens when sliding the page. There are generally four ways to return to the top.

1. To return to the top through an anchor link, you need to add a tag called top to the body:

<a href="#top" target="_self">Back to top</a>

2. Use JavaScript to scroll back to the top and control the horizontal and vertical directions:

<a href="javascript:scroll(0,0)">JavaScript back to top<s/a>

3. Slide up slowly through JavaScript control, but it is not smooth enough. The code is as follows:

<a onclick="goScrollTop()">JavaScript slowly slides up</a>
function goScrollTop() {
    //Scroll the content by the specified number of pixels (the first parameter is the number of pixels to scroll right, the second parameter is the number of pixels to scroll down)
    //Upward is negative, downward is positive window.scrollBy(0, -100);
    //Delay recursive call to simulate scrolling up effect scrolldelay = setTimeout('goScrollTop()', 100);
    //Get the scrollTop value. For standard web pages that declare DTD, take document.documentElement.scrollTop. Otherwise, take document.body.scrollTop. Because only one of the two will take effect and the other will always be 0, so taking the sum of the two values ​​can get the real scrollTop value of the web page var sTop = document.documentElement.scrollTop + document.body.scrollTop;
    //Judge when the page reaches the top and cancel the delay code (otherwise the page will not be able to browse the page normally when it scrolls to the top)
    if (sTop == 0) clearTimeout(scrolldelay);
}

4. When the scroll bar is scrolled to a certain position, it is displayed. When the scroll bar rolls back upward, the upward back to top button is hidden. This method is the most commonly used method:

<div class="goTop">
    <span>Go</span>
</div>

jQuery code:

function goTop(min_height) {
    $(".goTop").click(
        function() {
            $('html,body').animate({
                scrollTop: 0
            }, 700);
        });
    //Get the minimum height of the page. If no value is passed in, the default is 600 pixels min_height=min_height?min_height:400;
    //Bind the processing function for the window's scroll event $(window).scroll(function() {
        //Get the vertical position of the window's scroll bar var s = $(window).scrollTop();
        //When the vertical position of the window's scroll bar is greater than the minimum height of the page, let the return to the top element appear gradually, otherwise fade out if (s > min_height) {
            $(".goTop").fadeIn(100);
        } else {
            $(".goTop").fadeOut(200);
        }
    });
}
 
 
$(function() {
    goTop();
});

CSS code:

.goTop {
    height: 40px;
    width: 40px;
    background: red;
    border-radius: 50px;
    position: fixed;
    top: 90%;
    right: 3%;
    display: none;
}
 
.goTop span {
    color: #fff;
    position: absolute;
    top: 12px;
    left: 8px;
}


This is the end of this article about CSS return to the top code examples. For more relevant CSS return to the top content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

Author:FlyElephant
Source: http://www.cnblogs.com/xiaofeixiang

<<:  Html+CSS floating advertisement strip implementation

>>:  Using Docker+jenkins+python3 environment to build a super detailed tutorial

Recommend

Tutorial on using iostat command in Linux

Preface It is said that if the people doing opera...

Complete code for implementing the vue backtop component

Effect: Code: <template> <div class=&quo...

In-depth analysis of MySQL data type DECIMAL

Preface: When we need to store decimals and have ...

MySQL 8.0.18 adds users to the database and grants permissions

1. It is preferred to use the root user to log in...

Summary of practical methods for JS beginners to process arrays

join() method: connects all elements in an array ...

Detailed explanation of creating stored procedures and functions in mysql

Table of contents 1. Stored Procedure 1.1. Basic ...

Specific use of lazy loading and preloading in js

Delayed loading (lazy loading) and preloading are...

Detailed explanation of the usage of the ESCAPE keyword in MySQL

MySQL escape Escape means the original semantics ...

Practical way to build selenium grid distributed environment with docker

Recently, I needed to test the zoom video confere...

Weather icon animation effect implemented by CSS3

Achieve results Implementation Code html <div ...

Ideas and methods for incremental backup of MySQL database

To perform incremental backup of the MySQL databa...

Detailed explanation of the use of various MySQL indexes

1. Slow query log 1.1 MySQL log types Logs are us...

Vite2.0 Pitfalls

Table of contents Vite project build optimization...