<ul><li><a href=”#”> Hover Over Me </a></li><li><a href=”#”> Hover Over Me </a></li><li><a href=”#”> Hover Over Me </a></li><li><a href=”#”> Hover Over Me </a></li></ul>
The CSS
ul a {
-webkit-transition: padding .4s;
-moz-transition: padding .4s;
-o-transition: padding .4s;
transition: padding .4s;
}
a:hover {
padding-left: 6px;
}
transition 有三个参数:
The property to transition. (Set this value to all if needed) 转换属性。(设置此值为所有如有需要)