首页 > Web开发 > 详细

CSS3旋转图片效果收集

时间:2014-09-09 12:24:38      阅读:306      评论:0      收藏:0      [点我收藏+]

 

火狐中文网图片效果:
[http://i.firefoxchina.cn/?www.firefoxchina.cn]

.news-img-wrapper:hover img {
    transform: rotate(5deg) scale(1.2);
    transition: all 0.3s linear 300ms;
}

慕课网的图片效果:

.course-content .course-list li .course-list-img img {
    display: block;
    transition: all 1s ease 0s;
}
.course-content .course-list li:hover img, .course-content .course-list li.hover img {
    transform: scale(1.2);
}

CSS3旋转图片效果收集

原文:http://www.cnblogs.com/dingyuanxin/p/3962081.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!