博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
SPARK安装一:Windows下VirtualBox安装CentOS
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
UVa11078:Open Credit System
查看>>
MongoDB的简单使用
查看>>
git clone 遇到的问题
查看>>
hdfs 命令使用
查看>>
hdu 1709 The Balance
查看>>
prometheus配置
查看>>
react native props state 網絡請求 native組件等一些基礎知識
查看>>
定宽320 缩放适配手机屏幕
查看>>
BZOJ 2120 数颜色 【带修改莫队】
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
Codeforces 40 E. Number Table
查看>>
CLR via C#(第3 版)
查看>>
java语法之final
查看>>
关于响应式布局
查看>>
详解ASP.Net 4中的aspnet_regsql.exe
查看>>