Home > Web Front-end > JS Tutorial > body text

jQuery method to add lens magnification effect to pictures_jquery

WBOY
Release: 2016-05-16 15:52:40
Original
1165 people have browsed it

The example in this article describes the jQuery method of adding a lens magnification effect to an image. Share it with everyone for your reference. The details are as follows:

The operation effect is as shown below:

The main code is as follows:

$(function () {
$("#img_01").imageLens();
$("#img_02").imageLens({ lensSize: 200 });
$("#img_03").imageLens({ imageSrc: "images/sample01.jpg" });
$("#img_04").imageLens({ borderSize: 8, borderColor: "#06f" });
});

Copy after login

Click here for the complete example codeDownload from this site.

I hope this article will be helpful to everyone’s jQuery programming.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template