jQuery實現滾動滑鼠放大縮小圖片的方法(附demo源碼下載),jquerydemo

來源:互聯網
上載者:User

jQuery實現滾動滑鼠放大縮小圖片的方法(附demo源碼下載),jquerydemo

本文執行個體講述了jQuery實現滾動滑鼠放大縮小圖片的方法。分享給大家供大家參考,具體如下:

在項目製作過程中,遇到了這麼一個需求,就開發了一個,記錄一下。

首先,需要定義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,目的就是避免圖片過大的時候,顯示到了頁面外部的現象。

然後我使用了一個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函數來擷取滑鼠所處的位置,在IE9和firefox下面測試是可以使用的:

var left = e.originalEvent.x || e.originalEvent.layerX || 0; //get the left positionvar 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 widthvar stepex = height / width;  //get the percentange of height / widthvar minHeight = 150;  // min heightvar 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()可以保證在滾動圖片的過程中,頁面不會隨之滾動。

下面附上這個外掛程式:

點擊此處本站下載。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.