zoukankan      html  css  js  c++  java
  • 用JavaScript中jQuery编写放大镜效果

      1 <!DOCTYPE html>
      2 <html lang="en">
      3 
      4 <head>
      5     <meta charset="UTF-8">
      6     <meta name="viewport" content="width=device-width, initial-scale=1.0">
      7     <meta http-equiv="X-UA-Compatible" content="ie=edge">
      8     <title>Document</title>
      9     <style>
     10         #big {
     11              400px;
     12             height: 400px;
     13             border: 1px solid black;
     14             overflow: hidden;
     15             display: none;
     16             position: absolute;
     17             background-color: white;
     18             background-image: url('./image/1.bmp');
     19             opacity: 0.8;
     20         }
     21 
     22         #small {
     23              350px;
     24             height: 350px;
     25             border: 1px solid black;
     26             background-image: url('./image/11.bmp');
     27         }
     28 
     29         #img {
     30              800px;
     31             height: 800px;
     32         }
     33 
     34         #div {
     35              175px;
     36             height: 175px;
     37             background-color: blue;
     38             opacity: 0.5;
     39             position: absolute;
     40             display: none;
     41         }
     42     </style>
     43 </head>
     44 
     45 <body>
     46 
     47     <div id="small">
     48         <div id="div"></div>
     49         <!-- <img src="./image/11.bmp" /> -->
     50     </div>
     51     <div id="img">
     52         <div id="big">
     53             <!-- <img src="./image/1.bmp" /> -->
     54         </div>
     55     </div>
     56     <script src="./jquery-1.12.4.min.js"></script>
     57     <script>
     58         //当鼠标在图片上移动时的操作
     59         $(window).on('load', function () {
     60             $("#small").on('mouseenter', function () {
     61                 let position = $(this).position();//获取small偏移
     62                 $("#big").css({//大的图片距离小的图片的距离
     63                     top: position.top,
     64                     left: position.left + $(this).width() + 80
     65                 }).show();
     66             })
     67       
     68             $("#small").on('mousemove', function (e) {//鼠标在图片上移动
     69                 let left1 =e.pageX-$(this).offset().left;
     70                 let top1=e.pageY-$(this).offset().top;
     71                 left1=left1-80<0?90:left1;
     72                 top1=top1-80<0?90:top1;
     73                 left1=left1-80>175?263:left1;
     74                 top1=top1-80>175?263:top1;                
     75                 $('#div').css({//小方块显示
     76                     display: "block",
     77                     left:left1-80,
     78                     top:top1 -80
     79                 })
     80 
     81                 let position = $(this).position();
     82                 //第一种
     83                 //计算鼠标在图片上面的偏移坐标
     84                 // let X = e.pageX - position.left;
     85                 // let Y = e.pageY - position.top;
     86                 // //定位放大镜的距离
     87                 // $("#big").scrollTop(Y-100).scrollLeft(X-100);
     88 
     89                 // //第二种
     90                 let x =$("#div").position().left/350*800;
     91                 let y =$("#div").position().top/350*800;
     92                 $("#big").css({
     93                     backgroundPosition:`-${x}px -${y}px`
     94                 })
     95 
     96 
     97             });
     98             $("#small").on('mouseleave', function () {//鼠标移出时
     99                 $("#big").css({
    100                     display: "none"
    101                 })
    102                 $('#div').css({//小方块显示
    103                     display: "none",
    104 
    105                 })
    106             })
    107 
    108             // console.log($.unique($.merge([1,2],[2,3,4])))
    109         })
    110     </script>
    111 </body>
    112 
    113 </html>
  • 相关阅读:
    四十九、在SAP中查看程序资源结构对象
    四十八、在SAP中函数参数的使用
    四十七、在SAP中,把功能区块整合成一个函数,通过调用函数的办法使代码简洁明了
    四十六、SAP的Message中E和W区别
    四十五、SAP中Message的管理
    四十四、在SAP中冻结第一行表头
    四十三、在SAP中初始化勾选值
    四十二、在SAP中添加单选框
    四十一、在SAP中添加多条件选择框
    四十、SAP中CASE语句用法
  • 原文地址:https://www.cnblogs.com/yangkaiming/p/9216977.html
Copyright © 2011-2022 走看看