gpt4 book ai didi

javascript - 带有模态选项的 jQuery 对话框小部件的背景/覆盖错误

转载 作者:数据小太阳 更新时间:2023-10-29 06:03:09 26 4
gpt4 key购买 nike

我正在使用 jQuery dialog widget在 wordpress 网站上使用 modal 选项。
背景(叠加层)并非全是灰色,背景上有一条白色条纹。

$("#popup").dialog({
dialogClass: "alert",
width: crmpJs.setup.social_popup_custom_content_use ? crmpJs.setup.social_popup_setup_width : 640,
height: crmpJs.setup.social_popup_custom_content_use ? crmpJs.setup.social_popup_setup_height : "auto",
autoOpen: true,
modal: true,
resizable : false,
draggable : false,
zIndex: 10000,
closeOnEscape: crmpJs.setup.social_popup_content_locker_use == "yes" ? false : true
});

enter image description here

知道这个故障的原因吗?

最佳答案

这是您的 CSS。将 repeat-x 更改为只重复:

.ui-widget-overlay {
background: url("../img/overlay-bg.png") repeat-x scroll 50% 50% #000000;
opacity: 0.5;
}

到:

.ui-widget-overlay {
background: url("../img/overlay-bg.png") repeat scroll 50% 50% #000000;
opacity: 0.5;
}

关于javascript - 带有模态选项的 jQuery 对话框小部件的背景/覆盖错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9826728/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com