jquery fadeTo实现图像淡入效果

来源:互联网 发布:银河证券用什么软件 编辑:程序博客网 时间:2024/05/03 23:00
<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){  $("button").click(function(){  $("div").fadeTo("slow",0.25);  });});</script></head><body><div id="test" style="background:yellow;width:300px;height:300px"><button type="button">点击这里查看淡出效果</button></div></body></html>