解决方法
您可以使用CSS3转换。看看这个例子:
这是主要代码:
#Box { position : relative; width : 100px; height : 100px; background-color : gray; border : 5px solid black; -webkit-transition : border 500ms ease-out; -moz-transition : border 500ms ease-out; -o-transition : border 500ms ease-out; transition : border 500ms ease-out; } #Box:hover { border : 10px solid red; }