I currently have a dashed border around my div element:
.dash_border{
border: dashed;
stroke: 2px;
margin:20px;
}
My goal is to make the dashed lines move clockwise when my pointer hovers over the div element and stop moving when I move the pointer away. How can I achieve this effect?