当前位置:   article > 正文

css3 制作圆柱体_css 画空心圆柱

css 画空心圆柱

css3 圆柱体

圆柱体(视角效果上的圆柱体)的制作原理其实很简单,主要考察transfrom:rotatex()、border-radius的运用

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
    .box{
        margin-left: 100px;
        width:200px;
        height:200px;
        border:solid 1px black;
        background: indianred;
        border-radius: 100px;
        transform: rotateX(70deg);
        }
    
        .box:after{
        content: '';
        display:inline-block;
        width:200px;
        height: 280px;
        position:relative;
        opacity: 0.6;
        background:indianred;
        top:50%;
        left:-0.5px;
        border-left:black 0.5px solid;
        border-right:black 0.5px solid;
        border-bottom: black 0.5px solid;
        border-bottom-left-radius: 100px;
        border-bottom-right-radius:100px;
        }
    </style>
</head>
<body>
    <div class="box"></div>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

在这里插入图片描述

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/96888
推荐阅读
相关标签