1.jquery隐藏and显示事件
$("p").hide(); //隐藏事件
$("p").hide(1000); //1秒内缓慢隐藏
$("p").show(); //显示事件
$("p").toggle(); //在隐藏和显示中切换
2.淡入淡出
$("#div1").fadeIn(); //淡入
$("#div2").fadeIn("slow"); //缓慢淡入
$("#div3").fadeIn(3000); //延迟3秒淡入
时间: 2024-12-23 15:45:10