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


JQuery fadeTo()用法及代码示例


fadeTo()方法是一个内置方法jQuery用于更改所选元素的不透明度。

用法:

$(selector).fadeTo(speed, opacity, easing, call_function)

这里的selector就是被选择的元素。

参数:它接受下面指定的四个参数 -

  • speed:它指定淡入淡出效果的速度。
  • opacity:它指定淡入淡出,该值应介于 0.0 和 1.0 之间。
  • easing:它指定动画不同点的速度。
  • call_function:它是一个可选参数,在执行 fadeTo 方法后执行一个函数。

返回值:它不返回任何值。

示例 1:在下面的代码中,没有传递可选的函数参数。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://code.jquery.com/jquery-1.10.2.js"> 
    </script> 
    <style> 
        body { 
            width: 40%; 
            height: 100px; 
            border: 2px solid green; 
            padding: 20px; 
        } 
    </style> 
</head> 
  
<body> 
    <!-- Click on this paragraph and  
        this paragraph will fade out -->
    <p> 
        This paragraph will fade out ! 
    </p> 
    
    <!-- After clicking on this paragraph this  
        paragraph will not fade out -->
    <p> 
        This paragraph will not fade ! 
    </p> 
    
    <!-- jQuery code to show working  
        of this method -->
    <script> 
        $("p:first").click(function () { 
            $(this).fadeTo("slow", 0.33); 
        }); 
    </script> 
</body> 
  
</html>

输出:

示例 2:在下面的代码中,传递了一个可选的函数参数。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    
    <!-- jQuery code to show the working of this method -->
    <script> 
        $(document).ready(function () { 
            $("button").click(function () { 
                $("p").fadeTo(2000, 0.2, function () { 
                    alert("The fadeTo effect has finished!"); 
                }); 
            }); 
        }); 
    </script> 
    <style> 
        body { 
            width: 40%; 
            height: 100px; 
            border: 2px solid green; 
            padding: 20px; 
        } 
    </style> 
</head> 
  
<body> 
    
    <!-- This paragraph will fade out -->
    <p>This is a paragraph.</p> 
  
    <!-- Click on this button and  
        paragraph will fade out -->
    <button>Click me</button> 
</body> 
  
</html>

输出:



相关用法


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