這篇文章主要介紹“css如何設(shè)置一個(gè)元素的對(duì)角線”,在日常操作中,相信很多人在css如何設(shè)置一個(gè)元素的對(duì)角線問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”css如何設(shè)置一個(gè)元素的對(duì)角線”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
創(chuàng)新互聯(lián)公司主要從事網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)東河,十載網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專(zhuān)業(yè),歡迎來(lái)電咨詢(xún)建站服務(wù):13518219792
css設(shè)置一個(gè)元素對(duì)角線的方法:1、利用“::before”偽類(lèi)配合rotateZ()、scale()來(lái)實(shí)現(xiàn);2、利用linear-gradient()線性漸變來(lái)實(shí)現(xiàn);3、利用偽元素+三角形來(lái)實(shí)現(xiàn);4、利用clip-path屬性來(lái)實(shí)現(xiàn)。
本教程操作環(huán)境:windows7系統(tǒng)、CSS3&&HTML5版、Dell G3電腦。
使用單個(gè)標(biāo)簽,如何實(shí)現(xiàn)下圖所示的斜線效果。也就是如何使用 CSS 畫(huà)斜線?
這種類(lèi)似于表格的斜線效果,細(xì)細(xì)研究一下,還是有一些挺有趣的方法可以實(shí)現(xiàn)之。
我們假定我們的 HTML
結(jié)構(gòu)如下:
<div></div>
假定高寬各為 100px,在單個(gè)標(biāo)簽局限內(nèi),看看能有多少種方法實(shí)現(xiàn)。
這個(gè)應(yīng)該屬于看到需求第一眼就可以想到的方法了。
這里我們使用 偽元素 畫(huà)出一條直線,然后繞 div 中心旋轉(zhuǎn) 45deg ,再縮放一下就可以得到。
簡(jiǎn)單的一張流程圖:
代碼示例:
div { position: relative; margin: 50px auto; width: 100px; height: 100px; box-sizing: border-box; border: 1px solid #333; // background-color:#333; line-height: 120px; text-indent: 5px; } div::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 50px; box-sizing: border-box; border-bottom: 1px solid deeppink; transform-origin: bottom center; // transform:rotateZ(45deg) scale(1.414); animation: slash 5s infinite ease; } @keyframes slash { 0% { transform: rotateZ(0deg) scale(1); } 30% { transform: rotateZ(45deg) scale(1); } 60% { transform: rotateZ(45deg) scale(1.414); } 100% { transform: rotateZ(45deg) scale(1.414); } }
這種方法使用了背景的線性漸變實(shí)現(xiàn),漸變背景很重要的一點(diǎn)是,雖然名字喚作漸變,但是也是可以畫(huà)出實(shí)色而非漸變色。
我們選定線性漸變的方向?yàn)?45deg,依次將漸變色值設(shè)為:transparent
-> deeppink
-> deeppink
->transparent
。
transparent
為透明色值。
就像這樣簡(jiǎn)單的一句,即可實(shí)現(xiàn)斜線效果:
div{ background: linear-gradient(45deg, transparent 49.5%, deeppink 49.5%, deeppink 50.5%, transparent 50.5%); }
完整css代碼:
div{ position:relative; margin:50px auto; width:100px; height:100px; box-sizing:border-box; border:1px solid #333; line-height:120px; text-indent:5px; background: linear-gradient(45deg, transparent 49.5%, deeppink 49.5%, deeppink 50.5%, transparent 50.5%); }
接下來(lái)兩種方法就有點(diǎn)為了斜線而斜線的感覺(jué)。
利用 CSS border ,是可以輕松實(shí)現(xiàn)一個(gè)類(lèi)似這樣的三角形的:
CSS 代碼如下:
div{ border:50px solid transparent; border-left:50px solid deeppink; border-bottom:50px solid deeppink; }
類(lèi)似這樣,配合 div 的白色底色,即可得到一條斜線:這里,我們使用 div 的兩個(gè) 偽元素
畫(huà)出兩個(gè)大小不一的三角形,然后通過(guò)疊加在一起的方式,實(shí)現(xiàn)一條斜線。
完整css代碼:
body{ background:#eee; } div{ position:relative; margin:50px auto; width:100px; height:100px; box-sizing:border-box; border:1px solid #333; background:#fff; line-height:120px; text-indent:5px; } div::before{ content:""; position:absolute; left:0; bottom:0; width:0; height:0; border:49px solid transparent; border-left:49px solid deeppink; border-bottom:49px solid deeppink; animation:slash 6s infinite ease; } div::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:0; border:48px solid transparent; border-left:48px solid #fff; border-bottom:48px solid #fff; animation:slash3 6s infinite ease; } @keyframes slash{ 0%{ transform:translate(-50px); } 30%{ transform:translate(0px); } 100%{ transform:translate(0px); } } @keyframes slash3{ 0%{ transform:translate(-100px); } 30%{ transform:translate(-100px); } 60%{ transform:translate(0px); } 100%{ transform:translate(0px); } }
clip-path
是啥?可以算是 CSS3 的新增屬性,或者準(zhǔn)確來(lái)說(shuō)是 SVG 的 <path> 的 CSS 版本。
使用 clip-path
,我們可以定義任意想要的剪裁路徑。
本文不深入探討
clip-path
,可以先移步 MDN 或者其他關(guān)于 clip-path 講解的文章學(xué)習(xí)一下。
使用 clip-path
的多邊形規(guī)則 polygon
,也可以輕松制作一個(gè)三角形(本題中,我們依然借助偽元素來(lái)使用clip-path
):
CSS 代碼如下:
div { width: 100px; height: 100px; -webkit-clip-path: polygon(0 0, 0 100px, 100px 100px, 0 0); background: deeppink; }
可以看到 CSS 代碼,主要 polygon(0 0, 0 100px, 100px 100px, 0 0)
中,其實(shí)是一系列路徑坐標(biāo)點(diǎn),整個(gè)圖形就是由這些點(diǎn)圍起來(lái)的區(qū)域。
所以使用 clip-path
加上兩個(gè)偽元素我們可以像 解法三
一樣制作出斜線。
當(dāng)然,我們也可以換一種方法,殊途同歸,解法三也可以這樣做,看看下面的效果圖:
完整css代碼
body{ background:#eee; } div{ position:relative; margin:50px auto; width:100px; height:100px; box-sizing:border-box; // border:1px solid deeppink; background-color:deeppink; line-height:120px; text-indent:5px; } div::before{ content:""; position:absolute; left:0px; top:0; right:0; bottom:0; -webkit-clip-path: polygon(0 0, 0 100px, 100px 100px, 0 0); background:#fff; border:1px solid #333; transform:translateX(-120px); animation:move 5s infinite linear; } div::after{ content:""; position:absolute; left:0; top:0; right:0; bottom:0; -webkit-clip-path: polygon(100px 99px, 100px 0, 1px 0, 100px 99px); background:#fff; border:1px solid #333; transform:translateX(120px); animation:move 5s infinite linear; } @keyframes move{ 40%{ transform:translateX(0px); } 100%{ transform:translateX(0px); } }
到此,關(guān)于“css如何設(shè)置一個(gè)元素的對(duì)角線”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
網(wǎng)頁(yè)題目:css如何設(shè)置一個(gè)元素的對(duì)角線
分享地址:http://www.rwnh.cn/article26/jepijg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站制作、App開(kāi)發(fā)、網(wǎng)站營(yíng)銷(xiāo)、定制網(wǎng)站、網(wǎng)站設(shè)計(jì)公司、服務(wù)器托管
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)