Created
August 5, 2012 04:23
-
-
Save kany/3261648 to your computer and use it in GitHub Desktop.
Image - Magnifying Glass - jQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
consignment_items_controller.rb | |
def show | |
@consignment_item = ConsignmentItem.find(params[:id]) | |
@magnified_images = "" | |
@consignment_item.images.each_with_index do |image, index| | |
@magnified_images += "jQuery('#magnifyimage_#{index}').iZoom();" | |
end | |
end | |
consignment_items/show.html.haml | |
= javascript_include_tag "iZoom.min" | |
-# This javascript handles the magnifier | |
-# http://archive.plugins.jquery.com/project/iZoom | |
:javascript | |
$(document).ready(function() { | |
#{@magnified_images} | |
}); | |
- @consignment_item.images.each_with_index do |image, index| | |
= link_to( image_tag(image.file, :width => "350", :height => "480", :id => "magnifyimage_#{index}"), "#{image.file}") | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* author: iosif chiriluta | |
* website: www.iosif.chiriluta.ro | |
* script version: 1.2 | |
* script link download: http://iosif.chiriluta.ro/final/iZoom/iZoom.js | |
* demo script: http://iosif.chiriluta.ro/final/iZoom | |
*/ | |
(function($){$.fn.iZoom=function(options){options=$.extend({'diameter':150,'borderColor':'#ccc','borderWidth':'1px','borderStyle':'solid','imgPath':''},options||{});var $this=$(this);var loupe=$this;var wrpImage;var lWidth;var lHeight;var sWidth;var sHeight;$this.each(function(){image=new Image();image.src=options.imgPath+$this.attr('src');});$this.bind({mouseenter:function(e){$this.css('cursor','crosshair');sWidth=$this.width();sHeight=$this.height();var lImage=new Image();lImage.src=options.imgPath+$this.attr('src');lWidth=lImage.width;lHeight=lImage.height;loupe=$('<div>').css({position:'absolute',width:options.diameter,height:options.diameter,'border-width':options.borderWidth,'border-style':options.borderStyle,'border-color':options.borderColor,overflow:'hidden','z-index':'1000','-moz-border-radius':options.diameter/2,'-khtml-border-radius':options.diameter/2,'border-radius':options.diameter/2,background:'#fff url('+lImage.src+') no-repeat'}).attr('id','iLoupe');$('body').append(loupe);},mousemove:function(e){var sxPointer=e.pageX-$this.offset().left-parseInt($this.css('padding-left'));var syPointer=e.pageY-$this.offset().top-parseInt($this.css('padding-top'));loupe.css({left:e.pageX+10,top:e.pageY+10});var sxPointerPer=sxPointer/sWidth*100;var syPointerPer=syPointer/sHeight*100;sxPointerPer=Math.round(sxPointerPer*Math.pow(10,10))/Math.pow(10,10);syPointerPer=Math.round(syPointerPer*Math.pow(10,10))/Math.pow(10,10);var sXPointer=Math.round(((sxPointerPer/100*lWidth)*Math.pow(10,0))/Math.pow(10,0));var sYPointer=Math.round(((syPointerPer/100*lHeight)*Math.pow(10,0))/Math.pow(10,0));(sxPointer>=0&&sxPointer<=sWidth&&syPointer>=0&&syPointer<=sHeight)?loupe.css({"background-position":(-sXPointer+options.diameter/2)+"px "+(-sYPointer+options.diameter/2)+"px"}):false;},mouseleave:function(){if(!loupe.is('img')){loupe.stop(true,true).fadeOut(300,function(){loupe.remove();});}}});};})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment