CSS3 animation: the image gradually gets bigger when the mouse is on it and gradually shrinks when the mouse leaves it

CSS3 animation: the image gradually gets bigger when the mouse is on it and gradually shrinks when the mouse leaves it

Effect check address: Tour plan (uplanok.com)

Code:

img{width: 100%;border-radius: 3px;transition: all 2s;}
img:hover{transform: scale(1.2);}

The img outer tag element needs to be set to overflow: hidden, otherwise the image will overflow and cover other content after being enlarged.

This is the end of this article about CSS3 animation that makes an image gradually larger when the mouse is placed on it and gradually smaller when the mouse is removed from it. For more relevant CSS3 image zooming in and out, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  What is ssh? How to use? What are the misunderstandings?

>>:  How to use html2canvas to convert HTML code into images

Recommend

Install Linux using VMware virtual machine (CentOS7 image)

1. VMware download and install Link: https://www....

Detailed steps to implement the Excel import function in Vue

1. Front-end-led implementation steps The first s...

How to write beautiful HTML code

What Beautiful HTML Code Looks Like How to write ...

MySQL database JDBC programming (Java connects to MySQL)

Table of contents 1. Basic conditions for databas...

Why is your like statement not indexed?

Preface This article aims to explain the most bor...

MySQL replication table details and example code

MySQL replication table detailed explanation If w...

The leftmost matching principle of MySQL database index

Table of contents 1. Joint index description 2. C...

Teach you how to install mysql database on Mac

Download MySQL for Mac: https://downloads.mysql.c...

Vue-CLI3.x automatically deploys projects to the server

Table of contents Preface 1. Install scp2 2. Conf...

How to prevent website content from being included in search engines

Usually the goal of building a website is to have...

mysql subquery and join table details

Table of contents 1. What is a subquery? 2. Self-...