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.
@@ -4,7 +4,7 @@
4
4
  本体cssファイル
5
5
 
6
6
  Created : 2018/10/08
7
- Revised : 2024/05/18 (v36.4.1)
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/29
7
+ * Revised : 2024/06/30
8
8
  *
9
9
  * https://github.com/cwtickle/danoniplus
10
10
  */
11
- const g_version = `Ver 37.2.0`;
12
- const g_revisedDate = `2024/06/29`;
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]}">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "37.2.0",
3
+ "version": "37.2.1",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "index.js",
6
6
  "scripts": {