tab切換jquery代碼

來源:互聯網
上載者:User

標籤:http   io   ar   color   os   sp   java   div   on   

http://immmmm.com/jquery-tab-switch-code-improved.html

html

<div id="sidebar-tab"> <div id="tab-title"> <h3><span class="selected">最新評論</span><span>近期熱評</span><span>隨機文章</span></h3> </div> <div id="tab-content"> <ul><?php wkc_recent_comments(‘number=10&length=25‘); ?></ul> <ul class="hide"><?php wkc_most_commented_posts(‘number=10&days=300‘); ?></ul> <ul class="hide"><?php wkc_random_posts(‘number=10&length=40‘); ?></ul> </div> </div>

css
#sidebar-tab{border:1px solid #ccf;margin-bottom:1.5em;overflow:hidden;} #tab-title h3{color:#666;font-size:15px;font-weight:400;} #tab-title .selected{color:#356aa0;border-bottom:0px;} /*標題被選中時的樣式*/ #tab-title span{padding:5px 9px 5px 10px;border:1px solid #ccf;border-right:0px;margin-left:-1px;cursor:pointer;} #tab-content .hide{display:none;} /*預設讓第一塊內容顯示,其餘隱藏*/ #tab-content ul{padding:5px 10px;overflow:hidden;} #tab-content ul li{padding-top:5px;height:20px;}

jquery
 $(‘#tab-title span‘).mouseover(function(){ $(this).addClass("selected").siblings().removeClass(); $("#tab-content > ul").eq($(‘#tab-title span‘).index(this)).show().siblings().hide(); });

 

改進jquery

$(‘#tab-title span‘).click(function(){ $(this).addClass("selected").siblings().removeClass(); $("#tab-content > ul").slideUp(‘1500‘).eq($(‘#tab-title span‘).index(this)).slideDown(‘1500‘); });

tab切換jquery代碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.