国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開發(fā) > CSS > 正文

使用CSS3和Checkbox實(shí)現(xiàn)JQuery的一些效果

2024-07-11 08:36:27
字體:
供稿:網(wǎng)友

show()/hide()的實(shí)現(xiàn)

show()/hide()的實(shí)現(xiàn)主要控制元素的display屬性。
html:

XML/HTML Code復(fù)制內(nèi)容到剪貼板

<div id="box">  
    <input type="checkbox" id="sh"/>  
    <label for="sh">show/hide</label>  
    <div id="shbox">  
        點(diǎn)擊上面的show/hide實(shí)現(xiàn)show()/hide()   
    </div>  
</div>  

css:

CSS Code復(fù)制內(nèi)容到剪貼板

#box{   
    position:relative;   
}   
#box *:not(#shbox){   
    display:inline-block;   
}   
input{   
    position:absolute;   
    left:-10000000px;   
}   
:checked~#shbox{   
    display:none;   
}   
label{   
    width:100px;   
    height:30px;   
    line-height:30px;   
    text-align:center;   
    border:1px solid green;   
    position:absolute;   
    left:0px;   
    cursor:pointer;   
    border-radius:5px;   
}   
#shbox{   
    background:#ccc;   
    color:red;   
    width:200px;   
    height:200px;   
    border:1px solid blue;   
    box-sizing:border-box;   
    padding:50px;   
    position:absolute;   
    top:50px;   
}  

運(yùn)行結(jié)果:https://jsfiddle.net/dwqs/1LykzL2f/1/embedded/result/
fadeIn()/fadeOut()的實(shí)現(xiàn)

fadeIn()/fadeOut()的實(shí)現(xiàn)主要是控制元素的opcity屬性。html依舊采用上面的,修改css如下:

CSS Code復(fù)制內(nèi)容到剪貼板

:checked~#shbox{   
    opacity:0;   
}  

fadeIn()/fadeOut()可以控制漸顯/漸退的速度,同樣給#shbox添加transition屬性可以模擬這個(gè)效果:

CSS Code復(fù)制內(nèi)容到剪貼板

#shbox{   
    transition:opacity 2s;   

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 舒城县| 铜鼓县| 张家港市| 松溪县| 冀州市| 嘉峪关市| 惠水县| 五河县| 册亨县| 延长县| 金阳县| 兴城市| 贞丰县| 开封县| 广水市| 独山县| 原阳县| 南部县| 上蔡县| 嘉兴市| 景宁| 宕昌县| 沅陵县| 泉州市| 建昌县| 东明县| 隆子县| 通化市| 黎川县| 湖北省| 丰顺县| 遵义市| 永善县| 荔浦县| 外汇| 新兴县| 阿克| 安丘市| 皋兰县| 西城区| 招远市|