vi教育
您的当前位置:首页基于jquery实现的文字淡入淡出效果_jquery

基于jquery实现的文字淡入淡出效果_jquery

来源:vi教育


代码如下:




无标题文档



$(document).ready(function(){
$("#btn1").toggle(function(){

$("p").fadeOut("slow");
},function(){
$("p").fadeIn("slow");

});
$("#btn2").toggle(function(){

$("p").fadeTo("slow",0.66);
},function(){
$("p").fadeTo("slow",0.66);
});
});



this is pi

this is pi

this is pi

this is pi

this is pi

this is pi





显示全文