Animation dégradé de couleurs
fadeIn(spend,[callback]) : modification de l'opacité pour obtenir l'effet de fondu (affichage) de tous les éléments correspondants
fadeOut(spend,[callback ]) :Obtenez l'effet de fondu (caché) de toutes les correspondances grâce à des changements d'opacité
fadeTo(spend,opacity,[callback]) : Ajustez la transparence de tous les éléments correspondants à l'opacité spécifiée de manière progressive manière
fadeToggle(spend,[callback]) : changez les effets de fondu entrant et sortant de tous les éléments correspondants en modifiant l'opacité
Effet d'animation de dégradé de couleur
<!DOCTYPE html> <html> <head> <title>php.cn</title> <meta charset="utf-8" /> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script> function f1(){ //隐藏 $('div').fadeOut(3000); } function f2(){ //显示 show $('div').fadeIn(3000); } function f3(){ $('div').fadeToggle(3000); } </script> <style type="text/css"> div {width:300px; height:200px; background-color:blue;} </style> </head> <body> <div></div> <input type="button" value="隐藏" onclick="f1()" /> <input type="button" value="显示" onclick="f2()" /> <input type="button" value="开关" onclick="f3()" /> </body> </html>
Définir la transparence spécifiée
<!DOCTYPE html> <html> <head> <title>php.cn</title> <meta charset="utf-8" /> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script> function f1(){ //fadeTo(speed, opacity 透多0-1透少, [callback]) $('#two').fadeTo(0,0.3); } </script> <style type="text/css"> #one {width:300px; height:200px; background-color:yellow; font-size:35px; font-weight:bold; position:absolute; left:40px; top:40px; } #two {width:300px; height:200px; background-color:green; font-size:35px; font-weight:bold; position:absolute; left:60px; top:60px; } </style> </head> <body> <div id="one">this is one div</div> <div id="two">this is two div</div> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <input type="button" value="设置" onclick="f1()" /> </body> </html>section suivante