奇妙的Javascript图片放大镜

时间:2024-04-30 08:51:22 

在Flash中我们用蒙板加上一些简单的脚本便可实现一个动态的图片放大镜。现在我们只用JavaScript结合CSS语言也可以轻易做出这个效果。

制作思路:“放大镜”后有一幅背景图,它是“放大了”的图的原本。我们通过移动“放大镜”时适当调整背景图的位置,使它显示的刚好是需要要放大的部分。

效果演示: (点这里在新窗口中查看)

制作步骤

1)先准备两幅内容相同尺寸不同的图片,这里我们找了一个400×300像素的缩略图small_hill.gif,一个800×600像素的大图big_hill.gif。然后再准备一个“放大镜”的图片,注意它中间部分必须是透明的,这里我们准备了一个绿色的方框 viewer.gif。

2)编写如下的代码:

以下是两幅图的代码,都它们作为层。第一幅是缩略图,第二幅是“放大镜”,首先将它的背景移到不可见的地方; 其中“ onclick="moveme=!moveme" ”表示每次点击它都改变“moveme”的布尔值。

<img src="small_hill.gif" id="bgLayer" style="position:absolute; left:150px; top:50px;">
<img src=
"viewer.gif" id="myviewer"  onclick="moveme=!moveme" onmousemove="viewit(this)"
style=
"left:0;top:0;background-repeat:no-repeat; background-position:2000px 2000px;position:absolute;">

以下是JavaScript脚本:

<script language="JavaScript">
  <!--
  var viewer_bgcolor="#FFFFFF"; //放大镜的背景色,建议设成和网页背景色相同。
  var bigmap="big_hill.gif"; //大图路径

  document.all.myviewer.style.backgroundImage='url('+bigmap+')';
  document.all.myviewer.style.backgroundColor=viewer_bgcolor;
  //因为大图作为背景无法设定和读取它的尺寸,只好把它的一个副本作为实图,但不可见:
  document.write('<img id="getsize" style="position:absolute; left:-2000px; top:-2000px;" src="'+bigmap+'">');

  var moveme=false; //该布尔值决定“放大镜”是否随鼠标移动,初始值为否
  function viewit(obj){
    if (moveme){
      //以下两行控制“放大镜”的移动:
      obj.style.left=event.x+parseInt(document.body.scrollLeft)-parseInt(obj.width)/2;
      obj.style.top=event.y+parseInt(document.body.scrollTop)-parseInt(obj.height)/2;

     //以下几行调整当“放大镜”移动时其背景图的位置,使其中心移到缩略图的某点时,其背景图上相应的点也移动到其中心。
     //其中Nx,Ny指大图宽和高分别是小图的几倍,bgx,bgy是背景图当移到的X,Y坐标。 
      Nx=parseInt(document.all.getsize.width)/parseInt(document.all.bgLayer.width);
      bgx=(-1)*(Nx-1)*(event.x-parseInt(document.all.bgLayer.style.left)+parseInt(document.body.scrollLeft))-parseInt(obj.style.left)+parseInt(document.all.bgLayer.style.left);

      Ny=parseInt(document.all.getsize.height)/parseInt(document.all.bgLayer.height);
      bgy=(-1)*(Ny-1)*(event.y-parseInt(document.all.bgLayer.style.top)+parseInt(document.body.scrollTop))-parseInt(obj.style.top)+parseInt(document.all.bgLayer.style.top);

      obj.style.backgroundPosition=bgx+" "+bgy;
    }
  }

  //-->
</script>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>放大镜</title> </head> <body bgcolor="#FFFFFF"> <center> --JS放大镜显示--  单击"放大镜"开始浏览,再次单击停止。</center>  <img src="http://www.softpure.com/soft/work/jsviewer/small_hill.gif" id="bgLayer" style="position:absolute; left:160px; top:50px;">  <img src="http://www.softpure.com/soft/work/jsviewer/viewer.gif" id="myviewer" onclick="moveme=!moveme" onmousemove="viewit(this)" style="background-repeat:no-repeat;background-position:2000px 2000px;position:absolute;"> <script language="JavaScript"> var viewer_bgcolor="#FFFFFF"; //放大镜的背景色,建议设成和网页背景色相同。 var bigmap="http://www.softpure.com/soft/work/jsviewer/big_hill.gif";    //大图路径 document.all.myviewer.style.backgroundImage='url('+bigmap+')'; document.all.myviewer.style.backgroundColor=viewer_bgcolor; document.write('<img id="getsize" style="position:absolute; left:-2000px; top:-2000px;" src="'+bigmap+'">'); var moveme=false; function viewit(obj){ if (moveme){ obj.style.left=event.x+parseInt(document.body.scrollLeft)-parseInt(obj.width)/2; obj.style.top=event.y+parseInt(document.body.scrollTop)-parseInt(obj.height)/2; Nx=parseInt(document.all.getsize.width)/parseInt(document.all.bgLayer.width); bgx=(-1)*(Nx-1)*(event.x-parseInt(document.all.bgLayer.style.left)+parseInt(document.body.scrollLeft))-parseInt(obj.style.left)+parseInt(document.all.bgLayer.style.left); Ny=parseInt(document.all.getsize.height)/parseInt(document.all.bgLayer.height); bgy=(-1)*(Ny-1)*(event.y-parseInt(document.all.bgLayer.style.top)+parseInt(document.body.scrollTop))-parseInt(obj.style.top)+parseInt(document.all.bgLayer.style.top); obj.style.backgroundPosition=bgx+" "+bgy; }} </script> </body> </html>


 

标签:奇妙的Javascript图片放大镜
0
投稿

猜你喜欢

  • SQLServer 镜像功能完全实现

    2011-09-30 11:33:07
  • iview实现动态表单和自定义验证时间段重叠

    2023-07-02 17:09:28
  • 总结python爬虫抓站的实用技巧

    2022-07-07 05:04:09
  • python获取指定网页上所有超链接的方法

    2023-07-18 11:50:20
  • 关于python中map函数的使用

    2022-10-30 22:43:16
  • 破解 屏蔽 防框架代码 top.location != self.location

    2008-11-27 12:59:00
  • Python语法学习之进程间的通信方式

    2023-04-03 11:30:28
  • 解决win7操作系统Python3.7.1安装后启动提示缺少.dll文件问题

    2021-08-09 00:56:29
  • 详解python3中的真值测试

    2022-03-10 13:56:59
  • python 用matplotlib绘制折线图详情

    2022-03-23 16:38:19
  • Python中zip函数如何使用

    2021-03-30 02:54:13
  • Linux下mysql的root密码修改方法

    2024-01-13 17:39:44
  • python3 os进行嵌套操作的实例讲解

    2022-11-01 09:49:35
  • Python爬取你好李焕英豆瓣短评生成词云的示例代码

    2021-04-06 12:13:21
  • Python+OpenCV解决彩色图亮度不均衡问题

    2023-02-08 23:14:53
  • ChatGPT如何写好Prompt编程示例详解

    2022-06-30 03:55:24
  • Python List列表对象内置方法实例详解

    2023-08-21 12:49:58
  • 基于PyQT5制作一个桌面摸鱼工具

    2021-02-06 17:57:21
  • Python selenium实现大麦网自动购票过程解析

    2023-10-17 05:43:10
  • 解析SQL2005中如何使用CLR函数获取行号

    2024-01-12 14:18:35
  • asp之家 网络编程 m.aspxhome.com