我的建议是使用 css 过渡。过渡动画可能是这样的:
#myId {
width: 100px;
height: 100px;
left: 0;
top: 0;
background: red;
position: relative;
display:block;
}
#myId:hover {
transition: left 3s linear;
left: 500px;
<div id="myId"></div>
MM们
相关分类