为了账号安全,请及时绑定邮箱和手机立即绑定

圆的旋转功效

圆的旋转功效

慕虎7371278 2018-10-13 10:13:20
最近项目中有个圆的旋转功效;也就是这个圆有两个面一个前面和背面;是竖立旋转的那种;旋转180度可以前面变成背面;背面变成前面;有没有做过的朋友给点思路;这里我要的是加载页面时候能够自动旋转不是翻牌的效果
查看完整描述

1 回答

?
胡子哥哥

TA贡献1825条经验 获得超6个赞

<div class='rotate'>
      <div class='front'></div>
      <div class='behand'></div></div>
.rotate{  position: relative;  -webkit-perspective:500px;
}.front,.behand {  width: 100px;  height: 100px;  border-radius:100px;  position: absolute;  transition:all 0.8s ease;
}.front {  z-index:1;  background-color: red; 
  transform: rotateY(0deg);
}.behand{  background-color: yellow;
}.rotate:hover .front{  z-index: 0;  transform: rotateY(180deg);
}.rotate:hover .behand{  transform: rotateY(180deg);
}

没写兼容性。


查看完整回答
反对 回复 2018-11-12
  • 1 回答
  • 0 关注
  • 508 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信