css3
transform让背景图标旋转360度
a b {display: width: height: background:
a:hover b {-moz-transform: -webkit-transform:transform: }
transition过渡是元素从一种样式逐渐改变为另一种的效果
/*鼠标指针位于元素上宽度300px,鼠标指针移开元素时宽度100px,由于加了'transition:width 2s'宽度变化效果是逐渐的*/
div{width:100px;height:100px;background:yellow;transition:width 2s;}
div:hover{width:300px;}
animation创建动画效果
div{width:100px;height:100px;background:red;animation:myfirst 5s;}
@keyframes myfirst{from {background:red;}to {background:yellow;}}
感谢您的阅读,您的支持是我写博客动力。