当前位置: 首页 > article >正文

js编写缓慢回到顶部

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>缓慢回到顶部</title>

    <style>

        body {

            height: 2000px; /* 仅用于测试滚动效果 */

        }

        #scrollToTop {

            position: fixed;

            bottom: 20px;

            right: 20px;

            display: none;

            padding: 10px;

            background-color: #007bff;

            color: white;

            cursor: pointer;

        }

    </style>

</head>

<body>

    <div id="scrollToTop">回到顶部</div>

 

    <script>

        const button = document.getElementById('scrollToTop');

 

        // 显示或隐藏按钮

        window.addEventListener('scroll', () => {

            if (window.scrollY > 200) {

                button.style.display = 'block';

            } else {

                button.style.display = 'none';

            }

        });

 

        // 平滑回到顶部

        button.addEventListener('click', () => {

            const start = window.scrollY;

            const duration = 500; // 动画持续时间,单位:毫秒

            let startTime = null;

 

            function scrollAnimation(currentTime) {

                if (startTime === null) startTime = currentTime;

                const timeElapsed = currentTime - startTime;

                const progress = Math.min(timeElapsed / duration, 1);

                const easeInOut = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress;

 

                window.scrollTo(0, start - start * easeInOut);

 

                if (timeElapsed < duration) {

                    requestAnimationFrame(scrollAnimation);

                } else {

                    window.scrollTo(0, 0); // 确保最终位置准确

                }

            }

 

            requestAnimationFrame(scrollAnimation);

        });

    </script>

</body>

</html>

 

 

 


http://www.kler.cn/a/287719.html

相关文章:

  • NVR录像机汇聚管理EasyNVR多品牌NVR管理工具视频汇聚技术在智慧安防监控中的应用与优势
  • 十:详解HTTP的请求行
  • 【项目开发】URL中井号(#)的技术细节
  • 【AtCoder】Beginner Contest 380-C.Move Segment
  • 云原生之运维监控实践-使用Telegraf、Prometheus与Grafana实现对InfluxDB服务的监测
  • 丹摩征文活动|丹摩助力selenium实现大麦网抢票
  • 代码随想录八股训练营第二十五天| C++
  • OpenCV绘图函数(4)绘制轮廓线的函数drawContours()的使用
  • 【C语言】十六进制、二进制、字节、位、指针、数组
  • Spring理论知识(Ⅳ)——Spring Instrumentation模块
  • 深度学习(四)-卷积神经网络
  • Git 系列文章导航
  • 【Next.js 入门指南】5分钟创建你的第一个 Next.js 应用
  • 深度学习-OpenCV运用(3)
  • 大数据技术之Flume 企业开发案例——自定义 Source(9)
  • 恢复丢失的数据:iPhone 恢复指南
  • C语言学习笔记 Day15(文件管理--下)
  • 《python语言程序设计》第8章第12题生物信息:找出基因,生物学家使用字母A C T和G构成字符2串建模一个基因组(上)
  • C++ 11相关新特性(using与typedef、尾置返回值类型)
  • ecmascript和javascript的区别
  • unity游戏开发——标记物体 一目了然
  • 深度学习-11-为什么AI需要GPU
  • filter过滤器和reduce求和以及
  • 9.1centos安装postgres
  • JVM GC 调优
  • ARM体系与架构