我有一个带有背景图像的 div。如何做到这一点:当您将鼠标悬停在该 div 上时,背景图像向上移动 5 像素,然后向下移动 5 像素?比如快点,慢点。
我的代码:
CSS
<style>
.place {
background:url(../img/place.png) no-repeat 6px 50%;
}
</style>
HTML
<div class="place">
123 Something Street<br/>
UB5 212 Liverpool
</div>
如何通过过渡做到这一点?还是jquery?