博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单版—返回顶部
阅读量:4946 次
发布时间:2019-06-11

本文共 978 字,大约阅读时间需要 3 分钟。

页面右下角返回顶部

html

css

.sriLink{    position: fixed;    right: 50%;    margin-right: -665px;    bottom: 90px;    z-index: 100;}.sriLink a{    display: block;    width: 50px;    height: 50px;    background: #eceded;    text-align: center;    padding-top: 8px;    color: white;    border-radius: 3px;    margin-top: 5px;    line-height: 16px;}.sriLink .back_top a {    background: #e4e4e4 url(../image/back_top.png) no-repeat center;}

js

/*滚动事件*/window.addEventListener('scroll',function(e){    var t = document.documentElement.scrollTop || document.body.scrollTop;    if(t > 400 ){        $('.back_top').show();    }else{        $('.back_top').hide();    }})/*全局页面中间内容高度*/$().ready(function(){    var Height = $(window).height();    var h = (Height - 212)+'px' //头部和底部总高为212   $('.sriContainer').css('min-height',h);})

转载于:https://www.cnblogs.com/haoluck/p/9103667.html

你可能感兴趣的文章
Strict Standards: Only variables should be passed by reference
查看>>
Slab-based Intersection
查看>>
将输入流转为字符串工具类
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
高斯消元
查看>>
AngularJs表单验证
查看>>
regasm.exe 注册dll
查看>>
什么是死锁,简述死锁发生的四个必要条件,如何避免与预防死锁
查看>>
静态方法是否属于线程安全
查看>>
fegin 调用源码分析
查看>>
Linux的基本命令
查看>>
02号团队-团队任务3:每日立会(2018-12-05)
查看>>
sql 语法大全
查看>>
SQLite移植手记1
查看>>
Java AmericanFlagSort
查看>>
Mysql远程连接报错
查看>>
C# windows程序应用与JavaScript 程序交互实现例子
查看>>
sqlServer去除字段中的中文
查看>>
HashMap详解
查看>>
Adobe Scout 入门
查看>>