当前位置:网站首页>页面返回顶部和固定导航栏js基础案例
页面返回顶部和固定导航栏js基础案例
2022-08-02 14:20:00 【铃儿响叮当不响】
案例代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.content {
margin: 0 0 0 200px;
overflow: hidden;
width: 800px;
height: 3000px;
background-color: skyblue;
float: left;
}
.backtop {
margin-left: 1000px;
margin-top: 550px;
width: 30px;
position: fixed;
float: left;
}
.backtop .icon {
height:50px;
width: 50px;
display: none;
opacity: 0.3;
}
.header {
position: fixed;
top: -80px;
left: 0;
width: 100%;
height: 80px;
background-color: pink;
text-align: center;
color: white;
line-height: 80px;
font-size: 20px;
transition: all .3s;
}
.miaosha {
width: 300px;
height: 300px;
background-color: sandybrown;
margin-top: 500px;
color: brown;
}
</style>
</head>
<body>
<div class="header">我是顶部导航栏</div>
<div class="content">
<div class="miaosha">秒杀模块</div>
</div>
<div class="backtop">
<img class="icon" src="./image/箭头.jpg">
</div>
<script>
// 1、页面滚动事件
let miaosha = document.querySelector('.miaosha')
let header = document.querySelector('.header')
let backtop = document.querySelector('.backtop')
let icon = document.querySelector('.icon')
window.addEventListener('scroll',function(){
if(document.documentElement.scrollTop >= backtop.offsetTop){
icon.style.display = 'block'
} else{
icon.style.display = 'none'
}
// console.log(document.documentElement.scrollTop)
// 2、要检测滚动的距离 >= 秒杀模块的offsetTop值 则滑入
// console.log(miaosha.offsetTop)
if( document.documentElement.scrollTop >= miaosha.offsetTop){
header.style.top = '0'
}else{
header.style.top = '-80px'
}
})
// 回到顶部
backtop.addEventListener('click',function(){
document.documentElement.scrollTop = 0
})
</script>
</body>
</html>
边栏推荐
猜你喜欢
随机推荐
JMM&synchronized&volatile详解
职工管理系统(SSM整合)
DOM - Element Box Model
支付系列文章:PCI合规能力建设
smart_rtmpd 的 VOD 接口使用说明
smart_rtmpd 的 NAT 映射方式使用说明
GC垃圾回收ZGC
网络运维系列:端口占用、端口开启检测
IDEA如何进行远程Debug
[Time series model] AR model (principle analysis + MATLAB code)
一分钟之内搭建自己的直播服务器?
小知识点系列-基于H2数据库单元测试
初识art-template模板引擎
【TCP 和 UDP 基本原理】
DOM - Event Mechanism and Event Chain
常见(MySQL)面试题(含答案)
网络运维系列:GoDaddy Shell DDNS配置
MATLAB file operations
【数据知多少】一文学懂通过Tushare、AKshare、baostock、Ashare、Pytdx获取股票行情数据(含代码)
【滤波器】最小均方(LMS)自适应滤波器