html把圆形分成10份,CSS八等分圆的实现示例

简介

对于CSS的练习介绍如何绘制八等分的圆。

问题1 主要思路

这个地方的主要思路是将一个八等分的圆分成两部分。左边和右边的圆分别用半圆旋转而得。

1 注意:每个半圆最后要用外面的外包矩形切一下 详见#lfet #right

2 右边旋转的圆顺序不一样后面的可能会遮挡前面的要么顺序要对,要么使用z-index

问题2 重点代码

1 半圆和圆

.circle-left{

width: 100px;height: 200px;

border-radius: 0px 100px 100px 0px;

position: absolute;

right: 0;

transform-origin: 0 50%;

}

.circle-right{

width: 100px;height: 200px;

border-radius: 100px 0px 0px 100px ;

position: absolute;

right: 0;

transform-origin: 100% 50%;

}

#circle0{

width: 200px;height: 200px;

border-radius: 100px;background-color: yellowgreen;

position: relative;

}

上面采用的是border-radius实现圆和半圆

2 将半圆切整齐

#left{

clip: rect(0px 100px 200px 0px);

posit

你可能感兴趣的:(html把圆形分成10份)