悬停时如何停止此div的闪烁,仅在Firefox中存在问题,chrome很好
jQuery解决方案很好
CSS
div {
height: 30px;
width: 30px;
background-color: #000;
margin: 50px;
border-radius: 15px;
transition: all 1s;
-webkit-transition: all 1s;
-moz-transition: all 1s;
}
div:hover {
height: 300px;
width: 300px;
background-color: #000;
margin: 50px;
border-radius: 150px;
}