我正在尝试使用仅使用 HTML 和 CSS 创建将在悬停时向任何方向退出的图像。
它的意思是:
- 未悬停:显示图像的一部分
- hover:图像的剩余部分滑出(以 CSS 指定的方向)
我试过做什么:
a<div>
保持 abackground-image
在某个高度处切断并在悬停时使用 css 动画滑出
<html>
<body>
<style>
@-webkit-keyframes resize {
0% {
}
100% {
height: 446px;
}
}
#pic {
height: 85px;
width: 500px;
background-image: url(http://images5.fanpop.com/image/photos/31400000/Cow-cows-31450227-500-446.jpg);
}
#pic:hover {
-webkit-animation-name: resize;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: 1;
-webkit-animation-delay: 0.5s;
-webkit-animation-direction: normal;
-webkit-animation-fill-mode: forwards;
}
</style>
<div id="pic"></div>
<p class="center">Hover over me</p>
</body>
</html>
这种方法的问题在于,这会将其他内容移出我不想要的方式。如果我想将图像向左、向右或向上滑动,这种方法也不起作用。
有什么建议么?