CSS实现各种形状示例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>css3实现各种形状</title>
    <style type="text/css">
        div{
            display:inline-block;
        }
        #circle{
            height: 120px;
            width: 120px;
            background-color: chocolate;
            -moz-border-radius: 60px;
            -webkit-border-radius: 60px;
            border-radius: 60px;
        }

        #oval{
            /*椭圆形*/
            width: 200px;
            height: 100px;
            background-color: cornflowerblue;

            /*两种设置方式   / 号之前的数字代表水平半径   之后的数字代表垂直半径*/
            /*-moz-border-radius: 100px/50px;*/
            /*-webkit-border-radius: 100px/50px;*/
            /*border-radius: 100px/50px;*/

            /*代表圆的半径 纵向横向都是50%*/
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            border-radius: 50%;
        }

        #triangle-orign{
            /*三角形原理*/
            width: 100px;
            height: 100px;
            background-color: black;
            border-top: 140px solid #113322;
            border-left: 140px solid #4400ff;
            border-right: 140px solid crimson ;
            border-bottom: 140px solid lightseagreen;
        }


        #triangle{
            /*三角形*/
            width: 0;
            height: 0;
            border-bottom: 140px solid #8855ff;
            border-left:70px solid transparent;
            border-right: 70px solid transparent;
        }

        #triangle-down{
            /*朝下的三角形*/
            width: 0;
            height: 0;
            border-top: 140px solid blue;
            border-left: 70px solid transparent;
            border-right: 70px solid transparent;
        }

        #triangle-left{
            width: 0px;
            height: 0px;
            border-left: 140px solid coral;
            border-top: 70px solid transparent;
            border-bottom: 70px solid transparent;
        }

        #triangle-right{
            width: 0px;
            height: 0px;
            border-right: 140px solid magenta;
            border-top: 70px solid transparent;
            border-bottom: 70px solid transparent;
        }
    </style>
</head>
<body>
    <div id="shapes">
        <!--圆形-->
        <div id="circle"></div>

        <!--椭圆-->
        <div id="oval"></div>

        <!--三角形原型-->
        <div id="triangle-orign"></div>

        <!--三角形-->
        <div id="triangle"></div>

        <div id="triangle-down"></div>

        <div id="triangle-left"></div>

        <div id="triangle-right"></div>

    </div>
</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值