CSS:如何从中心而不是左上角缩放图像

时间:2015-02-25 18:06:48

标签: css scale center transition

所以我的问题是我有一个图像,我将其CSS设置为

max-width: 100% 

以较低分辨率对其进行缩放(如下面的小提琴所示)。我想要的是过渡从图像中心生效。

目前;从我从大多数情况看到的我所做的涉及比例的过渡,他们从左上角扩展。

这是我的小提琴:http://jsfiddle.net/Eolis/3ya98xh8/3/

4 个答案:

答案 0 :(得分:29)

只需将width: 400px;替换为:hover上的transform: scale(2,2)

img {
    width: 100%; max-width: 100%;
}
div {
    position: absolute; left: 20%; top: 20%;
    width: 250px;
    transition: all 2s ease-in-out;
}
div:hover {
    transform: scale(2,2)
}
<div>
    <a href="http://photobucket.com/images/cat" target="_blank">
        <img src="http://i583.photobucket.com/albums/ss278/campipr/coolcat.gif" border="0" alt="cat photo: cat coolcat.gif"/>
    </a>
</div>

答案 1 :(得分:7)

将其添加到div:hover

transform: translateX(-25%) translateY(-25%);

这是小提琴:http://jsfiddle.net/3ya98xh8/4/

答案 2 :(得分:1)

如果它对任何人都有帮助,也可以抛出我的解决方案:

<强> :: CSS ::

img {
    width: 100%; max-width: 100%;
}
div {
    position: absolute; left: 50%; top: 50%;
    margin-left: -125px; margin-top: -100px;
    width: 250px;
    transition: all 2s ease-in-out;
}
div:hover {
    margin-left: -200px; margin-top: -150px;
    width: 400px;
}

<强> :: HTML ::

<div>
    <a href="http://photobucket.com/images/cat" target="_blank">
        <img src="http://i583.photobucket.com/albums/ss278/campipr/coolcat.gif" border="0" alt="cat photo: cat coolcat.gif"/>
    </a>
</div>

<强> ::小提琴:: http://jsfiddle.net/Eolis/3ya98xh8/5/

答案 3 :(得分:0)

别忘了设置转换原点

.current{
    top: 0px;
    left: 0px;
    z-index: 2;
    opacity: 1;
    transform: scale(0.9, 0.9);
    transition: opacity 1.6s ease-out 0s, transform 7.2s linear 0s;
    transform-origin: center center;
    animation: normal;
}

https://css-tricks.com/almanac/properties/t/transform-origin/