要实现“主要内容”在悬停时移动,同时保持伪元素在之前/之后的位置不变,可以使用CSS的position
属性和transform
属性。以下是一个示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hover Effect</title>
<style>
.container {
position: relative;
width: 300px;
height: 200px;
background-color: #f0f0f0;
display: flex;
align-items: center;
justify-content: center;
}
.main-content {
position: relative;
z-index: 1;
transition: transform 0.3s ease;
}
.container:hover .main-content {
transform: translateY(-20px);
}
.pseudo-element::before,
.pseudo-element::after {
content: '';
position: absolute;
width: 50px;
height: 50px;
background-color: #333;
transition: none;
}
.pseudo-element::before {
top: 10px;
left: 10px;
}
.pseudo-element::after {
bottom: 10px;
right: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="main-content">主要内容</div>
<div class="pseudo-element"></div>
</div>
</body>
</html>
container
:包含主要内容和伪元素的容器。main-content
:主要内容部分。pseudo-element
:包含伪元素的部分。.container
:设置为相对定位,以便其子元素可以相对于它进行绝对定位。.main-content
:设置为相对定位,并使用z-index: 1
确保它在伪元素之上。使用transition
属性实现平滑的过渡效果。.container:hover .main-content
:在悬停时,主要内容部分向上移动20px。.pseudo-element::before
和.pseudo-element::after
:伪元素,设置为绝对定位,固定在容器的特定位置。这种效果常用于按钮、卡片或其他需要突出显示主要内容的组件中。通过悬停时移动主要内容,可以吸引用户的注意力,同时保持伪元素的静态位置,增强视觉效果。
希望这个示例能帮助你理解如何实现这种效果。如果有任何进一步的问题,请随时提问!
领取专属 10元无门槛券
手把手带您无忧上云