css放大图片,平滑过度
<div class="img-container">
<img />
<div/>
<style lang="less">
.img-container {
width: 50px;
height: 30px;
overflow: hidden;
img {
width: 100%;
transition: all 0.3s ease; // 平滑过度效果
&:hover {
transform: scale(1.1);
}
}
}
</style>
本文来自博客园,作者:hong_li,转载请注明原文链接:https://www.cnblogs.com/hong1/p/18529385