点击查看html编辑器说明文档

小卡片hover动感效果edit icon

|
|
Fork(复制)
|
|
提交反馈
嵌入
设置
下载
HTML
CSS
JS
格式化
支持Emmet,输入 p 后按 Tab键试试吧!
<head> ...
展开
</head>
<body>
            
            <!DOCTYPE html>
<html lang="en">
<head>
    <!-- 基本设置和元数据 -->
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Creative Business Infographic</title>
    <style>
        /* 页面整体样式设置 */
        body {
            font-family: 'Arial', sans-serif;
            /* 创建渐变背景效果 */
            background: linear-gradient(120deg, #f0f5fa, #e2eafc);
            margin: 0;
            /* 使用 flex 布局使内容居中 */
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        /* 信息图表容器样式 */
        .infographic {
            /* 使用网格布局,创建2列布局 */
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 800px;
            margin: 20px;
            /* 添加3D旋转效果 */
            transform: rotateX(20deg);
            perspective: 1000px;
        }

        /* 每个信息框的样式 */
        .box {
            background: white;
            padding: 20px;
            border-radius: 15px;
            /* 添加阴影效果 */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            /* 启用3D变换 */
            transform-style: preserve-3d;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        /* 鼠标悬停效果 */
        .box:hover {
            transform: rotateY(15deg);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
        }

        .content {
            margin-top: 20px;
        }
        h3 {
            margin: 0;
            color: #333;
        }
        p {
            color: #777;
        }
    </style>
</head>
<body>
    <!-- 信息图表主体结构 -->
    <div class="infographic">
        <!-- 四个信息框,每个代表不同的业务概念 -->
        <div class="box">
            <div class="content">
                <h3>创新思维</h3>
                <p>探索新的创意与灵感。</p>
            </div>
        </div>
        <div class="box">
            <div class="content">
                <h3>高效执行</h3>
                <p>快速的计划与实施。</p>
            </div>
        </div>
        <div class="box">
            <div class="content">
                <h3>数据分析</h3>
                <p>用数据驱动决策。</p>
            </div>
        </div>
        <div class="box">
            <div class="content">
                <h3>团队合作</h3>
                <p>协同工作以达到目标。</p>
            </div>
        </div>
    </div>
</body>
</html>

        
</body>
预览
控制台