$('#div1').show(1000); //显示。1000毫秒,表示动画显示过程时间。
$('#div1').hide(1000); //隐藏
$('#div1').toggle(1000); //合成显示隐藏
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>显示隐藏动画</title>
<style>
#div1 {
width:100px; height:100px;
background-color:black;
}
</style>
<script src="scripts/jquery-1.7.1.min.js"></script>
<script>
$(function() {
//显示按钮
$('#btnShow').click(function(){
//$('#div1').show();
$('#div1').show(1000); //1000毫秒,表示动画显示过程时间。
});
/