您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)css實(shí)現(xiàn)“加號(hào)”效果的實(shí)例代碼的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
實(shí)現(xiàn)下圖的加號(hào)效果:
若想實(shí)現(xiàn)這個(gè)效果, 只需一個(gè)div元素即可搞定。
需要用到css的為了before和after, 以及border特性。
先設(shè)置一個(gè)div便簽
<div class="add"></div>
再設(shè)置一個(gè)邊框:
.add { border: 1px solid; width: 100px; height: 100px; color: #ccc; transition: color .25s; position: relative; }
此時(shí)邊框是這樣的:
我們可以利用偽類before和其border-top來設(shè)置一個(gè)“橫”:
.add::before{ content: ''; position: absolute; left: 50%; top: 50%; width: 80px; margin-left: -40px; margin-top: -5px; border-top: 10px solid; }
注意我們使了絕對(duì)定位。 此時(shí)變成了這樣:
參照上面, 我們可以使用after偽類和border-bottom設(shè)置一個(gè)“豎”:
.add::after { content: ''; position: absolute; left: 50%; top: 50%; height: 80px; margin-left: -5px; margin-top: -40px; border-left: 10px solid; }
在加上hover偽類,設(shè)置鼠標(biāo)懸浮上去的顏色:
.add:hover { color: blue; }
最終的樣式:
當(dāng)鼠標(biāo)懸浮上去是, 會(huì)變色:
感謝各位的閱讀!關(guān)于“css實(shí)現(xiàn)“加號(hào)”效果的實(shí)例代碼”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。