您好,登錄后才能下訂單哦!
本文將為大家詳細介紹“CSS常用樣式之繪制雙箭頭的方法”,內容步驟清晰詳細,細節處理妥當,而小編每天都會更新不同的知識點,希望這篇“CSS常用樣式之繪制雙箭頭的方法”能夠給你意想不到的收獲,請大家跟著小編的思路慢慢深入,具體內容如下,一起去收獲新知識吧。
一、多次調用單箭頭
實現了單箭頭–就很容易實現雙箭頭了,上文已經介紹2種實現單箭頭的原理: 邊框旋轉方式、雙三角覆蓋方式。這次以邊框旋轉為例多次調用實現雙箭頭。
1、邊框旋轉單箭頭實現
.arrow-right{ height: 120px; width: 30px; display :inline-block; position: relative; } .arrow-right::after { content: ""; height: 60px; width: 60px; top: 12px; border-width: 8px 8px 0 0; border-color: blue; border-style: solid; transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0); position: absolute; }
效果圖如下:
2、多次調用單箭頭
<div> <span class="arrow-right"/> <span class="arrow-right"/> </div>
效果圖如下:
二、旋轉邊框直接繪制雙箭頭
之前通過::after偽元素繪制單箭頭,現在再加上::before偽元素再繪制一個單箭頭就實現純CSS繪制雙箭頭了。
.arrow-right{ height: 120px; width: 30px; display :inline-block; position: relative; } .arrow-right::before { content: ""; height: 60px; width: 60px; top: 12px; left: 30px; border-width: 8px 8px 0 0; border-color: blue; border-style: solid; transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0); position: absolute; } .arrow-right::after { content: ""; height: 60px; width: 60px; top: 12px; border-width: 8px 8px 0 0; border-color: blue; border-style: solid; transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0); position: absolute; }
效果圖如下:
雙三角覆蓋這種方式也能直接繪制雙箭頭,但是實現比較麻煩,不如邊框旋轉方式好實現就不講了
如果你能讀到這里,小編希望你對“CSS常用樣式之繪制雙箭頭的方法”這一關鍵問題有了從實踐層面最深刻的體會,具體使用情況還需要大家自己動手實踐使用過才能領會,如果想閱讀更多相關內容的文章,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。