开启辅助访问
帐号登录 |立即注册

CSS绘制各种各样的形状图形

 
实心圆
1287814-20210116100103231-1859513694.png
[CSS] 纯文本查看 复制代码
.circle {
    width: 120px;
    height: 120px;
    background: #317ef3;
    border-radius: 100%;
}


空心圆
1287814-20210116100116756-1415258225.png
[CSS] 纯文本查看 复制代码
.ring {
    width: 120px;
    height: 120px;
    border: 10px solid #317ef3;
    border-radius: 100%;
    box-sizing: border-box;
}
半圆
1287814-20210116100135020-468188565.png
[CSS] 纯文本查看 复制代码
//上半圆
.top-semicircle {
    width: 120px;
    height: 60px;
    background: #317ef3;
    border-radius: 60px 60px 0 0;
    /*顺时针方向,四个值依次分别表示左上、右上、右下、左下*/
}
//右半圆
.rt-semicircle {
    width: 60px;
    height: 120px;
    background: #317ef3;
    border-radius: 0 60px 60px 0;
}

//左半圆
.lf-semicircle {
    width: 60px;
    height: 120px;
    background: #317ef3;
    border-radius: 60px 0 0 60px;
}

//下半圆
.bot-semicircle {
    width: 120px;
    height: 60px;
    background: #317ef3;
    border-radius: 0 0 60px 60px;
}





回复

使用道具 举报

1 个回复

倒序浏览
admin  管理员 沙发 | 2022-6-23 16:47:48 | 显示全部楼层
鸡蛋
1287814-20210116100445703-1770779496.png
[CSS] 纯文本查看 复制代码
.egg {
    width: 100px;
    height: 150px;
    background: #317ef3;
    border-radius: 50px 50px 50px 50px/90px 90px 60px 60px;
}

回复 支持 反对

使用道具 举报

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

友情链接
  • 艾Q网

    提供设计文章,教程和分享聚合信息与导航工具,最新音乐,动漫,游戏资讯的网站。