2-14编程练习 这样实现可以吗?

来源:2-14 编程练习

张小阳_

2022-05-29 23:01:52

相关代码:

<!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:first-child{
        background-color: #FF817F;
        transform: rotateX(65deg) translateZ(100px);
    }

    .box p:nth-child(2){
        background-color: #79FD85;
        transform: rotateX(80deg) translateZ(0px);
    }

    .box p:nth-child(3){
        background-color: #7E80FC;
        transform: rotateX(-79deg) translateZ(100px);
    }

    /* 补充代码 */
</style>
</head>
<body>
<div class="box">
    <p></p>
    <p></p>  
    <p></p> 
</div>
</body>
</html>


写回答

1回答

imooc_慕慕

2022-05-30

同学你好,效果代码正确,加油,祝学习愉快~

0

0 学习 · 17877 问题

查看课程