91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jQuery 效果學習

發布時間:2020-06-24 15:22:38 來源:網絡 閱讀:403 作者:seawuhai 欄目:web開發
<script type="text/javascript">
  //隱藏第二個段落,點擊more顯示一個效果
  $(document).ready(function(){
    $('p:eq(1)').hide();
    $('span.more').click(function(){
      $('p:eq(1)').animate({height:"show", width:"show", opacity:"show"},'slow');
      $(this).hide();
    });
    
    //隱藏最后段落,點擊倒數第二段落,顯示最后一個段落隱藏倒數第二段落 移動效果
    $('p:last').css('backgroundColor','#fcf').hide();
    $('p:eq(2)').css('backgroundColor','#cff').click(function(){
      var $thisPara = $(this);
      $thisPara.next().slideDown('slow', function(){
         $thisPara.slideUp('slow');
      });
    })
    
    //按鈕向左運動
    $('div.label').click(function(){
      //計算left距離
      var paraWidth = $('div.speech p').width(); //獲取段落寬度
      var $button  = $('div.button');  //獲取對象
      var buttonWidth = $button.width(); //獲取按鈕的寬度
      var paddingRight = $button.css('paddingRight');
            var paddingLeft = $button.css('paddingLeft');
      var borderRightWidth = $button.css('borderRightWidth');
            var borderLeftWidth = $button.css('borderLeftWidth');
      var totalButtonWidth = parseInt(buttonWidth, 10) + parseInt(paddingRight, 10) + parseInt(paddingLeft, 10) + parseInt(borderRightWidth, 10) + parseInt(borderLeftWidth, 10);
      var rightSide = paraWidth - totalButtonWidth;
      $('div.button').animate({'left':rightSide, height: 20}, 'slow')
    });
    //按鈕向右運動    淡入淺出效果
    $('h3').click(function(){
      $('div.button')
      .fadeTo('slow',0.4)
      .animate({'left':650},'slow')
      .fadeTo('slow',1.0)
      .slideUp('slow');
    });
    
    //改變段落字體大小
    $('div.button').click(function(){
      //獲取對象保存變量中
      var $speech = $('div.speech');
      var currentSize = $speech.css('fontSize');//獲取樣式屬性的值
      var  num = parseFloat(currentSize,10);
      var unit = currentSize.slice(-2);
      if(this.id == 'switcher-large'){
        num *= 1.4;
      } else if (this.id == 'switcher-small') {
        num /= 1.4;
      }
      $speech.css('fontSize', num + unit);
    });
    
    
    //鼠標滑過變色 使用hover方法  
    $('h3, div.label, div.button, span.more').hover(function(){
      $(this).addClass('hover');
    }, function(){
      $(this).removeClass('hover');
    });
  });
</script>
<style type="text/css">
.hover {
  cursor: pointer;
  background: #ffc;
}
</style>

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

红桥区| 西丰县| 海宁市| 介休市| 仁寿县| 韶关市| 罗田县| 崇仁县| 海林市| 舟曲县| 始兴县| 昆山市| 马尔康县| 浦县| 根河市| 四川省| 额尔古纳市| 定日县| 淄博市| 城市| 望奎县| 泸西县| 乐安县| 麟游县| 长乐市| 谷城县| 枣阳市| 榕江县| 合水县| 扬州市| 南通市| 大石桥市| 汤原县| 容城县| 鹤岗市| 阿鲁科尔沁旗| 蓝山县| 舞阳县| 铜鼓县| 大化| 筠连县|