1. offset 概述
可以使用offset系列相关属性得到该元素的位置(偏移)、大小等。
- 获得元素距离带有定位父元素的位置
- 获得元素自身的大小(宽度高度)
- 注意:返回的数值都不带单位
offset系列常用属性:
offset系列属性 | 作用 |
---|---|
element.offsetParent | 返回作为该元素带有定位的父级元素 如果父级没有定位则返回body |
element.offsetTop | 返回元素相对带有定位父元素上方的偏移 |
element.offsetLeft | 返回元素相对带有定位父元素左边的偏移 |
element.offsetWidth | 返回自身包括padding、边框、内容区的宽度,返回数值不带单位 |
element.offsetHeight | 返回自身包括padding、边框、内容区的高度,返回数值不带单位 |
<!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></title>
<style>
* {
margin: 0;
padding: 0;
}
.father {
position: relative;
width: 200px;
height: 200px;
background-color: pink;
margin: 150px;
}
.son {
width: 100px;
height: 100px;
background-color: purple;
margin-left: 45px;
}
.w {
width: 200px;
height: 200px;
background-color: skyblue;
margin: 0 auto 200px;
padding: 10px;
border: 15px solid red;
}
</style>
</head>
<body>
<div class="father">
<div class="son"></div>
</div>
<div class="w"></div>
<script>
//offset系列
var father = document.querySelector('.father');
var son = document.querySelector('.son');
//1. 得到元素的偏移 位置 返回不带单位的数值
console.log(father.offsetTop);
console.log(father.offsetLeft);
//它以带有定位的父亲为准 如果有父亲或者没有 则以body为准
console.log(son.offsetLeft);
var w = document.querySelector('.w');
//2. 得到元素的大小、宽度、高度 是包括padding + border + width
console.log(w.offsetWidth);
console.log(w.offsetHeight);
//3. 返回带有定位的父亲 否则返回的是body
console.log(son.offsetParent);
console.log(son.parentNode); //返回最近一级的父亲 无论有无定位
</script>
</body>
</html>
2. offset 与 style 区别
offset
- offset可以得到任意的样式表中的样式值
- offset系列获得的数值是没有单位的
- offsetWidth包含padding+border+width
- offsetWidth等属性是只读属性,只能获取不能赋值
- 想要获取元素大小位置,用offset更合适
style
- style只能得到行内样式表中的样式值
- style.width获得的是带有单位的字符串
- style.width获得不包含padding和borer的值
- style.width是可读写属性,可以获取也可以赋值
- 想给元素更改值,用style改变
<!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></title>
<style>
.box {
width: 200px;
height: 200px;
background-color: pink;
padding: 10px;
}
</style>
</head>
<body>
<div class="box" style="width: 200px;"></div>
<script>
//offset与style区别
var box = document.querySelector('.box');
console.log(box.offsetWidth);
console.log(box.style.width);
//box.offsetWidth='300px'; offset不能修改
box.style.width = '300px';
</script>
</body>
</html>
获取鼠标在盒子内的坐标
<!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></title>
<style>
div {
width: 200px;
height: 200px;
background-color: pink;
margin: 100px;
}
</style>
</head>
<body>
<div class="box"></div>
<script>
var box = document.querySelector('.box');
box.addEventListener('mousemove', function (e) {
//console.log(e.pageX);
//console.log(e.pageY);
//console.log(box.offsetLeft);
var x = e.pageX - this.offsetLeft;
var y = e.pageY - this.offsetTop;
this.innerHTML = 'x坐标是' + x + ' y坐标是' + y;
})
</script>
</body>
</html>
通过鼠标在盒子内移动得到坐标
拖动模态框
<!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></title>
<style>
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #000000;
}
.login-header {
width: 100%;
height: 30px;
text-align: center;
line-height: 30px;
font-size: 24px;
}
.login {
display: none;
position: fixed;
left: 50%;
top: 50%;
width: 512px;
height: 280px;
border: 1px solid #ebebeb;
background: #ffffff;
box-shadow: 0 0 20px #ddd;
transform: translate(-50%, -50%);
z-index: 999;
}
.login-title {
position: relative;
width: 100%;
height: 40px;
margin: 10px 0 0 0;
text-align: center;
line-height: 40px;
font-size: 18px;
cursor: move;
}
.login-title span {
position: absolute;
right: -20px;
top: -30px;
width: 40px;
height: 40px;
border: 1px solid #ebebeb;
background: #ffffff;
font-size: 12px;
border-radius: 20px;
}
.login-input-content {
margin-top: 20px;
}
.login-button {
width: 50%;
margin: 30px auto;
text-align: center;
line-height: 40px;
font-size: 14px;
border: 1px solid #ebebeb;
}
.login-bg {
display: none;
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, .3);
}
.login-button a {
display: block;
}
.login-input {
overflow: hidden;
margin: 0 0 20px 0;
}
.login-input label {
float: left;
width: 90px;
height: 35px;
padding-right: 10px;
text-align: right;
line-height: 35px;
font-size: 14px;
}
.login-input input.list-input {
width: 350px;
height: 35px;
border: 1px solid #ebebeb;
line-height: 35px;
text-indent: 5px;
}
</style>
</head>
<body>
<div class="login-header"><a id="link" href="javascript:;">点击,弹出登录框</a></div>
<div id="login" class="login">
<div id="title" class="login-title">登录会员
<span> <a id="closeBtn" href="javascript:;" class="close-login">关闭</a></span>
</div>
<div class="login-input-content">
<div class="login-input">
<label>用户名</label>
<input type="text" placeholder="请输入用户名" name="info[username]" id="username" class="list-input">
</div>
<div class="login-input">
<label>登录密码:</label>
<input type="password" placeholder="请输入用户密码" name="info[password]" id="password" class="list-input">
</div>
</div>
<div id="loginBtn" class="login-button"><a href="javascript:;" id="login-button-submit">登录会员</a></div>
</div>
<!--遮盖层-->
<div id="bg" class="login-bg"></div>
<script>
//1.获取元素
var login = document.querySelector('.login');
var mask = document.querySelector('.login-bg');
var link = document.querySelector('#link');
var closeBtn = document.querySelector('#closeBtn');
var title = document.querySelector('#title');
//2.点击弹出层这个链接 link 让mask和login显示出来
link.addEventListener('click', function () {
mask.style.display = 'block';
login.style.display = 'block';
})
//3.点击closeBtn隐藏mask和login
closeBtn.addEventListener('click', function () {
mask.style.display = 'none';
login.style.display = 'none';
})
//4.开始拖拽
//(1)当我们鼠标按下时,就获得鼠标在盒子内的坐标
title.addEventListener('mousedown', function (e) {
var x = e.pageX - login.offsetLeft;
var y = e.pageY - login.offsetTop;
//(2)鼠标移动的时候,把鼠标在页面中的坐标-鼠标在盒子内的坐标就是模态框的left和top值
document.addEventListener('mousemove', move);
function move(e) {
login.style.left = e.pageX - x + 'px';
login.style.top = e.pageY - y + 'px';
}
//(3)鼠标弹起,就让鼠标移动事件移除
document.addEventListener('mouseup', function () {
document.removeEventListener('mousemove', move);
})
})
</script>
</body>
</html>
仿京东放大镜效果页面
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- 使用style修改样式 -->
<style>
.mbox {
position: relative;
width: 300px;
height: 300px;
background: url(s3.png) no-repeat;
background-size: 300px 300px;
border: 1px solid black;
}
.mask {
display: none;
position: absolute;
height: 100px;
width: 100px;
background-color: orange;
opacity: .4;
cursor: move;
}
.xbox {
display: none;
position: absolute;
width: 400px;
height: 400px;
left: 320px;
border: 1px solid black;
overflow: hidden;
}
.ximg {
position: absolute;
}
</style>
</head>
<body>
<div class="mbox">
<div class="xbox">
<img src="big.jpg" class="ximg">
</div>
<div class="mask"></div>
</div>
<script>
//mbox指小盒子,xbox指放大后所显示的大盒子,ximg指大盒子中的图片,mask指橙色的遮罩层
var mbox = document.querySelector('.mbox');
var xbox = document.querySelector('.xbox');
var ximg = document.querySelector('.ximg');
var mask = document.querySelector('.mask');
//给mbox添加鼠标经过事件
mbox.addEventListener('mouseover', function () {
//当鼠标经过mbox时,mask和xbox显示出来
mask.style.display = 'block';
xbox.style.display = 'block';
//给mbox添加鼠标移动事件
mbox.addEventListener('mousemove', move);
function move(e) {
//计算鼠标在mbox内的坐标。为了让鼠标居于mask中心,再各减去mask的宽高一半
var left = e.pageX - mbox.offsetLeft - mask.offsetWidth / 2;
var top = e.pageY - mbox.offsetTop - mask.offsetHeight / 2;
//计算显示比率,ximg最大移动距离/mask最大移动距离
var ratio = (ximg.offsetWidth - xbox.offsetWidth) / (mbox.offsetWidth - mask.offsetWidth);
//把left、top限制在mbox的范围中
if (left <= 0) {
left = 0;
} else if (left >= mbox.offsetWidth - mask.offsetWidth) {
left = mbox.offsetWidth - mask.offsetWidth;
}
if (top <= 0) {
top = 0;
} else if (top >= mbox.offsetHeight - mask.offsetHeight) {
top = mbox.offsetHeight - mask.offsetHeight;
}
mask.style.left = left + 'px';
mask.style.top = top + 'px';
//mask的移动方向与ximg的移动方向刚刚好相反,试一下把 '-' 去掉即可明白。
//且ximg移动距离为mask的ratio倍。
ximg.style.left = '-' + left * ratio + 'px';
ximg.style.top = '-' + top * ratio + 'px';
}
})
//给mbox添加鼠标离开事件
mbox.addEventListener('mouseout', function () {
mask.style.display = 'none';
xbox.style.display = 'none';
})
</script>
</body>
</html>
2. 元素可视区client系列
可使用client系列的相关属性动态得到该元素的边框大小、元素大小等。
client系列属性 | 作用 |
---|---|
element.clientTop | 返回元素上边框的大小 |
element.clientLeft | 返回元素左边框的大小 |
element.clientWidth | 返回自身包括padding、内容区的宽度,不含边框,返回数值不带单位 |
element.clientHeight | 返回自身包括padding、内容区的宽度,不含边框,返回数值不带单位 |
立即执行函数
<script>
//1.立即执行函数:不需要调用,立马能够自己执行
function fn() {
console.log(1);
}
fn();
//2.写法 (function() {})(); 或者 (function(){}()); 可传递参数
(function (a, b) {
console.log(a + b);
var num = 10;
})(1, 2); //第二个小括号可以看作是调用函数
(function (a, b) {
console.log(a + b);
var num = 10;
}(2, 3));
//3.立即执行函数的最大作用就是独立创建了一个作用域。里面的变量都是局部变量,不会有命名冲突
</script>
3. 元素scroll系列属性
可使用scroll系列的相关属性可以动态的得到该元素的大小、滚动的距离等。
scroll系列属性 | 作用 |
---|---|
element.scrollTop | 返回被卷去的上侧距离,返回数值不带单位 |
element.scrollLeft | 返回被卷去的左侧距离。返回数值不带单位 |
element.scrollWidth | 返回自身实际的宽度,不含边框,返回数值不带单位 |
element.scrollHeight | 返回自身实际的高度,不含边框,返回数值不带单位 |
页面被卷去的头部
如果浏览器的高(或宽)度不足以显示整个页面时,会自动出现滚动条。当滚动条向下滚动时,页面上面被隐藏掉的高度,我们就称为页面被卷去的头部。滚动条在滚动时会触发onscroll事件。
页面被卷去头部的兼容性问题
三种写法:
- 声明了DTD,使用document.documentElement.scrollTop
- 未声明DTD,使用document.body.scrollTop
- 新方法 window.pageYoffset 和 window.pageXoffset(ie9以上支持)
function getScroll() {
return {
left: window.pageXoffset || document.documentElement.scrollLeft || document.body.scrollLeft || 0,
top: window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,
};
}
使用的时候 getScroll().left
仿淘宝固定侧边栏
<!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></title>
<style>
.slider-bar {
position: absolute;
left: 50%;
top: 300px;
margin-left: 600px;
width: 45px;
height: 130px;
background-color: pink;
}
span {
display: none;
position: absolute;
bottom: 0;
}
.w {
width: 1200px;
margin: 10px auto;
}
.header {
height: 150px;
background-color: purple;
}
.banner {
height: 250px;
background-color: skyblue;
}
.main {
height: 1000px;
background-color: yellowgreen;
}
</style>
</head>
<body>
<div class="slider-bar">
<span class="goBack">返回顶部</span>
</div>
<div class="header w">头部区域</div>
<div class="banner w">banner区域</div>
<div class="main w">主体部分</div>
<script>
//1.获取元素
var sliderbar = document.querySelector('.slider-bar');
var banner = document.querySelector('.banner');
// banner.offsetTop就是被卷去头部的大小 一定要写在滚动的外面
var bannerTop = banner.offsetTop;
// 当我们侧边栏固定定位之后应该变化的数值
var sliderbarTop = sliderbar.offsetTop - bannerTop;
//获取main 主体元素
var main = document.querySelector('.main');
var goBack = document.querySelector('.goBack');
var mainTop = main.offsetTop;
//2.页面滚动事件 scroll
document.addEventListener('scroll', function () {
//console.log(11);
//window.pageYOffset 页面被卷去的部分
//console.log(window.pageYOffset);
//3.当我们页面被卷去的头部大于等于bannerTop,侧边栏就变为固定定位
if (window.pageYOffset >= bannerTop) {
sliderbar.style.position = 'fixed';
sliderbar.style.top = sliderbarTop + 'px';
} else {
sliderbar.style.position = 'absolute';
sliderbar.style.top = '300px';
}
//4.当我们页面滚动到main盒子时,就显示goBack模块
if (window.pageYOffset >= mainTop) {
goBack.style.display = 'block';
} else {
goBack.style.display = 'none';
}
})
</script>
</body>
</html>
mouseover 和 mouseenter区别
- 当鼠标移动到元素上就会触发mouseenter事件
- 类似mouseover,它们两者之间的差别是
- mouseover鼠标经过自身盒子会触发,经过盒子还会触发; mouseenter只会经过自身盒子触发
- 因为mouseenter不会冒泡
- 跟mouseover搭配鼠标离开mouseleave同样不会冒泡