码迷,mamicode.com
首页 > Web开发 > 详细

jQuery常用属性

时间:2017-05-21 09:53:15      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:ext   button   show   function   down   ble   query   效果   index   

1.显示隐藏功能

hide 隐藏   show显示属性

默认参数为时间,单位为毫秒

$(‘button‘).on(‘click‘,function(){
    var content = $(‘.header‘);
         if(content.is(‘:visible‘)){
            content.hide(1000);
         }else{
            content.show(1000);
        }

2.淡入淡出

   fadeIn淡入    fadeOut淡出

默认参数也是时间         实例:

$(‘.list>a‘).on(‘click‘,function(){
       var ThisIndex = $(this).index();
       console.log(ThisIndex);
       $(‘.img>img‘).eq(ThisIndex-1).fadeOut(1000);
       $(‘.img>img‘).eq(ThisIndex).fadeIn(1000);
});

 

3.滑动效果

  slideUp收起     slideDown下拉

默认参数也是时间         实例:

var h3 = $(‘h3‘);
h3.next().hide();
   h3.on(‘click‘,function(){
     if($(this).next().is(‘:hidden‘)){
      $(this).next().slideDown(500);
      }else{
          $(this).next().slideUp(500);
      }

 

jQuery常用属性

标签:ext   button   show   function   down   ble   query   效果   index   

原文地址:http://www.cnblogs.com/yangyusong/p/6883874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!