13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CSSで3Dなやつ

Last updated at Posted at 2013-09-04

space_box.gif

perspective:100transform-style:preserve-3dというのを知らずに困ってた。

<div class="canvas">
    <div class="space">
        <div class="measure x"></div>
        <div class="measure y"></div>
        <div class="measure z"></div>
        <div class="box">
            <div class="face face0">0</div>
            <div class="face face1">1</div>
            <div class="face face2">2</div>
            <div class="face face3">3</div>
            <div class="face face4">4</div>
            <div class="face face5">5</div>
            <div class="face face6">6</div>
        </div>
    </div>
</div>
.canvas {
    background-color: #eee;
    height: 100%;
    overflow: auto;
    -webkit-perspective: 500;
    position: relative;
    width: 100%;
}
.space {
    height: 400px;
    -webkit-transition: -webkit-transform .5s;
    -webkit-transform:
        rotateX(-10deg)
        rotateY(-10deg)
        rotateZ(0deg);
    -webkit-transform-style: preserve-3d;
    width: 400px;
}
.on .space {
    -webkit-transform:
        rotateX(-40deg)
        rotateY(30deg)
        rotateZ(0deg);
}

13
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?