1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
.stage {margin:auto;
width: 300px; height: 300px;
-webkit-perspective: 1600px;
-webkit-perspective-origin: 50% 200px;
}
div.back,div.top,div.bottom,div.left,div.right, div.front {
display: block; position: absolute;
width: 300px; height: 300px;
text-align:center;
font-size:6em;
vertical-align:middle;
margin-top:1em;
}
.cube { -webkit-transform-style: preserve-3d;
-webkit-animation: rotate 30s infinite linear;}
div { -webkit-transform-origin: 50% 50% 0; }
.front { -webkit-transform: translateZ(150px);
background-color: #3A9BC8;}
.back { -webkit-transform: rotateY(180deg) translateZ(150px);
background-color: #60c2ef;}
.top { -webkit-transform: rotateX(90deg) translateZ(150px);
background-color: #2E7392;}
.bottom { -webkit-transform: rotateX(-90deg) translateZ(150px); }
.left { -webkit-transform: rotateY(-90deg) translateZ(150px);
background-color: #5B9BB9;}
.right { -webkit-transform: rotateY(90deg) translateZ(150px);
background-color: #3B8CB1;}
@-webkit-keyframes rotate {
0% { -webkit-transform: rotateY(0); }
100% { -webkit-transform: rotateY(-360deg); }
}
.bottom {
-webkit-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.7);
background-color: rgba(0, 0, 0, 0);
}
.back{
background-color: red;
}
.left{
background-color: blue;
}
.right{
background-color: yellow;
}
.front{
background-color: green;
} |
Partager