博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JQuery滚动鼠标放大缩小图片
阅读量:7025 次
发布时间:2019-06-28

本文共 1799 字,大约阅读时间需要 5 分钟。

在项目制作过程中,遇到了这么一个需求,就开发了一个,记录一下。

首先,需要定义html元素和css样式:

View Code

在这个样式中,我设置了图片的样式为670px,目的就是避免图片过大的时候,显示到了页面外部的现象。

然后我使用了一个jquery mousewheel 的插件来解决鼠标中键的滚动问题,下面是具体的jquery操作代码:

View Code

在这段代码中,利用了originalEvent函数来获取鼠标所处的位置,在IE9和firefox下面测试是可以使用的:

var left = e.originalEvent.x || e.originalEvent.layerX || 0;  //get the left position  var top = e.originalEvent.y || e.originalEvent.layerY || 0;   //get the top position

然后在代码中,我进行了如下的操作来确定图片的初始高度和宽度以及图片显示的宽高比(目的是实现等比例缩放):

var height = $(this).attr("height");   //get initial height  var width = $(this).attr("width");     // get initial width var stepex = height / width;   //get the percentange of height / width var minHeight = 150;   // min height var tempStep = 50;    // every step for scrolling down or up $(this).removeAttr('style');

其中,tempStep主要是为了实现滚动的时候,能够进行缩小和放大的比率值。做了这之后,我移除了image的width样式,主要是为了实现放大或者缩小。

if (delta == 1) {  //up                    $(this).attr("height", height + count * tempStep);                    $(this).attr("width", width + count * tempStep / stepex);                }                else if (delta == -1) { //down                    if (height > minHeight)                        $(this).attr("height", height - count * tempStep);                    else                        $(this).attr("height", tempStep);                    if (width > minHeight / stepex)                        $(this).attr("width", width - count * tempStep / stepex);                    else                        $(this).attr("width", tempStep / stepex);                }                event.preventDefault();                count = 0;

上面这段就比较简单了,主要是进行上下滚动判断,然后等比例放大或者缩小图片。event.preventDefault()可以保证在滚动图片的过程中,页面不会随之滚动。

下面附上这个插件:

本插件支持jquery 1.2.2及其以上的版本。

 

转载地址:http://ccsxl.baihongyu.com/

你可能感兴趣的文章
8.16. config
查看>>
I.MX6 console 跳过 login
查看>>
ASP.NET 5 (vNext) 理解和概述
查看>>
第 44 章 LevelDB
查看>>
Java实现文件复制的四种方式
查看>>
使用数据库sqlite3 C语言实现登陆注册的功能
查看>>
[LeetCode] Distinct Subsequences
查看>>
Android gif 录屏
查看>>
51Nod 1277 字符串中的最大值(KMP,裸题)
查看>>
docker~windows版本的安装与使用
查看>>
eclipse集承jboss服务器
查看>>
Web APi之认证(Authentication)两种实现方式后续【三】(十五)
查看>>
如何建设高可用系统
查看>>
用户中心系统设计
查看>>
创建索引的两种方式比对
查看>>
阿里云计算公司总部开建 2021年竣工
查看>>
详解go语言的array和slice 【一】
查看>>
Microsoft Store 开发者分成已涨到 95%
查看>>
[20150803]无法通过sql_id找到sql语句2.txt
查看>>
简单分析percona-zabbix-templates
查看>>