当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery fadeIn()用法及代码示例


jQuery中的fadeIn()方法用于将所选元素的不透明度从隐藏更改为可见。隐藏的元素将不会显示。

用法:

$(selector).fadeIn( speed, easing, callback )

参数:此方法接受上述和以下所述的三个参数:


  • Speed:它是一个可选参数,用于指定衰落效果的速度。速度的默认值为400毫秒。可能的速度值为:
    • 毫秒
    • “slow”
    • “fast”
  • Easing:它是一个可选参数,用于指定元素到动画不同点的速度。缓动的默认值为“swing”。放松的可能价值是:
    • “swing”
    • “linear”
  • Callback:它是可选参数。在fadeIn()方法完成后,将执行回调函数。

以下示例说明了jQuery中的fadeIn()方法:

示例1:本示例描述了速度为1000毫秒的fadeIn()方法。

<!DOCTYPE html>   
<html>   
    <head>  
        <title>  
            fadeIn() Method in jQuery 
        </title> 
          
        <style> 
            #Outer { 
                border: 1px solid black; 
                padding-top: 40px; 
                height: 140px; 
                background: green; 
                display: none; 
            } 
        </style> 
          
        <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
        </script> 
    </head> 
      
    <body style = "text-align:center;">   
          
        <div id= "Outer"> 
            <h1 style = "color:white;" >   
                GeeksForGeeks   
            </h1>   
        </div><br> 
          
        <button id = "btn">  
            Fade In 
        </button>  
          
        <!-- jQuery script of fadeIn() method -->
        <script>  
            $(document).ready(function() { 
                $("#btn").click(function() { 
                    $("#Outer").fadeIn(1000); 
                }); 
            }); 
        </script>  
    </body>   
</html> 

输出:
在单击按钮之前:

单击按钮后:

示例2:本示例介绍了通过放宽“swing”的fadeIn()方法。

<!DOCTYPE html>   
<html>   
    <head>  
        <title>  
            fadeIn() Method in jQuery 
        </title> 
          
        <style> 
            #Outer { 
                border: 1px solid black; 
                padding-top: 40px; 
                height: 140px; 
                background: green; 
                display: none; 
            } 
        </style> 
          
        <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
        </script> 
    </head> 
      
    <body style = "text-align:center;">   
          
        <div id= "Outer"> 
            <h1 style = "color:white;" >   
                GeeksForGeeks   
            </h1>   
        </div><br> 
          
        <button id = "btn">  
            Fade In 
        </button>  
          
        <!-- jQuery script of fadeIn() method -->
        <script>  
            $(document).ready(function() { 
                $("#btn").click(function() { 
                    $("#Outer").fadeIn("swing"); 
                }); 
            }); 
        </script>  
    </body>   
</html> 

输出:
在单击按钮之前:

单击按钮后:



相关用法


注:本文由纯净天空筛选整理自PranchalKatiyar大神的英文原创作品 jQuery | fadeIn() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。