CSS3是一種用于網(wǎng)頁(yè)設(shè)計(jì)的最新技術(shù),它可以實(shí)現(xiàn)各種華麗的動(dòng)畫(huà)效果。其中,扇形效果是一種常見(jiàn)的設(shè)計(jì)元素,讓頁(yè)面更加生動(dòng)。下面介紹三種不同的CSS3扇形效果。
第一種扇形效果使用了CSS3的偽元素:before和:after。代碼如下:
.fan { width: 200px; height: 200px; border-radius: 100%; position: relative; overflow: hidden; background-color: #f00; } .fan:before { content: ""; width: 100%; height: 100%; border-radius: 100%; position: absolute; top: 0; left: 0; background-color: #fff; transform-origin: top right; transform: rotate(30deg); } .fan:after { content: ""; width: 100%; height: 100%; border-radius: 100%; position: absolute; top: 0; left: 0; background-color: #fff; transform-origin: bottom left; transform: rotate(30deg); }
效果如下圖所示:
第二種扇形效果使用了CSS3的clip-path屬性。代碼如下:
.fan2 { width: 200px; height: 200px; background-color: #f00; -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%); clip-path: polygon(100% 0, 0 100%, 100% 100%); }
效果如下圖所示:
第三種扇形效果使用了CSS3的radial-gradient屬性。代碼如下:
.fan3 { width: 200px; height: 200px; background: radial-gradient(circle at top right, white 0%, white 50%, #f00 50%); }
效果如下圖所示:
以上是三種不同的CSS3扇形效果,它們?cè)趯?shí)現(xiàn)方式上有所不同,但都可以讓網(wǎng)頁(yè)設(shè)計(jì)更加生動(dòng)。
下一篇css3怎么弄z值