Files
ClassContent/历届学生/吴欣阳/项目开发/练习项目/课程练习/6.16/滚动固定/index.js
2024-09-27 02:06:13 +08:00

10 lines
259 B
JavaScript

var header = document.querySelector(".header");
window.onscroll = function() {
var high = document.querySelector("html").scrollTop;
if (high > 300) {
header.classList.add("fixed");
} else {
header.classList.remove("fixed")
}
}