永发信息网

通过层实现 页面部分内容展开与收缩怎么做?

答案:1  悬赏:80  手机版
解决时间 2021-05-05 04:06
  • 提问者网友:凉末
  • 2021-05-04 18:25
RT
最佳答案
  • 五星知识达人网友:平生事
  • 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>

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯