青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

06_移动端-3D转换-3

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>D转换-3</title>
    <style>
        body {
            perspective: 400px;
        }
        
        .box {
            position: relative;
            border: 1px solid #eee;
            height: 300px;
            width: 300px;
            margin: 100px auto;
            transition: all .4s;
            transform-style: preserve-3d;
        }
        
        .box:hover {
            transform: rotateY(180deg);
        }
        
        .box div {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            font-size: 30px;
            color: #fff;
            text-align: center;
            line-height: 300px;
        }
        
        .front {
            background-color: pink;
        }
        
        .back {
            background-color: purple;
            /* 像手机背靠背 */
            transform: rotateY(180deg);
        }
    </style>
</head>

<body>
    <div class="box">
        <!-- .font+.back -->
        <div class="front">前面</div>
        <div class="back">后面</div>
    </div>
</body>

</html>

 

posted on 2021-10-03 18:59  芦苇の  阅读(24)  评论(0编辑  收藏  举报