jqueryHow can I use jQuery to zoom an image when the user hovers over it?
Using jQuery, you can easily zoom an image when the user hovers over it. The following example code shows how to do this:
$(document).ready(function(){
$("img").hover(function(){
$(this).css("transform", "scale(1.2)");
},
function(){
$(this).css("transform", "scale(1)");
});
});
In this code, the $(document).ready()
function is used to ensure that the code runs when the page is ready. Then, the $("img")
selector is used to select all img elements on the page. The .hover()
method is then used to specify two functions to run when the user hovers over the image. The first function is used to increase the size of the image by applying a transform: scale(1.2)
CSS rule to it, while the second function is used to reset the size of the image when the user moves the mouse away from it.
Code explanation
$(document).ready()
: This function is used to ensure that the code runs when the page is ready.$("img")
: This selector is used to select all img elements on the page..hover()
: This method is used to specify two functions to run when the user hovers over the image.transform: scale(1.2)
: This CSS rule is used to increase the size of the image.transform: scale(1)
: This CSS rule is used to reset the size of the image.
Helpful links
More of Jquery
- How do I use jQuery's noconflict mode?
- How can I get the y position of an element using jQuery?
- How can I convert jQuery code to vanilla JavaScript?
- How can I convert XML data to JSON using jQuery?
- How can I use jQuery to check if an element is visible?
- How do I uncheck a checkbox using jQuery?
- How do I use the jQuery offset function?
- How do I use the jQuery masked input plugin?
- How do I update to the latest version of jQuery?
- How do I generate a QR code using jQuery?
See more codes...