溫馨提示×

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

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

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

發(fā)布時(shí)間:2021-08-04 10:10:25 來源:億速云 閱讀:121 作者:chen 欄目:web開發(fā)

本篇內(nèi)容主要講解“如何使用CSS3和Checkbox實(shí)現(xiàn)JQuery的一些效果”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“如何使用CSS3和Checkbox實(shí)現(xiàn)JQuery的一些效果”吧!

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

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

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

  1. <div id="box">  

  2.     <input type="checkbox" id="sh"/>  

  3.     <label for="sh">show/hide</label>  

  4.     <div id="shbox">  

  5.         點(diǎn)擊上面的show/hide實(shí)現(xiàn)show()/hide()   

  6.     </div>  

  7. </div>  

css:

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

  1. #box{   

  2.     position:relative;   

  3. }   

  4. #box *:not(#shbox){   

  5.     display:inline-block;   

  6. }   

  7. input{   

  8.     position:absolute;   

  9.     left:-10000000px;   

  10. }   

  11. :checked~#shbox{   

  12.     display:none;   

  13. }   

  14. label{   

  15.     width:100px;   

  16.     height:30px;   

  17.     line-height:30px;   

  18.     text-align:center;   

  19.     border:1px solid green;   

  20.     position:absolute;   

  21.     left:0px;   

  22.     cursor:pointer;   

  23.     border-radius:5px;   

  24. }   

  25. #shbox{   

  26.     background:#ccc;   

  27.     color:red;   

  28.     width:200px;   

  29.     height:200px;   

  30.     border:1px solid blue;   

  31.     box-sizing:border-box;   

  32.     padding:50px;   

  33.     position:absolute;   

  34.     top:50px;   

  35. }  

運(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)容到剪貼板

  1. :checked~#shbox{   

  2.     opacity:0;   

  3. }  

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

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

  1. #shbox{   

  2.     transition:opacity 2s;   

  3. }  

運(yùn)行效果:https://jsfiddle.net/dwqs/2txfyr1e/embedded/result/
slideUp()/slideDown()的實(shí)現(xiàn)

slideUp()/slideDown()通過改變?cè)氐母叨葋韺?shí)現(xiàn)上卷和下拉。html依舊采用上面的,css修改如下:

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

  1. :checked~#shbox{   

  2.     height:0px;   

  3. }   

  4. #shbox{   

  5.     background:#ccc;   

  6.     overflow-y:hidden;   

  7.     color:red;   

  8.     width:200px;   

  9.     height:200px;   

  10.     box-sizing:border-box;   

  11.     transition:all 2s;   

  12.     position:absolute;   

  13.     top:50px;   

  14. }  

#shbox添加了 overflow-y:hidden,是為了連文本也實(shí)現(xiàn)隱藏,不然,#shbox里面的文本仍然會(huì)顯示; transition實(shí)現(xiàn)一個(gè)過渡;同時(shí)去掉了border屬性。
運(yùn)行結(jié)果:https://jsfiddle.net/dwqs/xyu58nu8/3/embedded/result/

到此,相信大家對(duì)“如何使用CSS3和Checkbox實(shí)現(xiàn)JQuery的一些效果”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

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

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

AI