jquery簡單實現網頁層的展開與收縮效果,jquery網頁層收縮

來源:互聯網
上載者:User

jquery簡單實現網頁層的展開與收縮效果,jquery網頁層收縮

本文執行個體講述了jquery簡單實現網頁層的展開與收縮效果。分享給大家供大家參考。具體如下:

這裡示範了jquery網頁層展開、層收縮代碼,帶緩衝動畫效果,點擊指定的文字或按鈕,可展開指定層,再次單擊會收合層,類似效果網上已見到許多,請根據自己的需要修改代碼,別忘了引入最新的jQuery外掛程式哦。

運行效果如下:

具體代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Div層的收縮與展開</title><style>#content {font-size: 14px;width: 730px;height: 25px;background:#FFF; line-height:25px;border: 1px #ccc double;overflow: hidden;border:1px solid #99a5ab;}#key {color: red;float: right;width:50px;height:25px;line-height:25pxmargin:0 0 0 0;}</style><script type='text/javascript' src='jquery-1.6.2.min.js'></script><script type="text/javascript"> $(function(){  $("#key").toggle(function(){   $(this).html("關閉").parent().animate({height:"280px"},1000);   },function(){   $(this).html("展開").parent().animate({height:"25px"},1000);   }) })</script></head><body><div id="content"> <span id="key"">展開</span><span class="fonttitle">標題</span>  <table width="700" border="1px" cellpadding="0" cellspacing="0">   <tr>   <td>1</td>   <td>2</td>   <td>2</td>   <td>2</td>   <td>2</td>   <td>2</td>   <td>2</td>   <td>2</td>   </tr>   </table>   </div></body></html>

希望本文所述對大家的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.