码迷,mamicode.com
首页 > Web开发 > 详细

css 之 动画(翻转动画例子)

时间:2020-10-10 18:01:00      阅读:36      评论:0      收藏:0      [点我收藏+]

标签:oct   har   line   style   htm   round   pat   ice   form   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>翻转动画例子原理</title>
    <style>
        .box{
            position: relative;
            width: 500px;
            height: 500px;
            margin: 0 auto;
            overflow: hidden;
        }
        .box:hover .box2{
            transform: rotateY(0deg);
        }
        .box:hover .box1{
            transform: rotateY(180deg);
        }
        .t{
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            line-height: 500px;
            text-align: center;
            color:#fff;
            transition: all 3s;
            border-radius: 50%;
        }
        .box1{
            background-color: orchid;
        }
        .box2{
            background-color: orange;
            transform: rotateY(180deg)
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="box1 t">box1</div>
        <div class="box2 t">box2</div>
    </div>
</body>
</html>

 

css 之 动画(翻转动画例子)

标签:oct   har   line   style   htm   round   pat   ice   form   

原文地址:https://www.cnblogs.com/zhou-xm/p/13792239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!