我设法为悬停时的图像创建了放大效果。但是,问题是鼠标悬停时图像正在移动到右下角。我想放大到中心-中心。怎么可能?
我尝试使用transform scale(1.1);
,它可以放大到中心-中心,但是过渡效果不起作用。因此,鼠标悬停时图像仅跳至1.1,效果不再平滑。
P.S。我正在使用Joomla和SP页面生成器
.sppb-col-md-3
{
overflow: hidden;
}
.hover03
{
height: 100%;
width: 100%;
transition: all 1s ease;
}
.hover03:hover
{
width: 110%;
height: 110%;
}
答案 0 :(得分:-1)
您应该将过渡效果应用于元素,img标签(视情况而定)以及:hover上的效果(即transform:scale;)。希望有帮助!
看看这个工作示例:
https://codepen.io/Angel-SG/pen/JwJzxg
.img-outer {
overflow: hidden;
max-width: 300px;
max-height: 300px;
}
.img-inner {
position: relative;
}
img {
transition: 0.5s ease;
}
img:hover {
transform: scale(1.2);
}
<div class="img-outer">
<div class="img-inner">
<img src="https://via.placeholder.com/300C/O
https://placeholder.com/" alt="image">
</div>
</div>