您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關css如何使用transform: rotate配合overflow: hidden繪制三角形的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
transform: rotate 配合 overflow: hidden 繪制三角形
這種方法還是比較常規的,使用 transform: rotate
配合 overflow: hidden
。一看就懂,一學就會,簡單的動畫示意圖如下:
設置圖形的旋轉中心在左下角 left bottom
,進行旋轉,配合 overflow: hidden
。
完整的代碼:
<div class="demo"></div> <div class="demo-opacity"></div> <div class="triangle"></div>
html, body { width: 100%; height: 100%; display: flex; } div { width: 141px; height: 100px; margin: auto; } .demo-opacity { overflow: hidden; } .demo, .demo-opacity { position: relative; border: 1px solid #000; background: unset; &::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; animation: conicmove 3s infinite linear; background: deeppink; transform-origin: left bottom; z-index: -1; } } .triangle { position: relative; background: unset; overflow: hidden; &::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: deeppink; transform-origin: left bottom; transform: rotate(45deg); z-index: -1; } } @keyframes conicmove { 100% { transform: rotate(45deg); } }
感謝各位的閱讀!關于“css如何使用transform: rotate配合overflow: hidden繪制三角形”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。