面试官:「骰子布局」

前言

这里介绍的是使用flex布局方式实现骰子中的1点到6点的布局。

? 如何实现骰子中的1点布局?

  <div class="contaner layout">




    <div></div>

  </div>

  <style>
    .contaner {
      width: 100px;
      height: 100px;
      border: 1px solid #999;
    }


    .contaner>div {
      width: 10px;
      height: 10px;
      background-color: black;
      border-radius: 50%;
    }



    .layout {
      display: flex;
      justify-content: center;
      align-items: center;
    }



image.png

? 如何实现骰子中的2点布局?

  <div class="contaner layout">




    <div></div>

    <div></div>
  </div>

  <style>
    .contaner {
      width: 100px;
      height: 100px;
      border: 1px solid #999;
    }

    .contaner>div {
      width: 10px;
      height: 10px;
      background-color: black;
      border-radius: 50%;
    }

    .layout {
      display: flex;
      justify-content: space-around;
    }



    div:last-child {
      align-self: flex-end;
    }

  </style>

image.png

? 如何实现骰子中的3点布局?

  <div class="contaner layout">
    <div></div>
    <div></div>
    <div></div>
  </div>

  <style>
    .contaner {
      width: 100px;
      height: 100px;
      border: 1px solid #999;
    }

    .contaner>div {
      width: 10px;
      height: 10px;
      background-color: black;
      border-radius: 50%;
    }

    .layout {
      display: flex;
      justify-content: space-around;
    }



    div:nth-child(2) {
      align-self: center;
    }



    div:last-child {
      align-self: flex-end;
    }
  </style>

image.png

? 如何实现骰子中的4点布局?

  <div class="contaner layout">




    <div>


      <p></p>


      <p></p>


    </div>


    <div>


      <p></p>


      <p></p>

    </div>

  </div>


  <style>
    .contaner {
      width: 100px;
      height: 100px;
      border: 1px solid #999;
    }



    .contaner>div>p {
      width: 10px;
      height: 10px;
      background-color: black;
      border-radius: 50%;
    }



    .layout {
      display: flex;
      flex-direction: column-reverse;
      justify-content: space-around;
    }

    .layout>div {
      display: flex;
      justify-content: space-around;
    }
  </style>

image.png

? 如何实现骰子中的5点布局?

  <div class="contaner layout">




    <div>


      <p></p>


      <p></p>


    </div>


    <div>


      <p></p>


    </div>
    <div>
      <p></p>
      <p></p>

    </div>
  </div>

  <style>
    .contaner {
      width: 100px;
      height: 100px;
      border: 1px solid #999;
    }

    .contaner>div>p {
      width: 10px;
      height: 10px;
      background-color: black;
      border-radius: 50%;
    }


    .layout {
      display: flex;
      flex-direction: column-reverse;
      justify-content: space-around;
    }

    .layout>div {
      display: flex;
      justify-content: space-around;
    }
  </style>

image.png

? 如何实现骰子中的6点布局?

  <div class="contaner layout">




    <div>


      <p></p>


      <p></p>


    </div>


    <div>


      <p></p>


      <p></p>

    </div>

    <div>
      <p></p>

      <p></p>
    </div>
  </div>

  <style>
    .contaner {
      width: 100px;
      height: 100px;
      border: 1px solid #999;
    }

    .contaner>div>p {
      width: 10px;
      height: 10px;
      background-color: black;
      border-radius: 50%;
    }



    .layout {
      display: flex;
      flex-direction: column-reverse;
      justify-content: space-around;
    }

    .layout>div {
      display: flex;
      justify-content: space-around;
    }
  </style>

image.png

© 版权声明
THE END
喜欢就支持一下吧
点赞0

Warning: mysqli_query(): (HY000/3): Error writing file '/tmp/MYNXw3Fl' (Errcode: 28 - No space left on device) in /www/wwwroot/583.cn/wp-includes/class-wpdb.php on line 2345
admin的头像-五八三
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

图形验证码
取消
昵称代码图片