diff --git a/exhibition_composite.html b/exhibition_composite.html index b55f1d5..c575f0a 100644 --- a/exhibition_composite.html +++ b/exhibition_composite.html @@ -17,10 +17,14 @@ text-align: center; padding: 30px 0; font-weight: 100; + + display: none; } + .header>span { margin: 30px; } + .header>span.active { color: rgb(0, 145, 255); } @@ -34,19 +38,18 @@ background-size: cover; } - .wrapper{ - perspective: 600px; - perspective-origin: center 250px; - } .section { - transition: transform 2s, width 2s; + /*transition: transform 2s, width 2s;*/ + display: flex; } .building { background-image: url("./img/building.jpeg"); + width: 50%; + height: 100%; } .text { @@ -54,10 +57,7 @@ } - .intro>div { - margin: 100px; - - } + .subtitle>div { margin: 50px; font-size: 20px; @@ -71,7 +71,7 @@ .injection { background-image: url("./img/workshop-injection.jpeg"); - + } .mold { @@ -86,68 +86,124 @@ } - /* booth + /* booth */ body { - overflow: hidden; + overflow: ; } .intro { border: 2px solid rgb(0, 145, 255); + width: 50%; + height: 100%; + } + + .intro>div { + margin: 50px 30px; } + .wrapper {} + .section-one { - + position: absolute; - transform: translate3d(-300px, -100px, -1000px) rotate3d(0, 1, 0, 60deg); - width: 600px; - height: 450px; + transform: perspective(600px) translate3d(-400px, 00px, -1000px) rotate3d(0, 1, 0, 90deg); + width: 800px; + height: 500px; + } .section-two { position: absolute; - transform: translate3d(300px, -300px, -2500px); - width: 600px; - height: 450px; - } */ + transform: perspective(800px) translate3d(00px, 0px, 00px); + width: 800px; + height: 500px; + + background-color: #eee; + } + + .section-three { + position: absolute; + transform: perspective(800px) translate3d(400px, 00px, -1000px) rotate3d(0, 1, 0, -90deg); + width: 800px; + height: 500px; + + background-color: skyblue; + + } + + .plane { + + display: none; + position: absolute; + width: 800px; + height: 500px; + background-color: red; + transform: rotateX(calc(var(--rotate-x, -24) * 1deg)) rotateY(calc(var(--rotate-y, -24) * 1deg)) rotateX(90deg) translate3d(0, 0, 0); + } + + .console { + /*position: absolute;*/ + opacity: 0.5; + } +
+