<style>
div {
width:100px;
height:100px;
background:mediumseagreen;
}
div:hover {
animation: sslide 2s;
}
@keyframes sslide {
0% {
width: 150px;
}
50% {
width: 100px;
}
100% {
width: 150px;
}
}
</style>
<div>push me!</div>