当前位置: 编程技术>jquery
jquery文字淡入淡出效果代码
来源: 互联网 发布时间:2014-10-09
本文导语: 例子,jquery实现文件的淡入与淡出效果。 代码示例: jquery文字淡入淡出--www.yuju100.com $(document).ready(function(){ $("#btn1").toggle(function(){ $("p").fadeOut("slow"); ...
例子,jquery实现文件的淡入与淡出效果。
代码示例:
jquery文字淡入淡出--www.yuju100.com
$(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);
});
});
jquery实现文字淡入淡出效果,由(www.)整理。
this is pi
this is pi
this is pi
this is pi
this is pi
this is pi
您可能感兴趣的文章:
- javascript 图片淡入淡出效果
- js 淡入淡出效果的代码