search
HomeWeb Front-endCSS TutorialTips and methods for implementing magnifying glass effects with CSS

Tips and methods for implementing magnifying glass effects with CSS

Oct 20, 2023 pm 02:12 PM
cssmagnifierspecial effects

Tips and methods for implementing magnifying glass effects with CSS

Tips and methods to achieve magnifying glass effects with CSS

Abstract: CSS plays an important role in web design. It can not only control the style of text and images, but also Some cool special effects can be achieved. This article will introduce how to use CSS to implement a magnifying glass effect and provide specific code examples.

1. Preparation

Before we start, we need some image resources and basic HTML structure.

<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
  <div class="container">
    <img src="/static/imghwm/default1.png"  data-src="image.jpg"  class="lazy" alt="图片">
    <div class="zoom"></div>
  </div>
</body>
</html>

Among them, image.jpg is the picture that needs to be displayed, and style.css is the style sheet we will use to achieve the magnifying glass effect. Next, we will add the style of the special effect in style.css.

2. Basic styles

First, we need to create styles for the image container and magnifying glass.

.container {
  position: relative;
}

.zoom {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid #ccc;
  background-color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  visibility: hidden;
}

Here, we set the position of the image container to relative positioning so that the magnifying glass style can be positioned relative to the container. The magnifying glass style has some basic styles such as width, height, border and background color. We set the magnifying glass element to be invisible via pointer-events: none; and visibility: hidden;.

3. Realize the magnifying glass effect

Next, we will use mouse events and CSS to realize the magnifying glass effect.

.zoom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 400% 400%;
  background-repeat: no-repeat;
  visibility: hidden;
}

.container:hover .zoom {
  visibility: visible;
}

Here, we use the pseudo element :before to create a mask layer for the magnifying glass. The mask layer's styles include absolute positioning, width and height of 100%, and visibility of hidden. We achieve the magnification effect by setting the size of the background image for the mask layer to 400%. We set the visibility of the magnifying glass to visible when the mouse is hovering over the image container.

4. Implement the movement effect

Finally, we need to add a movement effect to the amplification effect.

.container:hover .zoom:before {
  visibility: visible;
}

.container:hover .zoom {
  background-image: url("image.jpg");
}

.container:hover .zoom:before {
  background-image: url("image.jpg");
  transform-origin: 0 0;
}

.container:hover .zoom:before {
  background-position: -100px -100px;
}

By setting the background image to the original image, we can get the enlarged effect. By setting transform-origin to 0 0 we can ensure that the magnifying glass is positioned correctly in the upper left corner. Finally, we achieve the enlargement effect by setting a negative value for the background position of the mask layer.

To sum up, we successfully implemented a magnifying glass special effect. Through reasonable HTML structure and CSS styles, we can easily add various special effects to improve the interactive experience of web pages.

Reference:
[1] W3Schools. CSS Selectors. [Online]https://www.w3schools.com/csSref/css_selectors.php. [Accessed on 24th August 2021].

The above is the detailed content of Tips and methods for implementing magnifying glass effects with CSS. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Where should 'Subscribe to Podcast' link to?Where should 'Subscribe to Podcast' link to?Apr 16, 2025 pm 12:04 PM

For a while, iTunes was the big dog in podcasting, so if you linked "Subscribe to Podcast" to like:

Browser Engine DiversityBrowser Engine DiversityApr 16, 2025 pm 12:02 PM

We lost Opera when they went Chrome in 2013. Same deal with Edge when it also went Chrome earlier this year. Mike Taylor called these changes a "Decreasingly

UX Considerations for Web SharingUX Considerations for Web SharingApr 16, 2025 am 11:59 AM

From trashy clickbait sites to the most august of publications, share buttons have long been ubiquitous across the web. And yet it is arguable that these

Weekly Platform News: Apple Deploys Web Components, Progressive HTML Rendering, Self-Hosting Critical ResourcesWeekly Platform News: Apple Deploys Web Components, Progressive HTML Rendering, Self-Hosting Critical ResourcesApr 16, 2025 am 11:55 AM

In this week's roundup, Apple gets into web components, how Instagram is insta-loading scripts, and some food for thought for self-hosting critical resources.

Git Pathspecs and How to Use ThemGit Pathspecs and How to Use ThemApr 16, 2025 am 11:53 AM

When I was looking through the documentation of git commands, I noticed that many of them had an option for . I initially thought that this was just a

A Color Picker for Product ImagesA Color Picker for Product ImagesApr 16, 2025 am 11:49 AM

Sounds kind of like a hard problem doesn't it? We often don't have product shots in thousands of colors, such that we can flip out the with . Nor do we

A Dark Mode Toggle with React and ThemeProviderA Dark Mode Toggle with React and ThemeProviderApr 16, 2025 am 11:46 AM

I like when websites have a dark mode option. Dark mode makes web pages easier for me to read and helps my eyes feel more relaxed. Many websites, including

Some Hands-On with the HTML Dialog ElementSome Hands-On with the HTML Dialog ElementApr 16, 2025 am 11:33 AM

This is me looking at the HTML element for the first time. I've been aware of it for a while, but haven't taken it for a spin yet. It has some pretty cool and

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Atom editor mac version download

Atom editor mac version download

The most popular open source editor