danoniplus 33.1.4 → 33.2.0
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 +6 -1
- package/js/danoni_main.js +7 -7
- 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 : 2023/08/
|
|
7
|
+
Revised : 2023/08/20 (v33.2.0)
|
|
8
8
|
|
|
9
9
|
https://github.com/cwtickle/danoniplus
|
|
10
10
|
------------------------------------------ */
|
|
@@ -355,6 +355,11 @@ input[type="color"] {
|
|
|
355
355
|
/* スキン定義 ------------------------------------------------------------*/
|
|
356
356
|
|
|
357
357
|
/* 背景 */
|
|
358
|
+
#canvas-frame {
|
|
359
|
+
border-top: 1px solid var(--back-border-x, #666666);
|
|
360
|
+
border-bottom: 1px solid var(--back-border-x, #666666);
|
|
361
|
+
}
|
|
362
|
+
|
|
358
363
|
#divBack {
|
|
359
364
|
background: var(--background, linear-gradient(#000000, #222222));
|
|
360
365
|
}
|
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 : 2023/08/
|
|
7
|
+
* Revised : 2023/08/20
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 33.
|
|
12
|
-
const g_revisedDate = `2023/08/
|
|
11
|
+
const g_version = `Ver 33.2.0`;
|
|
12
|
+
const g_revisedDate = `2023/08/20`;
|
|
13
13
|
|
|
14
14
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
15
15
|
let g_localVersion = ``;
|
|
@@ -8168,10 +8168,10 @@ const pushArrows = (_dataObj, _speedOnFrame, _motionOnFrame, _firstArrivalFrame)
|
|
|
8168
8168
|
_data[startNum][_j].depth === _data[startNum][_k].depth);
|
|
8169
8169
|
|
|
8170
8170
|
const isExceptData = {
|
|
8171
|
-
word: (_exceptList, _j) => listMatching(_data[startNum][_j][1]
|
|
8172
|
-
back: (_exceptList, _j) => listMatching(_data[startNum][_j].animationName
|
|
8173
|
-
mask: (_exceptList, _j) => listMatching(_data[startNum][_j].animationName
|
|
8174
|
-
style: (_exceptList, _j) => listMatching(_data[startNum][_j].depth
|
|
8171
|
+
word: (_exceptList, _j) => listMatching(_data[startNum][_j][1] || ``, _exceptList.word),
|
|
8172
|
+
back: (_exceptList, _j) => listMatching(_data[startNum][_j].animationName || ``, _exceptList.back),
|
|
8173
|
+
mask: (_exceptList, _j) => listMatching(_data[startNum][_j].animationName || ``, _exceptList.mask),
|
|
8174
|
+
style: (_exceptList, _j) => listMatching(_data[startNum][_j].depth || ``, _exceptList.style),
|
|
8175
8175
|
};
|
|
8176
8176
|
|
|
8177
8177
|
const getLength = _list =>
|