show_message

创建一个自定义透明提示框,并支持显示位置、自动关闭时间、透明度、是否显示关闭按钮、背景颜色和文字颜色

Bu script direkt olarak kurulamaz. Başka scriptler için bir kütüphanedir ve meta yönergeleri içerir // @require https://update.greasyfork.org/scripts/505159/1434644/show_message.js

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

Yazar
KangNian
Versiyon
0.1
Oluşturulma
25.08.2024
Güncellenme
25.08.2024
Boyut
7,63 KB
Lisans
N/A

创建一个自定义透明提示框,并支持显示位置、自动关闭时间、透明度、是否显示关闭按钮、背景颜色和文字颜色

// 示例调用

// 使用所有参数的调用方式
show_message({
message: '这是一个完全配置的提示框', // 提示框的内容
type: 'success', // 成功类型提示框
position: 'center', // 屏幕正中显示
opacity: 0.9, // 透明度为 0.9
autoClose: false, // 不自动关闭
});

// 自定义显示颜色
show_message({
message: "这是一个自定义样式的提示框",
type: {
backgroundColor: '#f0e68c', // 浅黄色背景
textColor: '#8b4513' // 深棕色文字
},
position: 'bottom-left', // 在屏幕左下角显示
opacity: 0.8, // 透明度为0.9
autoClose: 7 // 7秒后自动关闭
});

// 使用简单的字符串调用方式(默认配置)
show_message("这是一个信息提示框");

show_message({
message: "这是一条成功消息",
type: 'success',
position: 'bottom-right',
opacity: 0.8,
autoClose: 5 // 5秒后自动关闭
});

show_message({
message: "这是一个警告提示框",
type: 'warning',
position: 'top-left',
opacity: 0.8,
autoClose: 6
});

show_message({
message: "这是一条错误消息",
type: 'error',
position: 'top-right',
opacity: 0.8,
autoClose: 4 // 5秒后自动关闭
});