当前位置:   article > 正文

css实现圆柱的形状_css画圆柱

css画圆柱

效果如图
在这里插入图片描述

主要通过上下两个椭圆定位,中间一个矩形实现,椭圆通过圆角border-radius: 50% / 50%; 实现

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>yuanzhu</title>
    <style>
        .container{
            width: 140px;
            margin: 100px auto;
            position: relative;
        }
        .square{
            width: 140px;
            height: 150px;
            background: linear-gradient(to right, #aaa,#fff,#aaa)
        }
        div[class^='circle']{
            position: absolute;
            left: 0;
            width: 140px;
            height: 30px;
            /* 椭圆 */
            border-radius: 50% / 50%;
            background: linear-gradient(to right, #aaa,#fff,#aaa)
        }
        .circle1{
            top: -15px;
        }
        .circle2{
            bottom: -15px;
        }
        .center{
            position: absolute;
            width: 30px;
            height: 120px;
            background: linear-gradient(to right, rgb(69, 221, 115),rgb(203, 243, 194),rgb(69, 221, 115));
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            border: 3px solid #fff;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="square"></div>
        <div class="circle1"></div>
        <div class="circle2"></div>
        <div class="center"></div>
    </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
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/96809
推荐阅读
相关标签
  

闽ICP备14008679号