-3

我是编程新手请帮助我使用带有exploting效果的jquery慢慢隐藏div

4

3 回答 3

2
jQuery("#some_id").hide("explode", 5000);

http://docs.jquery.com/UI/Effects/Explode

http://api.jquery.com/fadeOut/

于 2012-07-31T06:50:47.983 回答
1
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>    
$("#divId").hide('explode',1000);
于 2012-07-31T07:01:01.270 回答
1

隐藏

 $("#divId").hide('explode',1000);

以显示

$("#divId").show('explode',1000);
于 2012-07-31T07:10:23.397 回答