How To Zoom Into Image Css

Ever wondered how to create a zoom effect on an image when you hover over it? Well, you’re in the right place! In this tutorial, we will learn how to zoom into an image using CSS. This simple and effective technique can be used to enhance the user experience on your website.

Step 1: Write the HTML code

First, let’s create a simple HTML structure for our image. We’ll use a div container to wrap the image, and assign a class to it. This class will be used to apply the CSS styles.




    <link rel="stylesheet" type="text/css" href="styles.css">


    <div class="image-container">
        <img src="your-image.jpg" alt="Your Image Description">
    </div>


Replace your-image.jpg and Your Image Description with your own image and description.

Step 2: Add the CSS code

Next, we will create a CSS file (styles.css) and add the following styles:

.image-container {
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 200px;
}

.image-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.2);
}

Let’s break down the CSS styles:

  • .image-container: We set the position to relative and overflow to hidden. This ensures that the zoom effect stays within the boundaries of the container. We also set the width and height of the container.
  • .image-container img: We set the width and height to 100% to make the image fit the container. We also add a transition property to create a smooth animation when the image is hovered.
  • .image-container:hover img: This is the key part of the zoom effect. We use the :hover pseudo-class to scale the image by a factor of 1.2 when the container is hovered.

Step 3: Test the zoom effect

Now, open your HTML file in a web browser and hover over the image. You should see a smooth zoom effect. Congratulations, you have successfully created a zoom effect using CSS!

In summary, to create a zoom effect on an image using CSS, simply create an HTML structure, apply the necessary CSS styles, and include a :hover pseudo-class to scale the image. You can customize the zoom effect by changing the scale factor and adjusting the transition duration.