首页 > 代码库 > css3360度旋转动画
css3360度旋转动画
@-webkit-keyframes Parallaxs{ from { -webkit-transform: rotate(180deg) ; -moz-transform: rotate(180deg) ; -o-transform: rotate(180deg) ; transform: rotate(180deg); } to { -webkit-transform: rotate(360deg) ; -moz-transform: rotate(360deg) ; -o-transform: rotate(360deg) ; transform: rotate(360deg); }}
.feng:not(:target){ -webkit-animation-name: Parallaxs; -webkit-animation-duration: 10s; -webkit-animation-iteration-count: infinite; -moz-animation-name: Parallaxs; -moz-animation-duration: 10s; -moz-animation-iteration-count: infinite; -o-animation-name: Parallaxs; -o-animation-duration: 10s; -o-animation-iteration-count: infinite; animation-name: Parallaxs; animation-duration: 10s; animation-iteration-count: infinite;}
css3360度旋转动画
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。