dialog-gui

快捷弹窗

Tính đến 11-01-2025. Xem phiên bản mới nhất.

Script này sẽ không được không được cài đặt trực tiếp. Nó là một thư viện cho các script khác để bao gồm các chỉ thị meta // @require https://update.greatest.deepsurf.us/scripts/522780/1518689/dialog-gui.js

Tác giả
twjx
Phiên bản
2.0
Đã tạo
04-01-2025
Đã cập nhật
11-01-2025
Size
5 KB
Giấy phép
N/A

how to use

attribute
= {
type:'single',
title: '', --标题
content: [ --内容
{
type: 'text' / 'img' / 'video' / 'audio' / 'scroller',--自行尝试
returnElement: String / false, -- 指是否返回这个元素 详细请看最下方
src: '', --用于img/video/audio类型
content: { --用于text类型
type: 'p' / 'h1' / ..., --用于text类型
content: '', --text类型输入文本 加入的区域是innerHTML区域,可以填代码 自由度高
scroll_type: 'automatic' / 'none' --用于scroller类型 automatic是自动滚动到最底部
},
style: css-style, --(all) style随意编辑
},
],
attribute: { -- body区域的style 以下可不填,attribute:{}即可代码会使用默认格式
position: '', 自动填写数据:'relative'
width: '', 填数字即可 height一样 '500px'
height: '', '400px'
top: '', '100px'
left: '', '50%'
backgroundColor: '', '#fefefe'
radius: '', '10px'
boxShadow: '', '0 0 5px 5px darkgray'
transform: '', 'translate(-50%, 0%)'
and so on... -- 以上只是默认格式会提供的 可随意添加style属性
},
dark_screen: true / false, -- 是否有黑幕 防止用户点击其他区域
enMove: true / false, --可以被拖动 尚不完善
}

returnElement 用法

var a=dialog.create({
type: "single",
...
content: [
{
type: "scroller",
...
returnElement:'scroll',
},
]
});
console.log(a)
// Object{scroll:div}

onclose

当dialog被关闭时会运行这个函数