我有以下 HTML:
<figure>
<img src="http://lorempixel.com/200/200/" alt="">
<figcaption>This is the caption</figcaption>
</figure>
以及以下 CSS:
figure {
background: #ddd;
display: inline-block;
height: 200px;
margin: 50px;
position: relative;
width: 200px;
vertical-align: top;
}
figure:hover img {
box-shadow: 0 30px 20px -10px hsla(0,0%,0%,.25);
transform: perspective(1000px) rotateX(45deg);
transform-origin: 50% 0;
}
img {
position: relative;
transition: .2s;
vertical-align: top;
z-index: 10;
}
figcaption {
bottom: 0;
box-sizing: border-box;
padding: 6px;
position: absolute;
text-align: center;
width: 100%;
}
这是一个活生生的例子:http ://codepen.io/joshnh/pen/FlvJr
尽管将 设置transform-origin
为图像的顶部,但它在悬停时仍会略微向下移动。是什么原因造成的,我该如何预防?