How to stop the animation so that it does not disappear when it is over?
@keyframes men{ from{ background: linear-gradient(120deg, #CFA883 10%, white 20%, white 20%, #CFA883 30%); opacity:0; } to { background-position:300px; opacity:1; } } div{ width:200px; height:100px; border:1px black solid; } div:hover{ animation: men 2s; }