吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1849|回复: 2
收起左侧

[其他转载] 纯css实现3d导航栏效果

[复制链接]
tanzhongfa2 发表于 2022-3-15 08:59
本帖最后由 wushaominkk 于 2022-3-16 08:45 编辑

[HTML] 纯文本查看 复制代码
css源码
* {
            padding: 0;
            margin: 0;
        }
        body {
            perspective: 300px;
        }
        .box {
            width: 100px;
            height: 100px;
            position: relative;
            margin: 100px auto;
            transform-style: preserve-3d;
            transition: all 0.4s;
        }
        .front,
        .bottom {
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
            line-height: 100px;
            text-align: center;
        }
        .front {
            background-color: pink;
            transform: translateZ(50px);
        }
        .bottom {
            background-color: aqua;
            transform: translateY(50px) rotateX(-90deg);
        }
        .box:hover {
            transform: rotateX(90deg);
        }
html源码
<div class="box">
        <div class="front">我是谭忠发</div>
        <div class="bottom">我很帅</div>
    </div>

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

rz66 发表于 2022-3-15 13:55
怎么不上图呢,有图有影响力啊。呵呵,我是沙发吗?
 楼主| tanzhongfa2 发表于 2022-3-16 10:17
rz66 发表于 2022-3-15 13:55
怎么不上图呢,有图有影响力啊。呵呵,我是沙发吗?

这上面没办法发动图好像
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-1-12 23:15

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表