老师帮忙检查一下作业(2-14)谢谢啦
来源:2-14 编程练习
清夏_
2022-04-20 10:34:54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>空间移动</title>
<style>
* {
margin: 0;
padding: 0;
}
.box {
width: 200px;
height: 200px;
margin: 200px auto;
perspective: 300px;
position: relative;
}
.box p {
position: absolute;
left: 0;
top: 0;
width: 200px;
height: 200px;
}
/* 补充代码 */
.box P:nth-child(1) {
background-color: rgba(231, 35, 43, 0.5);
transform: rotatex(80deg) translateZ(15px);
}
.box P:nth-child(2) {
background-color: rgba(21, 231, 37, 0.5);
transform: rotateX(-91deg) translateZ(32px);
}
.box p:nth-child(3) {
background-color: rgba(31, 45, 226, 0.5);
transform: rotateX(74deg) translateZ(51px);
}
</style>
</head>
<body>
<div class="box">
<p></p>
<p></p>
<p></p>
</div>
</body>
</html>
搜索
复制
1回答
好帮手慕久久
2022-04-20
同学你好,代码正确,很棒,祝学习愉快!
相似问题
回答 1
回答 1
回答 1
回答 1
回答 1