欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

jquery实现界面点击按钮弹出悬浮框

时间:2022-09-04 10:41:46|栏目:jquery|点击:

本文实例为大家分享了jquery实现界面点击按钮弹出悬浮框的具体代码,供大家参考,具体内容如下

首先定义两个div:

一个是背景,一个是悬浮窗。

<input id="Button1" type="button" value="点击弹出层"/>       
        <!--弹出层时背景层DIV-->
        <div id="fade" class="black_overlay"></div>
        <!-- 编辑框 可以加自己的样式 -->
        <div id="MyDiv" class="white_content">
            点击阴影处退出!!!
</div>

css样式:

<style>
            .black_overlay {
            display: none;
            position: absolute;
            top: 0%;
            left: 0%;
            width: 100%;
            height: 100%;
            background-color: black;
            z-index: 1001;
            -moz-opacity: 0.8;
            opacity: .80;
            filter: alpha(opacity=80);
        }

        .white_content {
            display: none;
            position: absolute;
            top: 10%;
            left: 10%;
            width: 80%;
            height: 80%;
            border: 16px solid lightblue;
            background-color: white;
            z-index: 1002;
            overflow: auto;
        }

        .white_content_small {
            display: none;
            position: absolute;
            top: 20%;
            left: 30%;
            width: 40%;
            height: 50%;
            border: 16px solid lightblue;
            background-color: white;
            z-index: 1002;
            overflow: auto;
        }
</style>

jquery方法:

<script type="text/javascript">
        $("#Button1").click(function() {
            document.getElementById("MyDiv").style.display = 'block';
            document.getElementById("fade").style.display = 'block';
            var bgdiv = document.getElementById("fade");
            bgdiv.style.width = document.body.scrollWidth;
            $("#fade").height($(document).height());
        });
        //关闭弹出层
        $("#fade").click(function() {
            document.getElementById("MyDiv").style.display = 'none';
            document.getElementById("fade").style.display = 'none';
        });
</script>

效果图:

上一篇:jQuery循环滚动展示代码 可应用到文字和图片上

栏    目:jquery

下一篇:jquery 操作DOM的基本用法分享

本文标题:jquery实现界面点击按钮弹出悬浮框

本文地址:http://www.codeinn.net/misctech/212720.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有