jq 自制弹窗 弹窗相对于屏幕永远居中

实现效果

image.png

html部分

 <!-- 点击关闭按钮触发显示 -->
            <div class="closehit-box">
                <div style="position: relative;">
                    <div class="closehit-tit">提示</div>
                    <div class="closehit-textpartbox">
                        <h3 class="closehit-textpartbox-txt">确认关闭订单吗?</h3>
                    </div>
                    <div class="closehit-entbut"><span id="closeTheWindow">关闭</span><span class="unhide">取消</span></div>
                </div>
            </div>

jq 部分

$(function() {
                    // 点击关闭订单显示弹窗
                    $("a#shotorde").click(function() {
                        $(".closehit-box").show();
       
                    });
                    //点击确认按钮隐藏弹窗
                    $("span#closeTheWindow").click(function() {
                        $(".closehit-box").hide();
                    //在这里可进行其他操作者
                    });
                    //点击取消按钮隐藏弹窗
                    $("span.unhide").click(function() {
                        $(".closehit-box").hide();
                   //在这里可进行其他操作者
                    });
                });

样式部分

/* 提示框样式 */

.closehit-box {
    width: 400px;
    border: 1px solid #E5E5E5;
    z-index: 19991015;
    width: 420px;
    height: 240px;
    top: 113.5px;
    position: fixed;
    left: 50%;
    top: 50%;
    left: 735.5px;
    background: white;
    border-radius: 10px;
    display: none;
}

.closehit-tit {
    height: 40px;
    line-height: 41px;
    border-bottom: 1px solid #E5E5E5;
    padding-left: 30px;
}

.closehit-textpartbox {
    height: 144px;
}

.closehit-textpartbox-txt {
    height: 50px;
    line-height: 50px;
    font-size: 26px;
    text-align: center;
    padding-top: 48px;
}

.closehit-entbut {
    width: 160px;
    display: flex;
    justify-content: space-around;
    position: relative;
    right: -240px;
    top: 0;
}

.closehit-entbut span {
    display: inline-block;
    width: 60px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

#closeTheWindow {
    background: #4FA2F7;
    color: white;
    border-radius: 4px;
}

.unhide {
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    height: 30px;
    line-height: 30px;
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值