這篇文章將為大家詳細(xì)講解有關(guān)css中clip-path屬性如何使用,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)主要從事成都網(wǎng)站建設(shè)、成都做網(wǎng)站、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)多倫,10余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):028-86922220
clip-path的使用
polygon
值為多個(gè)坐標(biāo)點(diǎn)組成,坐標(biāo)第一個(gè)值是x方向,第二個(gè)值是y方向。
左上角為原點(diǎn),右下角是(100%,100%)的點(diǎn)。
body { background-color: #000; } .fa { border: 1px solid #fff; color: yellowgreen; padding: 10px; margin: 10px; } .fa>p { width: 110px; height: 110px; background-color: yellowgreen; margin: 20px auto; } .polygon1 { clip-path: polygon(50% 0px, 100% 100%, 0px 100%) } .polygon2 { clip-path: polygon(0px 50%, 50% 0, 100% 50%, 50% 100%) } .polygon3 { clip-path: polygon(0% 60%, 20% 0%, 60% 0%, 40% 60%) }
polygon
值為多個(gè)坐標(biāo)點(diǎn)組成,坐標(biāo)第一個(gè)值是x方向,第二個(gè)值是y方向。
左上角為原點(diǎn),右下角是(100%,100%)的點(diǎn)。
circle
值為一個(gè)坐標(biāo)點(diǎn)和半徑組成。
左上角為原點(diǎn),右下角是(100%,100%)的點(diǎn)。
定義半徑的時(shí)候可以用at關(guān)鍵字來(lái)定義坐標(biāo)。
body { background-color: #000; } .fa { border: 1px solid #fff; color: yellowgreen; padding: 10px; margin: 10px; } .fa>p { width: 110px; height: 110px; background-color: yellowgreen; margin: 20px auto; } .circle1 { clip-path: circle(50% at 50% 50%) } .circle2 { clip-path: circle(70% at 50% 50%) } .circle3 { clip-path: circle(30% at 10% 10%) }
circle
值為一個(gè)坐標(biāo)點(diǎn)和半徑組成。
左上角為原點(diǎn),右下角是(100%,100%)的點(diǎn)。
定義半徑的時(shí)候可以用at關(guān)鍵字來(lái)定義坐標(biāo)。
ellipse
值為橢圓的x軸半徑,y軸半徑,定位橢圓的坐標(biāo)三部分組成。
左上角為原點(diǎn),右下角是(100%,100%)的點(diǎn)。
at關(guān)鍵字將半徑和坐標(biāo)分開(kāi)。
body { background-color: #000; } .fa { border: 1px solid #fff; color: yellowgreen; padding: 10px; margin: 10px; } .fa>p { width: 110px; height: 110px; background-color: yellowgreen; margin: 20px auto; } .ellipse1 { clip-path: ellipse(30% 20% at 50% 50%) } .ellipse2 { clip-path: ellipse(20% 30% at 50% 50%) } .ellipse3 { clip-path: ellipse(60% 10% at 10% 10%) }
ellipse
值為橢圓的x軸半徑,y軸半徑,定位橢圓的坐標(biāo)三部分組成。
左上角為原點(diǎn),右下角是(100%,100%)的點(diǎn)。
at關(guān)鍵字將半徑和坐標(biāo)分開(kāi)
inset
值為(上 右 下 左 round 左上角radius 右上角radius 右下角radius 左下角radius)
round前面的數(shù)值,表示的是距離,如果第一個(gè)值為25%,則表示圖像在上面從25%開(kāi)始繪制。
body { background-color: #000; } .fa { border: 1px solid #fff; color: yellowgreen; padding: 10px; margin: 10px; } .fa>p { width: 110px; height: 110px; background-color: yellowgreen; margin: 20px auto; } .inset1 { clip-path: inset(25% 0% 25% 0% round 0% 25% 0% 25%) } .inset2 { clip-path: inset(0% 25% 25% 0% round 25% 25% 25% 0%) } .inset3 { clip-path: inset(25% 25% 0% 0% round 0% 25% 0% 25%) }
inset
值為(上 右 下 左 round 左上角radius 右上角radius 右下角radius 左下角radius)
round前面的數(shù)值,表示的是距離,如果第一個(gè)值為25%,則表示圖像在上面從25%開(kāi)始繪制
關(guān)于css中clip-path屬性如何使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。