私はCSS開発者ではないので、ご容赦ください。これが達成しようとしていることです。
今のところ、これだけ作成できます。
壁の作り方がわかりません(C)。私を助けてください。
2dpicの現在のコードは次のとおりです。
<html><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<style type="text/css">
#floor {
-webkit-transform: skew(148deg);
-moz-transform: skew(148deg);
-o-transform: skew(148deg);
background: none repeat scroll 0 0 #000066;
float: left;
height: 54px;
left: 100px;
position: fixed;
top: 108px;
width: 100px;
}
#frontwall {
width: 100px;
height: 100px;
background: #0099FF;
position: fixed;
left: 117px;
}
#otherwall {
width: 150px;
height: 100px;
-webkit-transform: rotate(-20deg) ;
-moz-transform: rotate(-20deg) ;
-o-transform: rotate(-20deg) ;
background: #0000CC;
float: left;
}
</style>
</head>
<body>
<div id="otherwall"></div>
<div id="frontwall"></div>
<div id="floor"></div>
</body></html>