小志资源网好看的返回顶部图标-小刀资源网 www.xiaodaozy.com
小编没事也喜欢看看别人博客或者资源网 会把一些自己认为不错的资源保存下载分享给大家
今天看到一个不错的返回顶部的图标 于是就自己写了一个返回顶部的JS
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> *{ margin: 0; padding: 0; } .toTop{ display: none; position: fixed; right: 50%; bottom: -5px; transform: translateX(700px); width: 54px; height: 54px; border-radius: 54px 54px 0 0; overflow: hidden; cursor: pointer; } </style> <script src="./jquery-1.12.2.min.js"></script> <script> $(function(){ //返回顶部 $(window).scroll(function () { if ($(window).scrollTop() > 100) { $("#toTop").fadeIn(300); } else { $("#toTop").fadeOut(300); } }); //当点击跳转链接后,回到页面顶部位置 $("#toTop").click(function () { $('body,html').animate({ scrollTop: 0 }, 500); return false; }); }) </script> </head> <body style="height: 3000px;"> <div id="toTop"> <img src="./btt.png" alt=""> </div> </body> </html>
效果图片
小志资源网好看的返回顶部图标来源:小刀资源网
已经过安全软件检测无毒,请您放心下载。
转载请注明:QQ极客网 » 技术学习 » 小志资源网好看的返回顶部图标
版权声明
本文仅代表作者观点,不代表B5编程立场。
本文系作者授权发表,未经许可,不得转载。
继续浏览有关 小志资源网小志资源网好看的返回顶部图标 的文章
发表评论