Try to make a javascript magnifier,

Source: Internet
Author: User

Try to make a javascript magnifier,

The example in this article introduces the principle and code for implementing the magnifier Effect Based on javascript, and shares it with you for your reference. The specific content is as follows:

Principle:

A: magnifier B: small image

C: visible area of large images

D: large image

The cursor should be in the center of the magnifier, so the cursor is:

ClientX = A. offsetLeft () + B. offsetLeft + 1/2 * A. offsetWidth;

ClientY = A. offsetTop () + B. offsetTop + 1/2 * A. offsetHeight;

During the move of the mouse: The magnifiers A and D move in proportion to the mouse, because when the right border of A is moved to the right border of B, the larger graph D should also be moved to the place where the right border and the right border of C overlap, so their moving ratio is:( D. offsetWidth-C.offsetWidth)/(B. offsetWidth-A.offsetWidth) = B/

HTML section:

<Html> 

Js section:

<Script> window. onload = function () {var demo = document. getElementById ('Demo'); var small = document. getElementById ('small'); var big = document. getElementById ('Big '); var glass = document. getElementById ('glass ') var image = document. getElementById ('Big '). getElementsByTagName ('img ') [0]; var zhezhao = document. getElementById ('zhezhao'); zhezhao. onmouseover = function () {glass. style. display = 'block' big. style. display = 'block'} zhezhao. onmouseout = function () {glass. style. display = 'none' big. style. display = 'none'} // clarify the relationship between clientX, offsetLeft, and left. Distinguish zhezhao. onmousemove = function (ev) {var event = evvar left = event. clientX-demo.offsetLeft-small.offsetLeft-glass.offsetWidth/2; var top = event. clientY-demo.offsetTop-small. offsetTop-glass. offsetHeight/2; if (left <0) {left = 0;} else if (left> (small. offsetWidth-glass.offsetWidth) {left = small. offsetWidth-glass.offsetWidth} if (top <0) {top = 0;} else if (top> (small. offsetHeight-glass. offsetHeight) {top = small. offsetHeight-glass. offsetHeight} glass. style. left = left + 'px '; glass. style. top = top + 'px '; var percent = (image. offsetWidth-big.offsetWidth)/(small. offsetWidth-glass.offsetWidth) image. style. left =-percent * left + 'px 'image. style. top =-percent * top + 'px '}}</script>

The above is all of the content in this article, hoping to help you achieve the javascript magnifier effect.

Articles you may be interested in:
  • Use javascript to make a magnifier to enlarge the image
  • Fantastic Javascript image magnifiers
  • Js magnifiers Enlarge image effects
  • JavaScript image magnifiers (drag-and-drop and zoom effects)
  • JavaScript image cutting effect (magnifiers)
  • Javascript magnifier effect js component qsoft. PopBigImage. v0.35 added chrome support
  • JavaScript image magnifier code [simple code]
  • Common js magnifiers on e-commerce websites
  • Magnifiers written by native js

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.