客户总想让页面炫酷起来-----怎么炫酷呢?---使用css3的东西或者其animate.css

悬浮的时候 让元素变淡一些

.feature-post a:hover {
    opacity: .9;
    transition: all .3s;
}

悬浮的时候,让元素位移一些

.post-loop-default .item:hover {
    box-shadow: 0 1px 5px 0 rgba(0,0,0,.1);
    border-color: rgba(0,0,0,.1);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

如何让元素从两边动画进入到中间?

原文地址:https://www.cnblogs.com/cn-oldboy/p/13494088.html