JQuery 遮罩层弹窗

Posted 浆糊033

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery 遮罩层弹窗相关的知识,希望对你有一定的参考价值。

var str = "<div id=\"zhezhao\" style=\"display:none; background-color: rgba(0,0,0,0.3); width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; z-index: 9999;\">";
str += "<div id=\"tanchuang\" style=\"width: 300px; margin: auto; top:-500px; position: relative; background-color: white; box-shadow: 0px 0px 10px black; border-radius: 5px; font-family: 微软雅黑;\">";
str += "<div id=\"tc-title\" style=\"width: 100%; height: 40px; position: relative; text-indent: 15px; line-height: 40px; background-color: #808080;\"></div>";
str += "<div id=\"tc-context\" style=\"width: 100%; height: 30px; position: relative; margin-top: 20px; text-align: center; line-height: 30px; font-size: 1.3em;\"></div>";
str += "<div id=\"tc-btns\" style=\"width: 100%; height: 30px; position: relative; margin-top: 20px;\">";
str += "<div id=\"tc-btn1\" style=\"width: 80px; height: 30px; position: relative; left: 110px; background-color: red; text-align: center; line-height: 30px; color: white; font-size: 1.2em; border-radius: 5px;cursor:pointer;\">确 定</div>";
str += "</div><div style=\"width: 100%; height: 30px; position: relative;\"></div></div></div>";
document.getElementsByTagName("body")[0].innerhtml += str;


function SelfAlert(t, c) {
    $("#tc-title").text(t);
    $("#tc-context").text(c);
    $("#zhezhao").css("display", "block");
    $("#tanchuang").animate({ top: "200px" }, 300).animate({ top: "150px" }, 100).animate({ top: "200px" }, 200);
}

$("#tc-btn1").live("click", function () {
    $("#tanchuang").animate({ top: "250px" }, 200).animate({ top: "-500px" }, 300, function () {
        $("#zhezhao").css("display", "none");
    });
});

$("#tc-btn1").live("mouseover", function () {
    $(this).animate({ backgroundColor: "#890606" }, 300);
});
$("#tc-btn1").live("mouseout", function () {
    $(this).animate({ backgroundColor: "red" }, 300);
});

JS代码

以上是关于JQuery 遮罩层弹窗的主要内容,如果未能解决你的问题,请参考以下文章

element ui 弹出组件的遮罩层以及多层遮罩解决办法

微信小程序 原生开发 实现弹窗遮罩层 并且在遮罩层内使用scroll-view实现滚动内容(包括图片)

微信小程序 原生开发 实现弹窗遮罩层 并且在遮罩层内使用scroll-view实现滚动内容(包括图片)

微信小程序 原生开发 实现弹窗遮罩层 并且在遮罩层内使用scroll-view实现滚动内容(包括图片)

jquery遮罩层遮挡不住图片是怎么回事,弹出层,网页背景透明那块,文字什么的都可以遮住

浏览器遮罩层