現在網頁設計已經成為了一門藝術,其中CSS是其中不可或缺的一環。今天,我們要介紹的是CSS飛機圖標。
.plane-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(to bottom, #57CC99, #9ED9BF); position: relative; } .plane-icon::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -25%); width: 25px; height: 50px; background: #FFF; border-radius: 3px; } .plane-icon::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg); width: 60px; height: 5px; background: #FFF; border-radius: 1px; }
以上是實現飛機圖標的CSS代碼,我們可以通過修改其中各個屬性值,來實現不同飛機的效果。其中before偽類用來繪制機艙,after偽類是用來繪制機翼。
這個飛機圖標可以用于些關于旅游,航空等網站的Logo,也可以用來做菜單圖標。
以上就是CSS飛機圖標的介紹,希望可以啟發大家的創意,為網頁設計添加更多新穎、有趣的元素。
上一篇css表格內容對齊方式