JSFiddle - React, Tailwind, and code Playground

by RussAbbott

HTML

<!-- Lets make a simple image magnifier -->
<div class="magnify">
    
    <!-- This is the magnifying glass which will contain the original/large version -->
    <div class="large"></div>
    
    <!-- This is the small image -->
    <img class="small" src="http://thecodeplayer.com/uploads/media/iphone.jpg" width="200"/>
    
</div>

<div id = "credit"> 
    <p>From <a href = "http://thecodeplayer.com/walkthrough/magnifying-glass-for-images-using-jquery-and-css3" target="_blank">thecodeplayer.com</a>.
    </p>
    <p>
        <span class="bold">Challenge</span>: make the magnifying effect work here also.
    </p>
</div>

<!-- Lets load up prefixfree to handle CSS3 vendor prefixes -->
<script src="http://thecodeplayer.com/uploads/js/prefixfree.js" type="text/javascript"></script>
<!-- You can download it from http://leaverou.github.com/prefixfree/ -->

<!-- Time for jquery action -->
<script src="http://thecodeplayer.com/uploads/js/jquery-1.7.1.min.js" type="text/javascript"></script>

CSS

/*Some CSS*/
* {margin: 0; padding: 0;}
.magnify {width: 200px; margin: 50px auto; position: relative;}

#credit {
    font-family: trebuchet ms, sans-serif;
    margin: 100px;
    margin-top: 0px;
    background: #dca;
    padding: 10px; 
    float: left;
    border-radius:9px;
    box-shadow: 5px 5px 10px #764;
    border: groove  #764;
    width: 350px;
}

.bold {
    font-weight: bold;
}

/*Lets create the magnifying glass*/
.large {
    width: 175px; height: 175px;
    position: absolute;
    border-radius: 100%;
    
    /*Multiple box shadows to achieve the glass effect*/
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 
    0 0 7px 7px rgba(0, 0, 0, 0.25), 
    inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
    
    /*Lets load up the large image first*/
    background: url('http://thecodeplayer.com/uploads/media/iphone.jpg') no-repeat;
    
    /*hide the glass by default*/
    display: none;
}

/*To solve overlap bug at the edges during magnification*/
.small { display: block; }

JavaScript

$(document).ready(function(){

    var native_width = 0;
    var native_height = 0;

    //Now the mousemove function
    $(".magnify").mousemove(function(e){
        //When the user hovers on the image, the script will first calculate
        //the native dimensions if they don't exist. Only after the native dimensions
        //are available, the script will show the zoomed version.
        if(!native_width && !native_height)
        {
            //This will create a new image object with the same image as that in .small
            //We cannot directly get the dimensions from .small because of the 
            //width specified to 200px in the html. To get the actual dimensions we have
            //created this image object.
            var image_object = new Image();
            image_object.src = $(".small").attr("src");
            
            //This code is wrapped in the .load function which is important.
            //width and height of the object would return 0 if accessed before 
            //the image gets loaded.
            native_width = image_object.width;
            native_height = image_object.height;
        }
        else
        {
            //x/y coordinates of the mouse
            //This is the position of .magnify with respect to the document.
            var magnify_offset = $(this).offset();
            //We will deduct the positions of .magnify from the mouse positions with
            //respect to the document to get the mouse positions with respect to the 
            //container(.magnify)
            var mx = e.pageX - magnify_offset.left;
            var my = e.pageY - magnify_offset.top;
            
            //Finally the code to fade out the glass if the mouse is outside the container
            if(mx < $(this).width() && my < $(this).height() && mx > 0 && my > 0)
            {
                $(".large").fadeIn(100);
            }
            else
            {
                $(".large").fadeOut(100);
            }
...