이 스크립트는 직접 설치해서 쓰는 게 아닙니다. 다른 스크립트가 메타 명령 // @require https://greasyfork.org/scripts/456485-pops/code/pops.js?version=1134453
로 포함하여 쓰는 라이브러리입니다.
自定义弹窗
pops.alert /* 普通信息框 */
pops.confirm /* 询问框 */
pops.prompt /* 输入框 */
pops.loading /* 加载层 */
pops.iframe /* iframe层 */
pops.isPhone /* 判断是否是手机访问 */
# 部分使用方法
pops.alert({
closeEnable: false,
mask: true,
only: true,
});
pops.prompt({
position: "center",
closeEnable: true,
mask: true,
only: true,
title: {
text: "prompt",
position: "center",
},
content: {
placeholder: "提示",
text: "自带的内容",
row: false /* 多行 */,
focus: true /* 输入框自动聚焦 */,
},
btn: {
ok: {
callback: (event) => {
console.log(event);
alert("确定");
event.close();
},
},
},
});
pops.loading({
parent: document.body,
only: true,
});
详情参数请看代码