jQuery實現(xiàn)滾動鼠標放大縮小圖片的方法(附demo源碼下載)
本文實例講述了jQuery實現(xiàn)滾動鼠標放大縮小圖片的方法。分享給大家供大家參考,具體如下:
在項目制作過程中,遇到了這么一個需求,就開發(fā)了一個,記錄一下。
首先,需要定義html元素和css樣式:
<div style="position:relative;"> <asp:Image ID="myImg" runat="server" Width="670px" /> <span style="position:relative;display:none; background:wheat;border:1px solid gray;padding:3px;overflow:hidden;" id="NotificationMsg">滾動鼠標中鍵,可以放大或者縮小圖片</span> </div>
在這個樣式中,我設置了圖片的樣式為670px,目的就是避免圖片過大的時候,顯示到了頁面外部的現(xiàn)象。
然后我使用了一個jquery mousewheel 的插件來解決鼠標中鍵的滾動問題,下面是具體的jquery操作代碼:
<script type="text/javascript">
$(document).ready(function() {
var count = 0;
$("#ctl00_ContentPlaceHolder1_myImg").hover(function(e) {
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
$("#NotificationMsg").css({ 'position': 'absolute', 'left': left, 'top': top });
$("#NotificationMsg").css("display", "block");
}, function() {
//alert('mouserout');
$("#NotificationMsg").css("display", "none");
}).mousewheel(function(event, delta, deltaX, deltaY) {
count++;
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; // evey step for scroll down or up
$(this).removeAttr('style');
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;
});
});
</script>
在這段代碼中,利用了originalEvent函數(shù)來獲取鼠標所處的位置,在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
然后在代碼中,我進行了如下的操作來確定圖片的初始高度和寬度以及圖片顯示的寬高比(目的是實現(xiàn)等比例縮放):
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主要是為了實現(xiàn)滾動的時候,能夠進行縮小和放大的比率值。做了這之后,我移除了image的width樣式,主要是為了實現(xiàn)放大或者縮小。
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相關內(nèi)容感興趣的讀者可查看本站專題:《jQuery拖拽特效與技巧總結》、《jQuery擴展技巧總結》、《jQuery常見經(jīng)典特效匯總》、《jQuery動畫與特效用法總結》、《jquery選擇器用法總結》及《jQuery常用插件及用法總結》
希望本文所述對大家jQuery程序設計有所幫助。
相關文章
jQuery Validation實例代碼 讓驗證變得如此容易
眾所周知,Jquery以其簡潔性讓無數(shù)人為之瘋狂。現(xiàn)在我要像大家介紹一個jQuery Validation,一看到Validation大家肯定第一直觀感覺就是這肯定是一個驗證框架,沒有錯,本文就是基于jQuery Validation展開討論。2010-10-10
jQuery實現(xiàn)級聯(lián)下拉框?qū)崙?zhàn)(5)
這篇文章主要為大家詳細介紹了jQuery實現(xiàn)級聯(lián)下拉框的相關資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-02-02
jQuery實現(xiàn)頁面內(nèi)錨點平滑跳轉特效的方法總結
通過jQuery實現(xiàn)頁面內(nèi)錨點平滑跳轉的方法很多,可以通過插件hovertreescroll實現(xiàn),也可以簡單的通過animate方法實現(xiàn),下面介紹這2種比較簡單的方法。2015-05-05
jquery實現(xiàn)漫天雪花飛舞的圣誕祝福雪花效果代碼分享
這篇文章主要介紹了jquery實現(xiàn)漫天雪花飛舞的圣誕祝福雪花效果,很浪漫,感興趣的小伙伴們可以參考一下2015-08-08

