這篇文章給大家分享的是有關(guān)css偽類右下角點(diǎn)擊出現(xiàn)對號角標(biāo)表示選中的實(shí)現(xiàn)方法的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)建站是由多位在大型網(wǎng)絡(luò)公司、廣告設(shè)計公司的優(yōu)秀設(shè)計人員和策劃人員組成的一個具有豐富經(jīng)驗(yàn)的團(tuán)隊,其中包括網(wǎng)站策劃、網(wǎng)頁美工、網(wǎng)站程序員、網(wǎng)頁設(shè)計師、平面廣告設(shè)計師、網(wǎng)絡(luò)營銷人員及形象策劃。承接:成都做網(wǎng)站、成都網(wǎng)站設(shè)計、成都外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站改版、網(wǎng)頁設(shè)計制作、網(wǎng)站建設(shè)與維護(hù)、網(wǎng)絡(luò)推廣、數(shù)據(jù)庫開發(fā),以高性價比制作企業(yè)網(wǎng)站、行業(yè)門戶平臺等全方位的服務(wù)。效果:
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è)計好按鈕本身的樣式(.s_type)
2:將要加的樣式另寫一個類名(.selecd )
3:通過點(diǎn)擊事件將元素添加樣式
剛開始想過挺多方法的,比如直接在偽類里content: ‘?’;但這樣的話出的效果就是對號沒有背景顏色,直接白了一塊,這樣不行。還想到要不直接把UI的圖摳出來,當(dāng)背景或者圖片直接浮在按鈕上面,后面想想這樣不太對。然后我就先去做別的功能,把其他功能寫出來再弄這個。就剛好看到一篇文章跟我需要的功能一樣,就直接按照這篇博客寫了。。。然后效果出來了哈哈哈哈
后面去看UI庫之類的發(fā)現(xiàn)QQ的UI庫還有專門角標(biāo)設(shè)計(地址)
附錄:下面看下css 選中框樣式
在項目中經(jīng)常會用到下圖樣式的選中樣式
在網(wǎng)上找了一下,思路其實(shí)就是對矩形進(jìn)行變形處理,通過偽元素實(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); }
然后是我們通過使用div來展示效果:
測試
感謝各位的閱讀!關(guān)于“css偽類右下角點(diǎn)擊出現(xiàn)對號角標(biāo)表示選中的實(shí)現(xiàn)方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!