這篇文章給大家分享的是有關(guān)css偽類(lèi)右下角點(diǎn)擊出現(xiàn)對(duì)號(hào)角標(biāo)表示選中的實(shí)現(xiàn)方法的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
鹽田ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)建站的ssl證書(shū)銷(xiāo)售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書(shū)合作)期待與您的合作!
效果:
css:
.s_type { border: none; border-radius: 5px; background-color: #f3f3f3; padding: 7px 0; color: #606266; margin: 5px 2.5% 5px 0; width: 30%; position: relative; } .selecd { background-color: #ebf3ff; color: #5999fc; } .select { background-color: #ebf3ff; color: #5999fc; } .select:before { content: ''; position: absolute; right: 0; bottom: 0; border: 9px solid #5999fc; border-top-color: transparent; border-left-color: transparent; }
html:
js:
$(’.s_type’).on(‘click’,function(){ $(this).toggleClass(‘select’); });
1:設(shè)計(jì)好按鈕本身的樣式(.s_type)
2:將要加的樣式另寫(xiě)一個(gè)類(lèi)名(.selecd )
3:通過(guò)點(diǎn)擊事件將元素添加樣式
剛開(kāi)始想過(guò)挺多方法的,比如直接在偽類(lèi)里content: ‘?’;但這樣的話出的效果就是對(duì)號(hào)沒(méi)有背景顏色,直接白了一塊,這樣不行。還想到要不直接把UI的圖摳出來(lái),當(dāng)背景或者圖片直接浮在按鈕上面,后面想想這樣不太對(duì)。然后我就先去做別的功能,把其他功能寫(xiě)出來(lái)再弄這個(gè)。就剛好看到一篇文章跟我需要的功能一樣,就直接按照這篇博客寫(xiě)了。。。然后效果出來(lái)了哈哈哈哈
后面去看UI庫(kù)之類(lèi)的發(fā)現(xiàn)QQ的UI庫(kù)還有專(zhuān)門(mén)角標(biāo)設(shè)計(jì)(地址)
附錄:下面看下css 選中框樣式
在項(xiàng)目中經(jīng)常會(huì)用到下圖樣式的選中樣式
在網(wǎng)上找了一下,思路其實(shí)就是對(duì)矩形進(jìn)行變形處理,通過(guò)偽元素實(shí)現(xiàn)下標(biāo) css樣式:
.select { position: relative; width:81px; height:93px; margin: 0 auto; text-align: center; line-height: 93px; color: #4ABE84; background-color: #fff; box-shadow:0px 2px 7px 0px rgba(85,110,97,0.35); border-radius:7px; border:1px solid rgba(74,190,132,1); } .select:before { content: ''; position: absolute; right: 0; bottom: 0; border: 17px solid #4ABE84; border-top-color: transparent; border-left-color: transparent; } .select:after { content: ''; width: 5px; height: 12px; position: absolute; right: 6px; bottom: 6px; border: 2px solid #fff; border-top-color: transparent; border-left-color: transparent; transform: rotate(45deg); }
然后是我們通過(guò)使用div來(lái)展示效果:
測(cè)試
感謝各位的閱讀!關(guān)于“css偽類(lèi)右下角點(diǎn)擊出現(xiàn)對(duì)號(hào)角標(biāo)表示選中的實(shí)現(xiàn)方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!