首頁 > web前端 > js教程 > 主體

基於jQuery實作文字方塊縮放以及上下移動功能_jquery

WBOY
發布: 2016-05-16 16:30:29
原創
1735 人瀏覽過

想讓你的網頁更加的酷炫,想讓你的留言評論更加的具有互動性嗎,那麼請仔細研究下本代碼吧。

jQuery程式碼:

複製程式碼 程式碼如下:

 $(function(){
          var $comment = $('#comment');
          $('.bigger').click(function(){
              if(!$comment.is(":animated")){
                  if($comment.height()                       //$comment.height($comment.height() 50);
                      $comment.animate({height:" =50"},400);
                  }
              }
          });
           $('.smaller').click(function(){
               if(!$comment.is(":animated")){
                   if($comment.height() > 50){
                       //$comment.height($comment.height() - 50);
                       $comment.animate({height:"-=50"},400);
                   }
               }
           });
           $('.up').click(function(){
              if(!$comment.is(":animated")){
                  $comment.animate({scrollTop:"-=50"},400);
              }
           });
           $('.down').click(function(){
               if(!$comment.is(":animated")){
                   $comment.animate({scrollTop:" =50"},400);
               }
           });
       }); 

HTML程式碼:

複製程式碼 程式碼如下:


      

           放大
           縮小
          
           向下
      

       

           
       

   



CSS代碼:

複製程式碼 程式碼如下:
.bigger , .down , .up , .smaller{
    background-color: #f1a55c;



程式碼奉上,具體如何使用,使用在何處,我就不多說了,小夥伴們自由發揮吧。
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!