Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to achieve the effect of returning to the top of a web page through JS/CSS

2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article is about how to achieve the top effect of a web page through JS/CSS. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

CSS button style:

# myBtn {

Display: none; / * hidden by default * /

Position: fixed

Bottom: 20px

Right: 30px

Z-index: 99

Border: none

Outline: none

Background-color: red; / * set the background color, you can set the color or picture you want * /

Color: white; / * text color * /

Cursor: pointer

Padding: 15px

Border-radius: 10px; / * fillet * /

}

# myBtn:hover {

Background-color: # 555

}

JS Code:

/ / when the web page slides down, 20px appears the "return to the top" button

_ window.onscroll = function () {scrollFunction ()}

Function scrollFunction () {console.log (121)

If (document.body.scrollTop > 20 | | document.documentElement.scrollTop > 20) {

Document.getElementById ("myBtn") .style.display = "block"

} else {

Document.getElementById ("myBtn") .style.display = "none"

}

}

/ / Click the button to return to the top

Function topFunction () {

Document.body.scrollTop = 0

Document.documentElement.scrollTop = 0

}

Thank you for reading! This is the end of this article on "how to achieve the top effect of web pages through JS/CSS". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report