有没有办法使Alertify Js插件的对话框窗口居中? http://alertifyjs.com

我已经看到有一个名为position的属性,但是它不支持中心位置。

谢谢你们。

最佳答案

如果修改css,则可以实现以下目的:

.alertify .ajs-dialog {
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
}

之前:

javascript - Alertify JS中心对话框窗口-LMLPHP

后:

javascript - Alertify JS中心对话框窗口-LMLPHP

关于javascript - Alertify JS中心对话框窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43235631/

10-12 00:05