-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
modal.html
29 lines (29 loc) · 946 Bytes
/
modal.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://l2dwidget.js.org/lib/L2Dwidget.min.js"></script>
<script type="text/javascript">
L2Dwidget
.init({
model: {
jsonPath: "https://l2d-model.vercel.app/neesan/model.model.json"},
display: {
"position": "right",
"width": 320,
"height": 520,
"hOffset": 4,
"vOffset": 7
},
mobile: {
show: true,
scale: 1
},
dialog: {
enable: true,
script: {
'every idle 10s': '$hitokoto$',
'hover .star': '星星在天上而你在我心里 (*/ω\*)',
'tap body': '哎呀!别碰我!',
'tap face': '人家已经不是小孩子了!'
}
}
});
</script>