通过层实现 页面部分内容展开与收缩怎么做?
- 提问者网友:凉末
- 2021-05-04 18:25
- 五星知识达人网友:平生事
- 2021-05-04 18:36
设置要隐藏的DIV的ID
通过JS写一个函数,对div进行隐藏....就可以了....记得CSS的width属性要用百分比.如果使用jquery可以更加美观,并且带有动画效果...
以下是我用jquery写的一个弹出层效果...你可以参考以下....
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<title>jQuery - Start Animation</title>
<script type="text/javascript" src="jquery/jquery-1.3.2-vsdoc2.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
//动画速度
var speed = 1000;
//绑定事件处理
$("#btnShow").click(function(event)
{
//取消事件冒泡
event.stopPropagation();
//设置弹出层位置
var offset = $(event.target).offset();
$("#divPop").css({top: offset.top + $(event.target).height() + "px",width: offset.left-8+"px"});
//动画显示
$("#divPop").slideDown(speed);
});
//单击空白区域隐藏弹出层
//$(document).click(function(event) { $("#divPop").slideUp(speed) });
//单击弹出层则自身隐藏
$("#btnClose").click(function(event) { $("#divPop").slideUp(speed) });
});
</script>
</head>
<body style="text-align:center">
<div style="background-color:#CBE1FB; width:200px;position: absolute; left:400px;">
<button id="btnShow">显示提示文字</button>
</div>
<p>
13213232132
</p>
<!-- 弹出层 -->
<div id="divPop" style="background-color: #F0EFE7;border: solid 1px #000000; position: absolute; display:none;
width: 300px; height: 100px;">
<div style="text-align: center;z-size:99">
<input type="button" id="btnAdd" value="保存" />
<input type="button" id="btnClose" value="关闭" />
</div>
</div>
</body>
</html>