html鼠标悬停居中放大
时间: 2023-12-08 08:37:57 浏览: 104
鼠标悬停图片居中放大
以下是一个HTML鼠标悬停居中放大的例子:
```html
<!DOCTYPE html>
<html>
<head>
<title>Hover Zoom</title>
<style type="text/css">
.container {
display: inline-block;
position: relative;
margin: 50px;
}
img {
display: block;
width: 300px;
height: 200px;
transition: transform .5s ease;
}
.container:hover img {
transform: scale(1.2);
}
.overlay {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
opacity: 0;
transition: .5s ease;
background-color: rgba(0,0,0,0.5);
}
.container:hover .overlay {
opacity: 1;
}
.text {
color: white;
font-size: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<img src="https://picsum.photos/300/200" alt="Image">
<div class="overlay">
<div class="text">Hello World</div>
</div>
</div>
</body>
</html>
```
这个例子中,我们使用了CSS的transform属性来放大图片,使用了opacity属性来实现鼠标悬停时的遮罩效果。同时,我们使用了position属性来实现居中效果。
阅读全文