danoniplus 37.2.0 → 37.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/danoni_main.css +2 -1
- package/js/danoni_main.js +7 -3
- package/package.json +1 -1
package/css/danoni_main.css
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
本体cssファイル
|
|
5
5
|
|
|
6
6
|
Created : 2018/10/08
|
|
7
|
-
Revised : 2024/
|
|
7
|
+
Revised : 2024/06/30 (v37.2.1)
|
|
8
8
|
|
|
9
9
|
https://github.com/cwtickle/danoniplus
|
|
10
10
|
------------------------------------------ */
|
|
@@ -869,5 +869,6 @@ input[type="color"] {
|
|
|
869
869
|
.result_Cleared,
|
|
870
870
|
.result_Failed {
|
|
871
871
|
background-clip: text;
|
|
872
|
+
-webkit-background-clip: text;
|
|
872
873
|
color: rgba(255, 255, 255, 0.0);
|
|
873
874
|
}
|
package/js/danoni_main.js
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
*
|
|
5
5
|
* Source by tickle
|
|
6
6
|
* Created : 2018/10/08
|
|
7
|
-
* Revised : 2024/06/
|
|
7
|
+
* Revised : 2024/06/30
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 37.2.
|
|
12
|
-
const g_revisedDate = `2024/06/
|
|
11
|
+
const g_version = `Ver 37.2.1`;
|
|
12
|
+
const g_revisedDate = `2024/06/30`;
|
|
13
13
|
|
|
14
14
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
15
15
|
let g_localVersion = ``;
|
|
@@ -1147,6 +1147,8 @@ const createColorObject2 = (_id,
|
|
|
1147
1147
|
|
|
1148
1148
|
style.maskImage = `url("${g_imgObj[charaStyle]}")`;
|
|
1149
1149
|
style.maskSize = `contain`;
|
|
1150
|
+
style.webkitMaskImage = `url("${g_imgObj[charaStyle]}")`;
|
|
1151
|
+
style.webkitMaskSize = `contain`;
|
|
1150
1152
|
Object.keys(rest).forEach(property => style[property] = rest[property]);
|
|
1151
1153
|
setAttrs(div, { color: rest.background ?? ``, type: charaStyle, cnt: 0, });
|
|
1152
1154
|
|
|
@@ -4163,6 +4165,7 @@ const titleInit = _ => {
|
|
|
4163
4165
|
font-family:${g_headerObj.titlefonts[0]};
|
|
4164
4166
|
background: ${titlegrds[0]};
|
|
4165
4167
|
background-clip: text;
|
|
4168
|
+
-webkit-background-clip: text;
|
|
4166
4169
|
color: rgba(255,255,255,0.0);
|
|
4167
4170
|
${txtAnimations[0]}
|
|
4168
4171
|
" class="${g_headerObj.titleAnimationClass[0]}">
|
|
@@ -4175,6 +4178,7 @@ const titleInit = _ => {
|
|
|
4175
4178
|
font-family:${g_headerObj.titlefonts[1]};
|
|
4176
4179
|
background: ${titlegrds[1]};
|
|
4177
4180
|
background-clip: text;
|
|
4181
|
+
-webkit-background-clip: text;
|
|
4178
4182
|
color: rgba(255,255,255,0.0);
|
|
4179
4183
|
${txtAnimations[1]}
|
|
4180
4184
|
" class="${g_headerObj.titleAnimationClass[1]}">
|