我是编程新手请帮助我 使用具有exploting效果的jquery缓慢隐藏div
答案 0 :(得分:2)
jQuery("#some_id").hide("explode", 5000);
答案 1 :(得分: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);
答案 2 :(得分:1)
隐藏
$("#divId").hide('explode',1000);
显示
$("#divId").show('explode',1000);