1.0.0 • Published 7 years ago

lightzoom v1.0.0

Weekly downloads
23
License
ISC
Repository
github
Last release
7 years ago

Light-Zoom

JQuery plugin that use pure css to zoom on images, this enables you to zoom without loading bigger image and zoom even on gif images !


Demo


Installation


    <link href="glassstyle.css" rel="stylesheet">
    <script src="lightzoom.js"></script>

Usage:


    $(document).ready(function () {
        //Simple usage
        $('img.light-zoom').lightzoom();
        
        //customize
        $('img.light-zoom').lightzoom({
            zoomPower   : 3,    //Default
            glassSize   : 180,  //Default
        });
        
    });