


CSS achieves the effect of scaling the image when the mouse passes over it (code example)
The content of this article is about how to use CSS to achieve the effect of image scaling (slow changes, with transition effects, and the scaling process has animated transitions) when the mouse passes over the image. It mainly uses CSS transform property, css3 transition property, the following implementation effects and specific implementation methods, I hope it will be helpful to you.
Let’s take a look at the effect preview first
Code interpretation
HTML part Code
<div class="content"> <ul> <li><img class="amplify lazy" src="/static/imghwm/default1.png" data-src="img/1.jpg" title="放大"/ alt="CSS achieves the effect of scaling the image when the mouse passes over it (code example)" ></li> <li><img class="narrow lazy" src="/static/imghwm/default1.png" data-src="img/1.jpg" title="缩小"/ alt="CSS achieves the effect of scaling the image when the mouse passes over it (code example)" ></li> </ul> </div>
Define the container size, overflow: hidden; you can hide the overflow part when the size of the child container exceeds the parent container
* { margin: 0; padding: 0; font-family: "微软雅黑"; } ul li{ list-style: none; } .content{ width: 310px; height: 420px; padding: 5px; border: 1px solid #000; margin: 10px auto; } /*定义容器的大小*/ .content ul li{ display: block; width: 300px; margin: 0 auto; margin: 5px; overflow: hidden;/*隐藏溢出*/ border: 1px solid #000; }
Define the original scaling ratio of the image transform: scale(1 ),.
The transition effect when the image is zoomed: transition: all 1s ease 0s; all styles ease (gradually slow down) changes within 1 second. In addition to ease (default value), the transition attributes include: linear (Constant speed), ease-in: (accelerate), ease-out: (decelerate), ease-in-out: (accelerate and then decelerate)
.content ul li img{ display: block; border: 0; width: 100%; transform: scale(1); transition: all 1s ease 0s; -webkit-transform: scale(1); -webkit-transform: all 1s ease 0s; }
When the mouse moves to the picture, the zoom effect of the picture: scale If the value in () is greater than 1, it will be enlarged; if the value in scale() is less than 1, it will be reduced.
/*图片放大*/ .content ul li:hover .amplify{ transform: scale(1.3); transition: all 1s ease 0s; -webkit-transform: scale(1.3); -webkit-transform: all 1s ease 0s; } /*图片缩小*/ .content ul li:hover .narrow{ transform: scale(0.8); transition: all 1s ease 0s; -webkit-transform: scale(0.8); -webkit-transform: all 1s ease 0s; }
The above is the detailed content of CSS achieves the effect of scaling the image when the mouse passes over it (code example). For more information, please follow other related articles on the PHP Chinese website!

CSS Grid is a powerful tool for creating complex, responsive web layouts. It simplifies design, improves accessibility, and offers more control than older methods.

Article discusses CSS Flexbox, a layout method for efficient alignment and distribution of space in responsive designs. It explains Flexbox usage, compares it with CSS Grid, and details browser support.

The article discusses techniques for creating responsive websites using CSS, including viewport meta tags, flexible grids, fluid media, media queries, and relative units. It also covers using CSS Grid and Flexbox together and recommends CSS framework

The article discusses the CSS box-sizing property, which controls how element dimensions are calculated. It explains values like content-box, border-box, and padding-box, and their impact on layout design and form alignment.

Article discusses creating animations using CSS, key properties, and combining with JavaScript. Main issue is browser compatibility.

Article discusses using CSS for 3D transformations, key properties, browser compatibility, and performance considerations for web projects.(Character count: 159)

The article discusses using CSS gradients (linear, radial, repeating) to enhance website visuals, adding depth, focus, and modern aesthetics.

Article discusses pseudo-elements in CSS, their use in enhancing HTML styling, and differences from pseudo-classes. Provides practical examples.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
