css实现三维3d柱状图汇总统计图表效果代码

代码语言:html

所属分类:图表

代码描述:css实现三维3d柱状图汇总统计图表效果代码

代码标签: 3d 柱状 汇总 统计 图表 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!doctype html>
<html>
<head>
    <meta charset="utf-8">

    <style>
        html, body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            background-color: white;
            -webkit-perspective: 1500;
            perspective: 1500;
            font-family: 'Asar', serif;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .card {
            background-color: black;
            width: 250px;
            height: 300px;
            border-radius: 10px;
            -webkit-perspective: 1500;
            perspective: 1500;
            -webkit-transition: box-shadow 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
            transition: box-shadow 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
            transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
            transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            box-shadow: 5px 5px 24px 0px rgba(0, 0, 0, 0.2);
        }
@media (min-height: 600px) {
            .card {
                width: 400px;
                height: 550px;
            }
        }
        .card h2, .card h3, .card P {
            -webkit-transform: translateZ(2px);
            transform: translateZ(2px);
            color: white;
            font-size: 30px;
            line-height: 30px;
            margin: 0;
            font-weight: 300;
            padding: 0;
            -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
            transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
            transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
            transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
        }
@media (min-height: 600px) {
            .card h2, .card h3, .card P {
                font-size: 40px;
                line-height: 40px;
            }
        }
        .card h2 {
            margin: 20px 0 0 0;
        }
        .card h3 {
            margin: 10px 0 40px 0;
        }
@media (min-height: 600px) {
            .card h3 {
                margin: 20px 0 40px 0;
            }
        }
        .card P {
            margin: 0px 0 30px 0;
            font-size: 16px;
        }
@media (min-height: 600px) {
            .card P {
                margin: 0px 0 40px 0;
                font-size: 21px;
            }
        }
        .card .chart {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            -webkit-transform: translateZ(2px);
            transform: translateZ(2px);
            -webkit-transition: -webkit-transform 0.5s ease-in-out;
            transition: -webkit-transform 0.5s ease-in-out;
            transition: transform 0.5s ease-in-out;
            transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
        }
        .card .photo {
            position: absolute;
            -webkit-transform: translateZ(1px);
            transform: translateZ(1px);
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("//repo.bfw.wiki/bfwrepo/image/60987bfc5afa0.png") no-repeat center center;
            background-size: cover;
            border-radius: 10px;
            -webkit-transition: -webkit-transform 0.5s ease-in-out;
            transition: -webkit-transform 0.5s ease-in-out;
            transition: transform 0.5s ease-in-out;
            transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
            overflow: hidden;
        }
        .card .photo:after {
            position: absolute;
            content: ' ';
            display: block;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.2);
            -webkit-transition: background-color 0.5s ease-in-out;
            transition: background-color 0.5s ease-in-out;
        }
        .card .bar {
            will-change: height;
            width: 15px;
            height: 1px;
            background-color: white;
            -webkit-transform: translateX(-7.5px) rotateX(-90deg) rotateY(-45deg);
            transform: translateX(-7.5px) rotateX(-90deg) rotateY(-45deg);
            -webkit-transf.........完整代码请登录后点击上方下载按钮下载查看

网友评论0