溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

css偽類右下角點(diǎn)擊出現(xiàn)對號角標(biāo)表示選中的實現(xiàn)方法

發(fā)布時間:2021-03-18 15:02:25 來源:億速云 閱讀:647 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)css偽類右下角點(diǎn)擊出現(xiàn)對號角標(biāo)表示選中的實現(xiàn)方法的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

效果:

css偽類右下角點(diǎn)擊出現(xiàn)對號角標(biāo)表示選中的實現(xiàn)方法

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:

<button class="s_type">全部</button>
<button class="s_type">2020年夏季</button>

js:

$(&rsquo;.s_type&rsquo;).on(&lsquo;click&rsquo;,function(){
$(this).toggleClass(&lsquo;select&rsquo;);
});

1:設(shè)計好按鈕本身的樣式(.s_type)
2:將要加的樣式另寫一個類名(.selecd )
3:通過點(diǎn)擊事件將元素添加樣式

剛開始想過挺多方法的,比如直接在偽類里content: &lsquo;?&rsquo;;但這樣的話出的效果就是對號沒有背景顏色,直接白了一塊,這樣不行。還想到要不直接把UI的圖摳出來,當(dāng)背景或者圖片直接浮在按鈕上面,后面想想這樣不太對。然后我就先去做別的功能,把其他功能寫出來再弄這個。就剛好看到一篇文章跟我需要的功能一樣,就直接按照這篇博客寫了。。。然后效果出來了哈哈哈哈

后面去看UI庫之類的發(fā)現(xiàn)QQ的UI庫還有專門角標(biāo)設(shè)計(地址)

附錄:下面看下css 選中框樣式

在項目中經(jīng)常會用到下圖樣式的選中樣式
 

css偽類右下角點(diǎn)擊出現(xiàn)對號角標(biāo)表示選中的實現(xiàn)方法
 

在網(wǎng)上找了一下,思路其實就是對矩形進(jìn)行變形處理,通過偽元素實現(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來展示效果:

<div class="select">測試</div>

感謝各位的閱讀!關(guān)于“css偽類右下角點(diǎn)擊出現(xiàn)對號角標(biāo)表示選中的實現(xiàn)方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI