Use JS to zoom in and out when you put the mouse on the image

Use JS to zoom in and out when you put the mouse on the image

Use JS to zoom in and out when the mouse is on the image. The specific code is as follows:

<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>
	<div id='div_jpg' style="width: 200px;height: 200px;">
		<img src="./128206.jpg" id="img" style="width: 100%;height: 100%;">
	</div>
	<script>
		var img = document.getElementById('img')
		var s1,s2
		console.log(img)
		// Image magnification effect i = 100;
		img.addEventListener('mouseover',function(){
			clearInterval(s1);
			s1 = setInterval(function(){
				i+=0.1;
				img.style.width = (i)+'%';
				img.style.height = (i)+'%';
				i = parseFloat(i);
				if(i>=120) clearInterval(s1);
			},1);
		})
		img.addEventListener('mouseout',function(){
			clearInterval(s2);
			s2 = setInterval(function(){
				i-=0.1;
				img.style.width = (i)+'%';
				img.style.height = (i)+'%';
				i = parseFloat(i);
				if(i<=100) clearInterval(s2); 
			})
		})

	</script>
</body>
</html>

Share the source code, friends who like it click to view:

Based on jQuery plug-in Pinchzoom.js to achieve finger touch picture zooming special effects source code

jQuery mouse hovers over the picture to enlarge and slide to display the title special effect

This concludes the article on how to use JS to zoom in and out by placing the mouse on an image. For more information on js image zooming in and out, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • js realizes the effect of clicking on the picture to pop up and enlarge it in the middle of the screen
  • js to achieve image enlargement display effect
  • js realizes image rotation js scrolls the middle of the mouse to zoom in and out of the image
  • JS clicks on the thumbnail to enlarge the picture in the center of the whole screen

<<:  MySql 5.6.35 winx64 installation detailed tutorial

>>:  CentOS 7 installation and configuration tutorial under VMware10

Recommend

Analyzing the node event loop and message queue

Table of contents What is async? Why do we need a...

10 Popular Windows Apps That Are Also Available on Linux

According to data analysis company Net Market Sha...

JavaScript implements AI tic-tac-toe game through the maximum and minimum algorithm

Without further ado, let’s run the screenshot dir...

How to use default values ​​for variables in SASS

Variables defined in SASS, the value set later wi...

A brief understanding of the three principles of adding MySQL indexes

1. The Importance of Indexes Indexes are used to ...

mysql5.7.19 winx64 decompressed version installation and configuration tutorial

Recorded the installation tutorial of mysql 5.7.1...

MySQL log settings and viewing methods

MySQL has the following logs: Error log: -log-err...

Vue implements countdown between specified dates

This article example shares the specific code of ...

JavaScript singleton mode to implement custom pop-up box

This article shares the specific code of JavaScri...

The whole process record of Vue export Excel function

Table of contents 1. Front-end leading process: 2...

How to modify the time zone and time in Ubuntu system

On a Linux computer, there are two times, one is ...

Sample code for implementing interface signature with Vue+Springboot

1. Implementation ideas The purpose of interface ...