用CSS做简易的旋转翻牌动画方法
发布时间:2023-10-17 14:53:41 所属栏目:语言 来源:
导读:css动画之旋转翻牌效果,具体内容如下所示:
1、我们先设置两个盒子大小,颜色等等,然后定位重叠在一起,最后再进行动画设置
例子如下:
<style>
.box {
height: 300px;
1、我们先设置两个盒子大小,颜色等等,然后定位重叠在一起,最后再进行动画设置
例子如下:
<style>
.box {
height: 300px;
css动画之旋转翻牌效果,具体内容如下所示: 1、我们先设置两个盒子大小,颜色等等,然后定位重叠在一起,最后再进行动画设置 例子如下: <style> .box { height: 300px; width: 300px; position: relative; } .zh, .fan { height: 300px; width: 300px; line-height: 300px; font-size: 30px; text-align: center; color: blue; transition: all 2s; backface-visibility: hidden; /* 背面不可见 */ position: absolute; top: 0; left: 0; } .zh { background-color: aqua; } .fan { background-color: aquamarine; transform: rotateY(-180deg) rotateZ(-180deg); } .box:hover .zh { transform: rotateY(180deg) rotateZ(180deg) } .box:hover .fan { transform: rotateY(0) rotateZ(0); } </style> </head> <body> <div class="box"> <div class="zh">正面</div> <div class="fan">反面</div> </div> </body> (编辑:聊城站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
推荐文章
站长推荐