jquery点击回到顶部

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>回到顶部</title>
    <meta name="viewport" content="width=1200, maximum-scale=1.0, user-scalable=1">
    <style>
        .scrollToTop{
            display: block;
            width: 42px;
            height: 42px;
            position: fixed;
            bottom: 5%;
            right: 2%;
            display: none;
            font-size: 40px;
            background: #232323;
            color: #ebebeb;
            border-radius: 3px;
            text-align: center;
            line-height: 38px;
            z-index: 999;
        }
        .scrollToTop i img{margin:9px 0px 0px 2px;}
    </style>

</head>
<body style="height:2000px">

<a href="#" title="sroll" class="scrollToTop"><i><img src="https://www.cnblogs.com/images/cnblogs_com/wrongcode/1426773/o_uptop0.png" ></i></a>

<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript">
        $(window).scroll(function() {
            if ($(this).scrollTop() > 300) {
                $(‘.scrollToTop‘).fadeIn();
            } else {
                $(‘.scrollToTop‘).fadeOut();
            }
        });

        $(‘.scrollToTop‘).on("click", function() {
            $(‘html, body‘).animate({
                scrollTop: 0
            }, 800);
            return false;
        });
</script>

</body>
</html>

原文地址:https://www.cnblogs.com/phplearn/p/10610513.html

时间: 2024-11-10 21:11:53

jquery点击回到顶部的相关文章

JS-DOM:基础实操---点击回到顶部

CSS部分 <style type="text/css">body{    height: 3000px;}#div1{    height: 100px;    width: 100px;    background-color: #ccc;    position: fixed;    right: 0;    bottom: 0;}    </style> HTML部分 <body><div id="div1">

点击回到顶部

今天学习了点击回到顶部,总体感觉简单,先上完整代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } .box { margin: 0 auto; text-align: center; }

js点击回到顶部2

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>点击回到页面顶部</title> <style type="text/css"> *{margin: 0;padding: 0;} .scroll_top{width:60px;height: 60px;border: 1px solid red;position:

js点击回到顶部

---恢复内容开始--- <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>点击回到页面顶部</title> <style type="text/css"> *{margin: 0;padding: 0;} .scroll_top{width:60px;height: 60px;border: 1px solid

jquery点击回到页面顶部方法

1.代码实例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>05-jQuery- 回到顶部案例</title> <style> .bk-top-box { position: fixed; bottom: 40px; right: 10px; cursor: pointer; } </

Jquery点击返回顶部

<a href="#top" class="goToTop" style=" display: inline;">返回顶部</a> css样式: .goToTop a { color: #666; } .goToTop { background: url(../Scripts/top.png) no-repeat; display: none; position: fixed; top: 50%; margin-top:

【JQ+锚标记实现点击页面回到顶部】

前言:今天想写个页面常用到的[点击回到页面顶部或是首页的功能],生活和职场一样,总会有低谷的时候,这个时候咱也别怂.别怂.别怂,说三遍!那都不是事,工作没了,再找呗,就像我上周五,团队解散那天,我是笑着走的,还给小白挥了挥手,微笑一个.那句话叫什么来着,佛祖虽给你关了一扇门,说不定会再给你开一扇窗.明天我就换工作了,我感谢我的同学. a)下面看看实现,实现很简单,通过JQ判断滚动条向下滚动的长度大于多少时显示[回到顶部+回到首页]的图标(换一种理解:滚动条顶端距离页面顶部的距离),另外一种实现方

点击按钮回到顶部

写页面的时候,经常遇到当滚动条离开页面顶部的时候,会显示一个回到顶部的按钮,点击回到顶部,页面就滑动到页面的顶部.直接贴代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>返回顶部</title> <script src="jquery-1.11.3.js"></script> <style&

UITableView 或 UIScrollView 点击状态栏列表回到顶部

整理来自互联网- 这是tableView继承的scrollView的一个属性 scrollsToTop. 官方说明是这样的: // When the user taps the status bar, the scroll view beneath the touch which is closest to the status bar will be scrolled to top, but only if its `scrollsToTop` property is YES, its del