@nine-lab/nine-ux 0.1.60 → 0.1.62
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/dist/nine-ux.es.js +16 -4
- package/dist/nine-ux.es.js.map +1 -1
- package/dist/nine-ux.umd.js +16 -4
- package/dist/nine-ux.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/nine-ux.es.js
CHANGED
|
@@ -382,9 +382,21 @@ dialog.out { pointer-events: none; }
|
|
|
382
382
|
}
|
|
383
383
|
|
|
384
384
|
@keyframes roadRunnerOut {
|
|
385
|
-
0% {
|
|
386
|
-
|
|
387
|
-
|
|
385
|
+
0% {
|
|
386
|
+
transform: translateX(0) scale(1) skewX(0deg);
|
|
387
|
+
opacity: 1;
|
|
388
|
+
}
|
|
389
|
+
30% {
|
|
390
|
+
/* 예비 동작: 뒤로 살짝 갔다가 움츠러들기 */
|
|
391
|
+
transform: translateX(50px) scaleX(1.2) scaleY(0.8) skewX(-20deg);
|
|
392
|
+
opacity: 1;
|
|
393
|
+
}
|
|
394
|
+
100% {
|
|
395
|
+
/* 발사: 길게 늘어나며 광속 탈출 */
|
|
396
|
+
transform: translateX(2000px) scaleX(4) scaleY(0.3) skewX(50deg);
|
|
397
|
+
opacity: 0;
|
|
398
|
+
filter: blur(10px); /* 👈 잔상 느낌 추가 */
|
|
399
|
+
}
|
|
388
400
|
}
|
|
389
401
|
|
|
390
402
|
/* 일반 퇴장 (기본) */
|
|
@@ -14639,7 +14651,7 @@ Lr = function() {
|
|
|
14639
14651
|
const t = Ae.getComponentCssPath("nineEditor.css"), r = t ? `@import "${t}";` : "";
|
|
14640
14652
|
this.shadowRoot.innerHTML = `
|
|
14641
14653
|
<style>
|
|
14642
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-ux@0.1.
|
|
14654
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-ux@0.1.62/dist/css/nineEditor.css";
|
|
14643
14655
|
${r}
|
|
14644
14656
|
</style>
|
|
14645
14657
|
|