今日学习任务

  • [ ] 1.缓动动画经典案例

  • [x] (1)360开机动画

  • (2)手风琴
  • [ ] 2.三大家族及经典应用场景

  • [ ] (1)offset家族:获取元素自身真实宽高与位置

  • [ ] (2)scroll家族:获取元素内容真实宽高与位置

  • [ ] 经典场景:获取网页滚动距离(实现固定导航)

  • [ ] (3)client家族 : 获取元素可视区域大小

  • [ ] 经典场景:获取网页可视区域大小(实现响应式布局)

  • [x] 2.事件对象

  • [ ] (1)事件对象三大坐标系

  • (2)案例:div跟随鼠标移动
  • (3)获取事件触发点相对于元素自身位置
  • 3.经典案例:放大镜

01-动画经典案例

1.1-360开机动画

需求分析:点击关闭按钮

  1. 1)下半部分往下缓动(从屏幕消失)
  2. 2)整个盒子往右混动(从屏幕消失),需要等上一个动画结束之后执行

思路分析:事件三要素

  1. 1 获取元素:
  2. 2 注册事件:
  3. 3 事件处理:

效果预览

day06 - 图1

  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title>静态文件</title>
  6. <style>
  7. .box {
  8. /*width: 322px;*/
  9. position: fixed;
  10. bottom: 0;
  11. right: 0;
  12. overflow: hidden;
  13. }
  14. span {
  15. position: absolute;
  16. top: 0;
  17. right: 0;
  18. width: 30px;
  19. height: 20px;
  20. /*background-color: red;*/
  21. cursor: pointer;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="box" id="box">
  27. <span id="closeButton"></span>
  28. <div class="hd" id="headPart">
  29. <img src="images/t.jpg" alt=""/>
  30. </div>
  31. <div id="bottomPart" class="bd">
  32. <img src="images/b.jpg" alt=""/>
  33. </div>
  34. </div>
  35. <script src="animation.js"></script>
  36. <script>
  37. /* 需求分析:点击关闭按钮
  38. (1)下半部分往下缓动(从屏幕消失)
  39. (2)整个盒子往右混动(从屏幕消失),需要等上一个动画结束之后执行
  40. 思路分析:事件三要素
  41. 1 获取元素:
  42. 2 注册事件:
  43. 3 事件处理:
  44. */
  45. //1. 获取元素:
  46. let closeButton = document.getElementById('closeButton');
  47. let box = document.getElementById('box');//整个盒子
  48. let bottomPart = document.getElementById('bottomPart');//下半部分
  49. //2.注册事件:
  50. closeButton.onclick = function ( ) {
  51. //3.事件处理:
  52. animationSlow(bottomPart,{
  53. height:0
  54. },function ( ) {
  55. animationSlow(box, {
  56. width:0
  57. })
  58. });
  59. }
  60. </script>
  61. </body>
  62. </html>

1.2-手风琴

效果预览

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>动画-案例《手风琴》</title>
  6. <style>
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. }
  11. ul {
  12. list-style: none;
  13. width: 2400px;
  14. }
  15. #box {
  16. width: 1200px;
  17. height: 400px;
  18. border: 2px solid red;
  19. margin: 100px auto;
  20. overflow: hidden;
  21. }
  22. #box li {
  23. width: 240px;
  24. height: 400px;
  25. float: left;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div id="box">
  31. <ul>
  32. <li><img src="images/1.jpg" alt=""></li>
  33. <li><img src="images/2.jpg" alt=""></li>
  34. <li><img src="images/3.jpg" alt=""></li>
  35. <li><img src="images/4.jpg" alt=""></li>
  36. <li><img src="images/5.jpg" alt=""></li>
  37. </ul>
  38. </div>
  39. <script src="./animation.js"></script>
  40. <script>
  41. /*需求
  42. (1):给每一个li设置鼠标移入事件:当前li的宽度变成800,其他兄弟li宽度变成100
  43. (2):鼠标移出大盒子,所有的li的宽度都变成默认的240
  44. */
  45. //1.获取元素
  46. let box = document.querySelector('#box');
  47. let liList = document.querySelectorAll('#box li');
  48. //2.注册事件
  49. //2.1 li元素注册鼠标移入事件
  50. for (let i = 0; i < liList.length; i++) {
  51. liList[i].onmouseover = function () {
  52. //3. 排他思想
  53. for (let j = 0; j < liList.length; j++) {
  54. if (liList[j] == this) {
  55. animationSlow(liList[j], { width: 800 });
  56. } else {
  57. animationSlow(liList[j], { width: 100 });
  58. }
  59. }
  60. };
  61. };
  62. //2.2 给box注册鼠标移出事件
  63. box.onmouseout = function () {
  64. for (let j = 0; j < liList.length; j++) {
  65. animationSlow(liList[j], { width: 240 });
  66. };
  67. };
  68. </script>
  69. </body>
  70. </html>

02-三大家族(offset、scroll、client)

1.0-offset家族(元素自身大小)

offsetWidth:宽度,border(左右) + padding(左右)+content:getComputedStyle(元素)[width\border\padding]

offsetHeight:高度(与宽度逻辑一样)

offsetLeft:自己的border外部 到 定位父级 border的内部

offsetTop:与offsetLeft逻辑一样

offsetParent:定位父级

1.1-scroll家族(元素内容大小)

  • 1.offset家族:

    • offsetWidth、offsetHeight:获取元素自身的真实宽高(width+padding+border),不带单位,是number类型
    • offsetParent:获取一个元素的定位父级
    • offsetLeft、offsetTop:获取元素的外边框到定位父级的内边框的(左/上)距离
  • 2.scroll家族:(与offset家族类似,不带单位,number类型)

    • scrollWidth和scrollHeight:元素内容真实的宽高
    • scrollLeft和scrollTop:元素在滚动时超出内容区域的部分
    • onscroll:元素的滚动条事件,只要滚动就会触发

day06 - 图2)

  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title>标题</title>
  6. <style>
  7. .one {
  8. width: 200px;
  9. height: 200px;
  10. border: 1px solid #000;
  11. /*设置auto可以添加滚动条,如果此时div没有设置宽高,就会变成和内容一样大小*/
  12. overflow: auto;
  13. }
  14. img {
  15. vertical-align: top;
  16. /*width: 400px;*/
  17. /*height: 400px;*/
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="one" id="box">
  23. <img src="1.jpg" alt=""/>
  24. </div>
  25. </body>
  26. <script>
  27. /**1.offset家族:
  28. * offsetWidth、offsetHeight:获取元素自身的真实宽高(width+padding+border),不带单位,是number类型
  29. * offsetParent:获取一个元素的定位父级
  30. * offsetLeft、offsetTop:获取元素的外边框到定位父级的内边框的(左/上)距离
  31. * 2.scroll家族:(与offset家族类似,不带单位,number类型)
  32. * scrollWidth和scrollHeight:元素内容真实的宽高
  33. * scrollLeft和scrollTop:元素在滚动时超出内容区域的部分
  34. * onscroll:元素的滚动条事件,只要滚动就会触发
  35. *
  36. */
  37. let box = document.getElementById('box');
  38. console.log ( box.offsetWidth ,box.offsetHeight);//200,200 box自身的宽高
  39. //给box添加滚动条事件
  40. box.onscroll = function ( ) {
  41. console.log ( box.scrollWidth ,box.scrollHeight);//box内容的真实宽高
  42. // 内容区域 = 元素宽高 - 滚动条的宽度(17px)
  43. console.log (box.scrollLeft,box.scrollTop );//内容区域超出部分
  44. }
  45. </script>
  46. </html>

1.2-获取网页滚动距离

本小节知识点

  • 1.获取页面的HTML元素和body元素

    • HTML:document.documentElement;
    • body: document.body;
  • 2.获取整个页面的滚动事件:window.onscroll

    • 没有兼容性
  • 3.获取页面的scrollTop和scrollLeft:存在浏览器兼容性

    • 谷歌/火狐 : window.pageXOffset (左) window. pageYOffset(上)
    • IE浏览器: document.documentElement.scrollLeft/Top
    • 某些浏览器:document.body.scrollLeft/Top
  • 4.封装一个获取页面滚出去距离的浏览器兼容性函数:利用逻辑或的短路
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. body{
  8. width: 2000px;
  9. height: 2000px;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. </body>
  15. <script>
  16. /*本小节知识点
  17. 1.如果获取页面的HTML元素和body元素
  18. * HTML:document.documentElement;
  19. * body: document.body;
  20. 2.获取整个页面的滚动事件:window.onscroll
  21. * 没有兼容性
  22. 3.获取页面的scrollTop和scrollLeft:存在浏览器兼容性
  23. * 谷歌/火狐 : window.pageXOffset (左) window. pageYOffset(上)
  24. * IE浏览器: document.documentElement.scrollLeft/Top
  25. * 某些情况下(把<!DOCTYPE html>删掉):document.body.scrollLeft/Top
  26. 4.封装一个获取页面滚出去距离的浏览器兼容性函数:利用逻辑或的短路
  27. */
  28. //1.获取界面的HTML和body及docuemnt
  29. let html = document.documentElement;
  30. let body = document.body;
  31. //2.页面滚动事件
  32. window.onscroll = function ( ) {
  33. console.log ( getScroll ().scrollLeft, getScroll ().scrollTop );
  34. }
  35. //3.获取界面滚出去距离的兼容性封装(这个函数放到common.js文件名中以后会用到)
  36. function getPageScroll ( ) {
  37. let scrollLeft = window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft || 0;
  38. let scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
  39. return {
  40. scrollLeft : scrollLeft,//左边是对象属性名,右边是属性值
  41. scrollTop : scrollTop
  42. }
  43. }
  44. </script>
  45. </html>

1.3-案例:固定导航

  • 需求分析:当页面的顶部区域滚动出去之后,页面的导航栏不再滚动,而是固定在顶部
  • 思路分析:监听页面的滚动,当滚动距离超出顶部区域高度时,设置导航栏为fixed固定定位

    • 通过改变类名即可改变样式

效果预览

  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. * {
  8. margin: 0;
  9. padding: 0
  10. }
  11. .top {
  12. height: 168px;
  13. }
  14. img {
  15. vertical-align: top;
  16. }
  17. .main {
  18. margin: 0 auto;
  19. width: 1000px;
  20. margin-top: 10px;
  21. }
  22. .fixed {
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="top" id="topPart">
  31. <img id="pic" src="images/top.png" alt=""/>
  32. </div>
  33. <div class="nav" id="navBar">
  34. <img src="images/nav.png" alt=""/>
  35. </div>
  36. <div class="main" id="mainPart">
  37. <img src="images/main.png" alt=""/>
  38. </div>
  39. </body>
  40. <script>
  41. /*需求分析:当页面的顶部区域滚动出去之后,页面的导航栏不再滚动,而是固定在顶部
  42. * 思路分析:监听页面的滚动,当滚动距离超出顶部区域高度时,设置导航栏为fixed固定定位
  43. * 通过改变类名即可改变样式
  44. */
  45. //1.获取元素
  46. let topPart = document.getElementById("topPart");
  47. let navBar = document.getElementById("navBar");
  48. let mainPart = document.getElementById("mainPart");
  49. //获取上面那部分的高度。
  50. let topPartHeight = topPart.offsetHeight;
  51. //2.给页面一个滚动事件
  52. window.onscroll = function () {
  53. //2.1 先获取页面滚动的scrollTop
  54. let top1 = getPageScroll().scrollTop;
  55. //2.2 如果滚出去 的高度大于第一部分的高,就应该把中间的导航条给固定住。
  56. if(top1 >= topPartHeight){
  57. navBar.setAttribute("class","fixed");
  58. //导航部分设置为固定定位后不占据标准流,会把main顶上去
  59. //为了防止main突然顶上去造成顿闪,可以给main的margin-top加上导航栏的高度
  60. mainPart.style.marginTop = navBar.offsetHeight + 10 + "px";
  61. }else {
  62. //如果滚回去了,就修改导航部分为之前的样式
  63. navBar.setAttribute("class","nav");
  64. //导航部分取消了固定定位,需要将main部分的margin-top修改为原来的高度
  65. mainPart.style.marginTop = 10 + "px";
  66. }
  67. }
  68. //获取页面的scrollTop的值封装函数
  69. function getPageScroll(){
  70. return {
  71. scrollTop : window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,
  72. scrollLeft : window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft || 0
  73. };
  74. }
  75. </script>
  76. </html>

1.4-client家族(元素可视区域大小)

client家族:

  • clientWidth/clientHeight:获取可视区域的宽高(padding+content)
  • clientTop/clientLeft:不常用,其实就是左边框border-left和上边框border-top

day06 - 图3

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <style>
  8. #box{
  9. width: 200px;
  10. height: 200px;
  11. border: 5px solid black;
  12. padding: 5px;
  13. background-color: red;
  14. border-left: 10px solid black;
  15. border-top: 20px solid blue;
  16. /*overflow: auto;*/
  17. }
  18. </style>
  19. <body>
  20. <div id="box">
  21. <!--<img src="1.jpg" alt="">-->
  22. </div>
  23. </body>
  24. <script>
  25. /*client家族:
  26. * clientWidth/clientHeight:获取可视区域的宽高(可视内容的宽高 + padding)
  27. * clientTop/clientLeft:不常用,其实就是左边框border-left和上边框border-top
  28. */
  29. let box = document.getElementById('box');
  30. console.log ( box.clientWidth, box.clientHeight );//
  31. console.log ( box.clientLeft, box.clientTop );//
  32. box.onscroll = function ( ) {
  33. console.log ( box.clientWidth, box.clientHeight );//
  34. console.log ( box.clientLeft, box.clientTop );//
  35. }
  36. </script>
  37. </html>

1.5-获取网页可视区域大小

本小节知识点

  • 1.监听浏览器窗口变化的事件: window.onresize()
  • 2.获取页面的可视区域

    • 存在浏览器兼容问题,兼容情况与scroll家族基本类似
    • 谷歌/火狐 : window.innerWidth window. innerHeight
    • IE浏览器: document.documentElement.clientWidth/Height
    • 某些情况下(把删掉):document.body.clientWidth/Height
  • 3.封装一个获取页面的可视区域大小
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. </body>
  9. <script>
  10. /**本小节知识点
  11. * 1.监听浏览器窗口变化的事件: window.onresize()
  12. * 2.获取页面的可视区域
  13. *存在浏览器兼容问题,兼容情况与scroll家族基本类似
  14. * 谷歌/火狐 : window.innerWidth window. innerHeight
  15. * IE浏览器: document.documentElement.clientWidth/Height
  16. * 某些情况下(把<!DOCTYPE html>删掉):document.body.clientWidth/Height
  17. * 3.封装一个获取页面的可视区域大小
  18. *
  19. */
  20. //1.监听浏览器窗口发生变化
  21. window.onresize = function ( ) {
  22. console.log ( getClientSize().clientWidth,getClientSize().clientHeight );//
  23. }
  24. //2.封装浏览器兼容函数获取界面可视区域
  25. getClientSize = function ( ) {
  26. return {
  27. clientWidth : window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth || 0,
  28. clientHeight : window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight || 0,
  29. }
  30. }
  31. </script>
  32. </html>

1.6-响应式布局原理介绍

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <style>
  8. body{
  9. background-color: red;
  10. }
  11. </style>
  12. <body>
  13. </body>
  14. <script src="common.js"></script>
  15. <script>
  16. /*1.响应式布局:一个网站可以兼容多个终端
  17. 2.响应式布局原理:监听浏览器窗口的变化,根据窗口的大小变化来改变我们界面的布局
  18. */
  19. window.onresize = function ( ) {
  20. //PC端监听窗口变化
  21. let width = innerWidth;
  22. if(width >= 1000){
  23. document.body.style.backgroundColor = 'red';
  24. }else if(width >= 600){
  25. document.body.style.backgroundColor = 'green';
  26. }else {
  27. document.body.style.backgroundColor = 'hotpink';
  28. };
  29. //移动端监听横竖屏切换
  30. let orientation = innerWidth > innerHeight ? '横屏' : '竖屏';
  31. console.log(orientation);
  32. };
  33. </script>
  34. </html>

03-事件对象

1.1-事件对象介绍(获取事件对象)

  • 1.什么是事件对象event:当某一个事件被触发时(例如点击事件),此时浏览器会记录触发时的某些信息, 例如你是在哪个位置点击的,你在点击的时候是直接鼠标左键点击的,还是鼠标左右键一起点击(骚操作)的等等 浏览器把这些所有的信息放到一个变量中存储,这个变量的数据类型是对象,所以称之为事件对象
  • 2.如何获取事件对象:只需要在事件函数中添加一个参数即可

    • 我们在注册事件的时候会写一个函数告诉浏览器这个事件被触发就调用这个函数,浏览器调用这个函数的时候 会传递一个参数给你,这个参数就是事件对象
    • 事件对象的获取存在浏览器兼容性问题

      • 谷歌、火狐:随便写一个形参即可(通常要么是event要么是e)
      • IE8及之前:只能用window.event获取
      • 解决方案: e = e || window.event
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <style>
  8. #box{
  9. width: 200px;
  10. height: 200px;
  11. background:red;
  12. }
  13. </style>
  14. <body>
  15. <button id="box"></button>
  16. </body>
  17. <script>
  18. /*1.什么是事件对象event:当某一个事件被触发时(例如点击事件),此时浏览器会记录触发时的某些信息,
  19. 例如你是在哪个位置点击的,你在点击的时候是直接鼠标左键点击的,还是鼠标左右键一起点击(骚操作)的等等
  20. 浏览器把这些所有的信息放到一个变量中存储,这个变量的数据类型是对象,所以称之为事件对象
  21. 2.如何获取事件对象:只需要在事件函数中添加一个参数即可
  22. * 我们在注册事件的时候会写一个函数告诉浏览器这个事件被触发就调用这个函数,浏览器调用这个函数的时候
  23. 会传递一个参数给你,这个参数就是事件对象
  24. * 事件对象的获取存在浏览器兼容性问题
  25. * 谷歌、火狐:随便写一个形参即可(通常要么是event要么是e)
  26. * IE8及之前:只能用window.event获取
  27. * 解决方案: e = e || window.event
  28. */
  29. //我们在注册事件的时候,给我们的函数添加一个参数即可
  30. //触发事件时,浏览器会调用我们的函数,此时会把事件对象传递给我们,我们只需要写一个形参接收即可
  31. //原则上,函数的形参可以随便乱写,一般这个形参我们习惯上用event或者e
  32. document.getElementById('box').onclick = function ( e ) {
  33. //IE8及之前用window.event获取,可以用逻辑或的短路运算解决浏览器兼容性问题
  34. e = e || window.event;
  35. console.log ( e );
  36. console.log ( e.altKey );//点击的时候有没有按住alert键
  37. }
  38. </script>
  39. </html>

1.2-事件对象三大坐标系

  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title>标题</title>
  6. <style>
  7. * {
  8. padding: 0;
  9. margin: 0;
  10. }
  11. body {
  12. width: 2000px;
  13. height: 2000px;
  14. }
  15. .one {
  16. width: 200px;
  17. height: 200px;
  18. background-color: pink;
  19. position: absolute;
  20. top: 100px;
  21. left: 100px;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="one" id="box"></div>
  27. <script>
  28. //offset家族 offsetLeft offsetTop offsetHeight offsetWidth
  29. //scroll家族 scrollTop scrollLeft scrollWidth scrollHeight
  30. //client家族 clientWidth clientHeight
  31. //事件对象里面的常用的三个坐标
  32. let box = document.getElementById("box");
  33. box.onclick = function (e) {
  34. e = e || window.event;
  35. //1.电脑屏幕的左上角,距离你触发事件的那一点的x值和y值。
  36. console.log("e.screenX:"+e.screenX+"---e.screenY:"+ e.screenY);
  37. //2.浏览器可视区域,距离触发事件的那一点的x值和y值
  38. console.log("e.clientX:"+e.clientX+"---e.clientY:"+ e.clientY);
  39. //3.页面的左上角(哪怕页面滚走了,还是页面左上角),距离触发事件的那一点的x值和y值。
  40. //浏览器兼容问题:IE8及之前不支持
  41. console.log("e.pageX:"+e.pageX+"---e.pageY:"+ e.pageY);
  42. console.log ( getPagePoint ( e ).pageX, getPagePoint ( e ).pageY );
  43. }
  44. //pageX和pageY的兼容
  45. //pageX/Y坐标系相对于页面左上角,实际上就是界面滚定出去的距离 + 可视区域的距离
  46. function getPagePoint ( e ) {
  47. e = e || window.event;//事件对象兼容
  48. return {
  49. pageX : e.pageX || getPageScroll().scrollLeft + e.clientX,
  50. pageY : e.pageY || getPageScroll().scrollTop + e.clientY,
  51. };
  52. };
  53. </script>
  54. </body>
  55. </html>

1.3-案例:天使跟你飞

  • 需求分析:移动鼠标,改变图片的位置
  • 思路分析:

    • 1.监听鼠标在网页的移动事件 网页:window 鼠标移动:onmousemove
    • 2.让图片的位置与事件对象的触发点位置一直 界面元素定位 相对于 页面的左上角距离
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. body {
  8. width: 3000px;
  9. height: 3000px;
  10. }
  11. img {
  12. position: absolute;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <img src="tianshi.gif" alt="" id="img"/>
  18. </body>
  19. </html>
  20. <script>
  21. /*需求分析:移动鼠标,改变图片的位置
  22. 思路分析:1.监听鼠标在网页的移动事件 网页:window 鼠标移动:onmousemove
  23. 2.让图片的位置与事件对象的触发点位置一直 界面元素定位 相对于 页面的左上角距离
  24. */
  25. //获取图片
  26. let img = document.getElementById("img");
  27. //1.在网页里移动,2.onmousemove
  28. window.onmousemove = function (e) {
  29. e = e || window.event;//事件对象兼容
  30. //获取鼠标移动的位置
  31. img.style.left = getPagePoint(e).pageX + "px";
  32. img.style.top = getPagePoint(e).pageY + "px";
  33. }
  34. </script>

1.4-案例:div跟随鼠标移动(鼠标在div中心)

效果预览

  • 本小节知识点:监听页面鼠标移动

    • 1.window.onmousemove():IE8及以下不支持
    • 2.document.onmousemove():所有浏览器通用
  • 监听浏览器窗口变化:window.onresize() 所有浏览器通用的
  • 默认定位是以元素左上角,如果希望鼠标在元素中心,则应该往左和上分别偏移宽度和高度的一半
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. #box {
  8. width: 200px;
  9. height: 200px;
  10. background-color: red;
  11. position: absolute;
  12. left: 0;
  13. top: 0;
  14. padding: 50px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div id="box"></div>
  20. </body>
  21. <script>
  22. /*本小节知识点:监听页面鼠标移动
  23. 1.window.onmousemove():IE8及以下不支持
  24. 2.document.onmousemove():所有浏览器通用
  25. 监听浏览器窗口变化:window.onresize() 所有浏览器通用的
  26. */
  27. let box = document.getElementById("box");
  28. //IE8不支持的
  29. // window.onmousemove = function(){
  30. //
  31. // console.log("....");
  32. // }
  33. //所有浏览器通用的
  34. document.onmousemove = function (e) {
  35. e = e || window.event;
  36. //IE8不支持
  37. // console.log(e.pageX, e.pageY);
  38. //如果要让鼠标居中,那么还要往左边走宽度一半以及往上边走高度一半
  39. box.style.left = getPagePoint(e).pageX - box.offsetWidth / 2 + "px";
  40. box.style.top = getPagePoint(e).pageY - box.offsetHeight / 2 + "px";
  41. }
  42. </script>
  43. </html>

1.5-获取事件触发点相对于元素位置01

day06 - 图4)

  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. #box {
  8. width: 200px;
  9. height: 200px;
  10. background-color: pink;
  11. margin: 100px auto;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div id="box"></div>
  17. </body>
  18. <script>
  19. let box = document.getElementById('box');
  20. box.onclick = function(e){
  21. e = e || window.event;
  22. //蓝线 = 红线(e.pageX) - 绿线(this.offsetLeft)
  23. let x = e.pageX - this.offsetLeft;
  24. let y = e.pageY - this.offsetTop;
  25. box.innerText = 'x:' + x + 'y:' + y;
  26. };
  27. </script>
  28. </html>

1.6-获取事件触发点相对于元素位置02

  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title>标题</title>
  6. <style>
  7. .father {
  8. width: 300px;
  9. height: 300px;
  10. border: 20px solid #000;
  11. background-color: green;
  12. margin: 50px auto;
  13. overflow: hidden;
  14. position: relative;
  15. left: 0px;
  16. top: 0px;
  17. }
  18. .one {
  19. width: 200px;
  20. height: 200px;
  21. background-color: pink;
  22. margin: 100px auto;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="father" id="father">
  28. <div class="one" id="box"></div>
  29. </div>
  30. <script>
  31. let box = document.getElementById('box');
  32. box.onclick = function(e){
  33. e = e || window.event;
  34. //蓝线 = 红线(e.apgeX) -绿线(this.parentNode.offsetLeft) - 白线(this.parentNode.clientLeft) - 黄线(this.offsetLeft)
  35. let x = e.pageX - this.parentNode.offsetLeft - this.parentNode.clientLeft - this.offsetLeft;
  36. let y = e.pageY - this.parentNode.offsetTop - this.parentNode.clientTop - this.offsetTop;
  37. box.innerText = 'x' + x + 'y' + y;
  38. };
  39. </script>
  40. </body>
  41. </html>

04-经典案例:放大镜

效果预览

day06 - 图5

需求分析

  • 1.小图片鼠标移入时:出现遮罩层,并将遮罩部分放大在右边显示
  • 2.小图片鼠标移动时:遮罩层与大图片相应移动

    • 2.1:鼠标在遮罩层中心位置
    • 2.2:遮罩层边界检测,遮罩层不能超出图片范围
    • 2.3:遮罩层与大图片相应移动 假如 遮罩层大小50px 50px 大图片100px 100px,那么每当遮罩层鼠标移动1px,大图片应该移动2px。(100/50)
  • 3.小图片鼠标移出时:遮罩层与大图片隐藏
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. }
  11. .box {
  12. width: 350px;
  13. height: 350px;
  14. margin: 100px;
  15. border: 1px solid #ccc;
  16. position: relative;
  17. }
  18. .big {
  19. width: 400px;
  20. height: 400px;
  21. position: absolute;
  22. top: 0;
  23. left: 360px;
  24. border: 1px solid #ccc;
  25. overflow: hidden;
  26. display: none;
  27. }
  28. .mask {
  29. width: 175px;
  30. height: 175px;
  31. background: rgba(255, 255, 0, 0.4);
  32. position: absolute;
  33. top: 0;
  34. left: 0;
  35. cursor: move;
  36. display: none;
  37. }
  38. .small {
  39. position: relative;
  40. }
  41. .box img {
  42. vertical-align: top;
  43. }
  44. #bigBox>img {
  45. /*是让里面的图片脱标,为的就是让里面的图片进行一个移动*/
  46. position: absolute;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div class="box" id="box">
  52. <div class="small" id="smallBox">
  53. <img src="images/001.jpg" width="350" alt="" />
  54. <div class="mask" id="mask"></div>
  55. </div>
  56. <div class="big" id="bigBox">
  57. <img id="bigImg" src="images/0001.jpg" width="800" alt="" />
  58. </div>
  59. </div>
  60. <script>
  61. /*
  62. 1.分析需求(交互):
  63. (1)small盒子 鼠标移入/移出: 显示/隐藏 遮罩层mask和大盒子big
  64. (2)small盒子 移动
  65. * 1.mask跟随鼠标移动
  66. * 2.鼠标再mask中心
  67. * 3.mask只能在small盒子中移动(边界检测)
  68. * 4.big盒子中的图片相应移动
  69. * 假如mask大小100*100,big大小事200*200,鼠标每移动1px,图片移动 1px * 200/100 = 2px
  70. 2.思路分析(事件三要素)
  71. 获取元素:事件源:
  72. 注册事件:事件类型
  73. 事件处理:
  74. */
  75. //1.获取元素
  76. let smallBox = document.getElementById('smallBox');//小盒子
  77. let bigBox = document.getElementById('bigBox');//大盒子
  78. let mask = document.getElementById('mask');//遮罩
  79. let bigImg = document.getElementById('bigImg');//大盒子图片
  80. let box = document.getElementById('box');//最外面大盒子 (box.offsetLeft到body的距离)
  81. //2.注册事件
  82. //2.1 small盒子 鼠标移入
  83. smallBox.onmouseover = function () {
  84. //3.事件处理
  85. bigBox.style.display = 'block';
  86. mask.style.display = 'block';
  87. };
  88. //2.2 small盒子 鼠标移出
  89. smallBox.onmouseout = function () {
  90. //3.事件处理
  91. bigBox.style.display = 'none';
  92. mask.style.display = 'none';
  93. };
  94. //2.3 small盒子 鼠标移动
  95. smallBox.onmousemove = function (e) {
  96. e = e || window.event;
  97. //* 1.mask跟随鼠标移动
  98. //蓝线 = 红线(e.pageX)-绿线(box.offsetLeft)
  99. let x = e.pageX - box.offsetLeft;
  100. let y = e.pageY - box.offsetTop;
  101. //* 2.鼠标再mask中心
  102. x -= mask.offsetWidth / 2;
  103. y -= mask.offsetHeight / 2;
  104. //* 3.mask只能在small盒子中移动(边界检测)
  105. /*
  106. 0 <= x <= small盒子宽度350 - mask宽度175 = 175
  107. 0 <= y <= 350-175 = 175
  108. */
  109. x = x <= 0 ? 0 : x;
  110. x = x >= 175?175:x;
  111. y = y <= 0 ? 0 : y;
  112. y = y >= 175?175:y;
  113. mask.style.left = x + 'px';
  114. mask.style.top = y + 'px';
  115. //* 4.big盒子中的图片相应移动
  116. bigImg.style.left = -x * (bigImg.offsetWidth - bigBox.offsetWidth)/(smallBox.offsetWidth - mask.offsetWidth) + 'px';
  117. bigImg.style.top = -y * (bigImg.offsetHeight - bigBox.offsetHeight)/(smallBox.offsetHeight - mask.offsetHeight)+ 'px';
  118. };
  119. </script>
  120. </body>
  121. </html>