jQuery realizes the picture following effect

jQuery realizes the picture following effect

This article shares the specific code of jQuery to achieve the picture following effect for your reference. The specific content is as follows

Achieve results

Functions to be implemented:

* When the mouse comes in, a large picture will be displayed;
* Move the mouse out to hide the large image;
* Move the mouse inside the big picture, and the big picture will move along with it.

Code

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<style type="text/css">
 body {
  text-align: center;
 }
 #small {
  margin-top: 150px;
 }
 #showBig {
  position: absolute;
  display: none;
 }
</style>
<script type="text/javascript" src="script/jquery-1.7.2.js"></script>
<script type="text/javascript">
 /*
 * Functions to be implemented:
 * When the mouse comes in, a large picture will be displayed;
 * Move the mouse out to hide the large image;
 * Move the mouse inside the big picture, and the big picture will move along with it.
  */
 $(function(){

     /*
     * When the mouse enters or leaves, show or hide the large image*
     */
     //Bind events to small images$("#small").bind("mouseover mouseout mousemove",function (event) {
            /*
    * If the mouse is moved out, the large image disappears;
    * Mouse over to display the large image.
             */
         if(event.type == "mouseover"){
             $("#showBig").show();
   } else if (event.type == "mouseout"){
             $("#showBig").hide();
   } else if(event.type == "mousemove"){
             console.log(event);
                $("#showBig").offset({
                    left: event.pageX + 10,
     top: event.pageY + 10
     /*
     * Originally, the mouse is in the upper left corner of the large image, but a problem will occur: when the mouse moves from the upper left corner of the small image to the lower right corner, the mouse will first leave the area of ​​the large image and be judged as mouseout, so the large image should be hidden;
     * Later, it was discovered that the area below was actually the small picture area, which was judged as nouseover, and the large picture was displayed again.
     * ----> Will cause the page to change too quickly* ==> Solution: Place the mouse outside the large image, at a certain distance from the upper left corner of the large image.
     * When the mouse moves from the upper left corner of the small picture to the lower right corner, the above situation will be avoided. * Because, as long as the mouse is still within the range of the small picture, the large picture will not block the small picture where the mouse will reach the next moment. */
    });
   }

        });

 });
</script>
</head>
<body>

 <img id="small" src="img/small.jpg" />
 
 <div id="showBig">
  <img src="img/big.jpg">
 </div>

</body>
</html>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Example of using jQuery to implement image following mouse
  • jQuery achieves a complete example of magnetic image following effect

<<:  Graphic tutorial on installing tomcat8 on centos7.X Linux system

>>:  Detailed example of using if statement in mysql stored procedure

Recommend

Example code for implementing a pure CSS pop-up menu using transform

Preface When making a top menu, you will be requi...

How to increase HTML page loading speed

(1) Reduce HTTP requests. (Merge resource files a...

Solution to Nginx SSL certificate configuration error

1. Introduction When a web project is published o...

4 Practical Tips for Web Page Design

Related articles: 9 practical tips for creating we...

Bootstrap+Jquery to achieve calendar effect

This article shares the specific code of Bootstra...

Example of exporting and importing Docker containers

Table of contents Exporting Docker containers Imp...

react+antd.3x implements ip input box

This article shares the specific code of react+an...

Nginx URL rewriting mechanism principle and usage examples

URL rewriting helps determine the preferred domai...

Comprehensive understanding of html.css overflow

Comprehensive understanding of html.css overflow ...

Some pitfalls of JavaScript deep copy

Preface When I went to an interview at a company ...

Web Design Principles of Hyperlinks

<br />Related articles: 9 practical tips for...

MySQL 5.6 binary installation process under Linux

1.1 Download the binary installation package wget...

MySQL 8.0.11 installation summary tutorial diagram

Installation environment: CAT /etc/os-release Vie...

MySQL 8.0 WITH query details

Table of contents Learning about WITH queries in ...

JavaScript implements an input box component

This article example shares the specific code for...