域名預(yù)訂/競(jìng)價(jià),好“米”不錯(cuò)過(guò)
這篇文章主要介紹了css中:focus-within,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
相信有些人看到過(guò)這個(gè)B站輸入密碼就遮眼睛的這個(gè)圖
這里我們用:focus-within玩一把
布局是這樣的
外面有一個(gè)ctn 可以忽略,就是一個(gè)居中固定位置而已
xPassword在沒(méi)點(diǎn)擊之前里面的“suo”這個(gè)圖是隱藏的
xPassword 同級(jí)屁股后的“r6m”此時(shí)是顯示的
當(dāng)我們一點(diǎn)擊xPassword后同級(jí)第一張圖‘r6m’隱藏
:focus-within ~ img的 ~ 這個(gè)符號(hào)是同級(jí)屁股后第一個(gè)的意思
同時(shí)xPassword里面的一張圖‘suo’的這個(gè)display為顯示!這時(shí)就成了你輸密碼我就裝作看不見(jiàn)
<div class="ctn">
<div class="xPassword">
<input type="password" placeholder="請(qǐng)輸入密碼" class="input">
<img src="http://suo.im/5UnnjN" alt="">
</div>
<img src="http://r6m.cn/csAC" alt="">
</div>
.ctn {
position: relative;
width: 318px;
margin: 100px auto;
height: 370px;
padding: 20px;
box-sizing: border-box;
background: #fff;
z-index: 10;
box-shadow: 0 0 15px #cfcfcf;
}
.ctn h2 {
font-size: 20px;
font-weight: bold;
margin-bottom: 30px;
}
.ctn input {
padding: 10px;
width: 100%;
border: 1px solid #e9e9e9;
border-radius: 2px;
outline: none;
box-sizing: border-box;
font-size: 16px;
}
img {
position: absolute;
top: -23%;
left: 50%;
width: 80px;
height: auto;
transform: translate(-50%, 0);
}
.xPassword img {
display: none;
width: 103px;
height: auto;
top: -26%;
}
//以上毫無(wú)價(jià)值,可以忽略,下方兩個(gè)才是重點(diǎn)
.xPassword:focus-within ~ img {
display: none;
}
.xPassword:focus-within img {
display: block;
}
文章來(lái)源:腳本之家,原文鏈接:https://www.jb51.net/css/744059.html
申請(qǐng)創(chuàng)業(yè)報(bào)道,分享創(chuàng)業(yè)好點(diǎn)子。點(diǎn)擊此處,共同探討創(chuàng)業(yè)新機(jī)遇!