@shijiu/jsview-vue-samples 2.1.200 → 2.1.340-test.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.
Files changed (59) hide show
  1. package/AnimPicture/App.vue +224 -120
  2. package/AnimPicture/Item.vue +44 -0
  3. package/ConnectLine/App.vue +173 -0
  4. package/CoupletsTest/App.vue +212 -0
  5. package/CoupletsTest/Common/SpriteDeal.js +30 -0
  6. package/CoupletsTest/LeadWire.vue +221 -0
  7. package/CoupletsTest/Maroon.vue +112 -0
  8. package/CoupletsTest/Salvo.vue +251 -0
  9. package/CoupletsTest/Sprite/firecracker.json +212 -0
  10. package/CoupletsTest/Sprite/firecracker.png +0 -0
  11. package/CoupletsTest/Sprite/fireworks.json +220 -0
  12. package/CoupletsTest/Sprite/fireworks.png +0 -0
  13. package/CoupletsTest/Sprite/scroll.json +76 -0
  14. package/CoupletsTest/Sprite/scroll.png +0 -0
  15. package/CoupletsTest/Sprite/spark.json +268 -0
  16. package/CoupletsTest/Sprite/spark.png +0 -0
  17. package/CoupletsTest/images/Couplets.png +0 -0
  18. package/CoupletsTest/images/goldencoin1.png +0 -0
  19. package/CoupletsTest/images/goldencoin2.png +0 -0
  20. package/CoupletsTest/images/leadWire.png +0 -0
  21. package/CoupletsTest/images/line.png +0 -0
  22. package/CoupletsTest/images/purpleStar.png +0 -0
  23. package/CoupletsTest/images/redStar.png +0 -0
  24. package/CoupletsTest/images/scroll1.png +0 -0
  25. package/CoupletsTest/images/star1.png +0 -0
  26. package/CoupletsTest/images/star2.png +0 -0
  27. package/CoupletsTest/images/star3.png +0 -0
  28. package/CoupletsTest/images/star4.png +0 -0
  29. package/CoupletsTest/images/yellowStar.png +0 -0
  30. package/DemoHomepage/components/BodyFrame.vue +27 -11
  31. package/DemoHomepage/router.js +35 -5
  32. package/DemoHomepage/views/Homepage.vue +1 -1
  33. package/DispersedItemSample/DispersedItemSample.vue +138 -0
  34. package/DispersedItemSample/DispersedItemWidget/DispersedItemWidget.vue +358 -0
  35. package/DispersedItemSample/DispersedItemWidget/MyRenderItem.ts +115 -0
  36. package/DispersedItemSample/Item.vue +55 -0
  37. package/FilterDemo/AnimatePic.vue +5 -6
  38. package/FocusMoveStyle/App.vue +126 -110
  39. package/FocusMoveStyle/CreepFocus.vue +128 -0
  40. package/FocusMoveStyle/FoldableItem.vue +279 -0
  41. package/FocusMoveStyle/Item.vue +32 -31
  42. package/FreeMove/App.vue +2 -2
  43. package/ImpactStop/App.vue +343 -384
  44. package/LatexDemo/App.vue +11 -0
  45. package/MetroWidgetDemos/RefreshDemo/App.vue +101 -0
  46. package/MetroWidgetDemos/RefreshDemo/Item.vue +116 -0
  47. package/MetroWidgetDemos/RefreshDemo/assets/imageList.json +237 -0
  48. package/MetroWidgetDemos/RefreshDemo/data.js +16 -0
  49. package/MetroWidgetDemos/TripleWidget/App.vue +81 -0
  50. package/MetroWidgetDemos/TripleWidget/Item.vue +64 -0
  51. package/MetroWidgetDemos/TripleWidget/SWidgetItem.vue +93 -0
  52. package/MetroWidgetDemos/TripleWidget/WidgetItem.vue +111 -0
  53. package/MetroWidgetDemos/routeList.js +12 -0
  54. package/ProgressBar/App.vue +128 -0
  55. package/QrcodeDemo/App.vue +2 -2
  56. package/SpriteImage/App.vue +113 -68
  57. package/SwiperTest/App.vue +105 -0
  58. package/ViewOpacity/App.vue +98 -0
  59. package/package.json +1 -1
@@ -0,0 +1,251 @@
1
+ <template>
2
+ <div
3
+ :style="{
4
+ top: 500,
5
+ left: 200,
6
+ transform: `scale3d(${80 / view_size.w},${160 / view_size.h},1)`,
7
+ }"
8
+ >
9
+ <JsvSpriteAnim
10
+ :spriteInfo="sprite_info.info"
11
+ :loop="1"
12
+ autostart="true"
13
+ :duration="1"
14
+ :imageUrl="fireworksPng"
15
+ >
16
+ </JsvSpriteAnim>
17
+ </div>
18
+ <!-- FreeMove -->
19
+ <jsv-free-move-actor
20
+ v-if="isShow"
21
+ :top="508 + 100"
22
+ :left="236"
23
+ ref="actorRef"
24
+ :width="10"
25
+ :height="10"
26
+ >
27
+ <div
28
+ :style="{
29
+ width: 8,
30
+ height: 8,
31
+ borderRadius: 4,
32
+ backgroundColor: '#FF1213',
33
+ }"
34
+ ></div>
35
+ </jsv-free-move-actor>
36
+ <!-- 粒子效果 -->
37
+ <div
38
+ v-if="isSpray"
39
+ :style="{
40
+ top: 188,
41
+ left: 220,
42
+ width: 50,
43
+ height: 50,
44
+ }"
45
+ >
46
+ <jsv-spray
47
+ v-for="item in ImgData"
48
+ :pointRes="`url(${item})`"
49
+ :sprayStyle="sprayOk"
50
+ :ignoreClip="true"
51
+ />
52
+ </div>
53
+ <div
54
+ v-if="isSpray2"
55
+ :style="{
56
+ top: 188,
57
+ left: 220,
58
+ width: 50,
59
+ height: 50,
60
+ }"
61
+ >
62
+ <jsv-spray
63
+ v-for="item in ImgData"
64
+ :pointRes="`url(${item})`"
65
+ :sprayStyle="sprayOk"
66
+ :ignoreClip="true"
67
+ />
68
+ </div>
69
+ <!-- 素材1 精灵图-->
70
+ <div
71
+ :style="{
72
+ top: 100,
73
+ left: 600,
74
+ width: 210,
75
+ height: 120,
76
+ backgroundImage: fireworksPng,
77
+ }"
78
+ ></div>
79
+ <!-- 素材2 金币图1 -->
80
+ <div
81
+ :style="{
82
+ top: 340,
83
+ left: 670,
84
+ width: 50,
85
+ height: 50,
86
+ backgroundImage: GoldenCoin1,
87
+ }"
88
+ ></div>
89
+ <!-- 素材3 金币图2 -->
90
+ <div
91
+ :style="{
92
+ top: 550,
93
+ left: 670,
94
+ width: 50,
95
+ height: 50,
96
+ backgroundImage: GoldenCoin2,
97
+ }"
98
+ ></div>
99
+ <!-- 素材4 星星1 -->
100
+ <div
101
+ :style="{
102
+ top: 100,
103
+ left: 980,
104
+ width: 50,
105
+ height: 50,
106
+ backgroundImage: star1,
107
+ }"
108
+ ></div>
109
+ <!-- 素材5 星星2 -->
110
+ <div
111
+ :style="{
112
+ top: 260,
113
+ left: 980,
114
+ width: 50,
115
+ height: 50,
116
+ backgroundImage: star2,
117
+ }"
118
+ ></div>
119
+ <!-- 素材6 星星3 -->
120
+ <div
121
+ :style="{
122
+ top: 420,
123
+ left: 980,
124
+ width: 50,
125
+ height: 50,
126
+ backgroundImage: star3,
127
+ }"
128
+ ></div>
129
+ <!-- 素材7 星星4 -->
130
+ <div
131
+ :style="{
132
+ top: 580,
133
+ left: 980,
134
+ width: 50,
135
+ height: 50,
136
+ backgroundImage: star4,
137
+ }"
138
+ ></div>
139
+ <!-- 文字说明 -->
140
+ <div class="text" :style="{ top: 40, left: 600, width: 210, height: 100 }">
141
+ {{ "素材1" }}
142
+ </div>
143
+ <div class="text" :style="{ top: 240, left: 600, width: 210, height: 100 }">
144
+ {{ "素材2" }}
145
+ </div>
146
+ <div class="text" :style="{ top: 460, left: 600, width: 210, height: 100 }">
147
+ {{ "素材3" }}
148
+ </div>
149
+ <div class="text" :style="{ top: 40, left: 900, width: 210, height: 100 }">
150
+ {{ "素材4" }}
151
+ </div>
152
+ <div class="text" :style="{ top: 200, left: 900, width: 210, height: 100 }">
153
+ {{ "素材5" }}
154
+ </div>
155
+ <div class="text" :style="{ top: 360, left: 900, width: 210, height: 100 }">
156
+ {{ "素材6" }}
157
+ </div>
158
+ <div class="text" :style="{ top: 520, left: 900, width: 210, height: 100 }">
159
+ {{ "素材7" }}
160
+ </div>
161
+ </template>
162
+
163
+ <script setup>
164
+ import {
165
+ JsvFreeMoveActor,
166
+ JsvSpriteAnim,
167
+ JsvSpray,
168
+ } from "jsview";
169
+ import fireworksPng from "./Sprite/fireworks.png";
170
+ import fireworksJson from "./Sprite/fireworks.json";
171
+ import { _formatInfo } from "./Common/SpriteDeal";
172
+ import GoldenCoin1 from "./images/goldencoin1.png";
173
+ import GoldenCoin2 from "./images/goldencoin2.png";
174
+ import star1 from "./images/star1.png";
175
+ import star2 from "./images/star2.png";
176
+ import star3 from "./images/star3.png";
177
+ import star4 from "./images/star4.png";
178
+ import { shallowRef, onMounted, onBeforeUnmount } from "vue";
179
+ let sprite_info = shallowRef(_formatInfo(fireworksJson));
180
+ const view_size = {
181
+ w: sprite_info.value.maxW,
182
+ h: sprite_info.value.maxH,
183
+ };
184
+ let isSpray = shallowRef(false);
185
+ let isSpray2 = shallowRef(false);
186
+ let isShow = shallowRef(true);
187
+ let actorRef = shallowRef(null);
188
+
189
+ let actorControl;
190
+ //定时器
191
+ let timer = { id: -1 };
192
+ const ImgData = [GoldenCoin1, GoldenCoin2, star1, star2, star3, star4];
193
+ // 建议:做粒子效果的图的像素尽量不超过 40 * 40
194
+ const sprayOk = {
195
+ type: 0,
196
+ particleNum: 60,
197
+ deltaAngle: 360,
198
+ deltaWidth: 20,
199
+ deltaHeight: 20,
200
+ pointSizeMin: 30,
201
+ pointSizeMax: 50,
202
+ speedMin: 1,
203
+ speedMax: 7,
204
+ lifeMin: 1000,
205
+ lifeMax: 2000,
206
+ accelerateX: 0,
207
+ accelerateY: 0,
208
+ addNumSpeed: 0.001,
209
+ enableFade: true,
210
+ enableShrink: true,
211
+ };
212
+ onMounted(() => {
213
+ actorControl = actorRef.value.control;
214
+ actorControl.run([
215
+ actorControl
216
+ .condition()
217
+ .onNextTick(2)
218
+ .then([
219
+ actorControl.action().setSpeed(undefined, -12),
220
+ actorControl.action(3).setAccel(undefined, 0.13),
221
+ ]),
222
+ actorControl
223
+ .condition()
224
+ .reachPosition(undefined, -400)
225
+ .then([
226
+ actorControl.action().stopMoving(),
227
+ () => {
228
+ isSpray.value = true;
229
+ isShow.value = false;
230
+ timer.id = setTimeout(() => {
231
+ isSpray2.value = true;
232
+ }, 400);
233
+ },
234
+ ]),
235
+ ]);
236
+ });
237
+ onBeforeUnmount(() => {
238
+ clearTimeout(timer.id);
239
+ timer.id = -1;
240
+ });
241
+ </script>
242
+
243
+ <style scoped>
244
+ .text {
245
+ font-size: 24;
246
+ color: #ffffff;
247
+ font-weight: bold;
248
+ text-align: center;
249
+ line-height: 32;
250
+ }
251
+ </style>
@@ -0,0 +1,212 @@
1
+ {"frames": [
2
+
3
+ {
4
+ "filename": "爆竹000.png",
5
+ "frame": {"x":0,"y":0,"w":188,"h":400},
6
+ "rotated": false,
7
+ "trimmed": false,
8
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
9
+ "sourceSize": {"w":188,"h":400}
10
+ },
11
+ {
12
+ "filename": "爆竹001.png",
13
+ "frame": {"x":188,"y":0,"w":188,"h":400},
14
+ "rotated": false,
15
+ "trimmed": false,
16
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
17
+ "sourceSize": {"w":188,"h":400}
18
+ },
19
+ {
20
+ "filename": "爆竹002.png",
21
+ "frame": {"x":376,"y":0,"w":188,"h":400},
22
+ "rotated": false,
23
+ "trimmed": false,
24
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
25
+ "sourceSize": {"w":188,"h":400}
26
+ },
27
+ {
28
+ "filename": "爆竹003.png",
29
+ "frame": {"x":564,"y":0,"w":188,"h":400},
30
+ "rotated": false,
31
+ "trimmed": false,
32
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
33
+ "sourceSize": {"w":188,"h":400}
34
+ },
35
+ {
36
+ "filename": "爆竹004.png",
37
+ "frame": {"x":752,"y":0,"w":188,"h":400},
38
+ "rotated": false,
39
+ "trimmed": false,
40
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
41
+ "sourceSize": {"w":188,"h":400}
42
+ },
43
+ {
44
+ "filename": "爆竹005.png",
45
+ "frame": {"x":940,"y":0,"w":188,"h":400},
46
+ "rotated": false,
47
+ "trimmed": false,
48
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
49
+ "sourceSize": {"w":188,"h":400}
50
+ },
51
+ {
52
+ "filename": "爆竹006.png",
53
+ "frame": {"x":1128,"y":0,"w":188,"h":400},
54
+ "rotated": false,
55
+ "trimmed": false,
56
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
57
+ "sourceSize": {"w":188,"h":400}
58
+ },
59
+ {
60
+ "filename": "爆竹007.png",
61
+ "frame": {"x":1316,"y":0,"w":188,"h":400},
62
+ "rotated": false,
63
+ "trimmed": false,
64
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
65
+ "sourceSize": {"w":188,"h":400}
66
+ },
67
+ {
68
+ "filename": "爆竹008.png",
69
+ "frame": {"x":1504,"y":0,"w":188,"h":400},
70
+ "rotated": false,
71
+ "trimmed": false,
72
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
73
+ "sourceSize": {"w":188,"h":400}
74
+ },
75
+ {
76
+ "filename": "爆竹009.png",
77
+ "frame": {"x":1692,"y":0,"w":188,"h":400},
78
+ "rotated": false,
79
+ "trimmed": false,
80
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
81
+ "sourceSize": {"w":188,"h":400}
82
+ },
83
+ {
84
+ "filename": "爆竹010.png",
85
+ "frame": {"x":1880,"y":0,"w":188,"h":400},
86
+ "rotated": false,
87
+ "trimmed": false,
88
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
89
+ "sourceSize": {"w":188,"h":400}
90
+ },
91
+ {
92
+ "filename": "爆竹011.png",
93
+ "frame": {"x":2068,"y":0,"w":188,"h":400},
94
+ "rotated": false,
95
+ "trimmed": false,
96
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
97
+ "sourceSize": {"w":188,"h":400}
98
+ },
99
+ {
100
+ "filename": "爆竹012.png",
101
+ "frame": {"x":2256,"y":0,"w":188,"h":400},
102
+ "rotated": false,
103
+ "trimmed": false,
104
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
105
+ "sourceSize": {"w":188,"h":400}
106
+ },
107
+ {
108
+ "filename": "爆竹013.png",
109
+ "frame": {"x":0,"y":400,"w":188,"h":400},
110
+ "rotated": false,
111
+ "trimmed": false,
112
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
113
+ "sourceSize": {"w":188,"h":400}
114
+ },
115
+ {
116
+ "filename": "爆竹014.png",
117
+ "frame": {"x":188,"y":400,"w":188,"h":400},
118
+ "rotated": false,
119
+ "trimmed": false,
120
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
121
+ "sourceSize": {"w":188,"h":400}
122
+ },
123
+ {
124
+ "filename": "爆竹015.png",
125
+ "frame": {"x":376,"y":400,"w":188,"h":400},
126
+ "rotated": false,
127
+ "trimmed": false,
128
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
129
+ "sourceSize": {"w":188,"h":400}
130
+ },
131
+ {
132
+ "filename": "爆竹016.png",
133
+ "frame": {"x":564,"y":400,"w":188,"h":400},
134
+ "rotated": false,
135
+ "trimmed": false,
136
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
137
+ "sourceSize": {"w":188,"h":400}
138
+ },
139
+ {
140
+ "filename": "爆竹017.png",
141
+ "frame": {"x":752,"y":400,"w":188,"h":400},
142
+ "rotated": false,
143
+ "trimmed": false,
144
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
145
+ "sourceSize": {"w":188,"h":400}
146
+ },
147
+ {
148
+ "filename": "爆竹018.png",
149
+ "frame": {"x":940,"y":400,"w":188,"h":400},
150
+ "rotated": false,
151
+ "trimmed": false,
152
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
153
+ "sourceSize": {"w":188,"h":400}
154
+ },
155
+ {
156
+ "filename": "爆竹019.png",
157
+ "frame": {"x":1128,"y":400,"w":188,"h":400},
158
+ "rotated": false,
159
+ "trimmed": false,
160
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
161
+ "sourceSize": {"w":188,"h":400}
162
+ },
163
+ {
164
+ "filename": "爆竹020.png",
165
+ "frame": {"x":1316,"y":400,"w":188,"h":400},
166
+ "rotated": false,
167
+ "trimmed": false,
168
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
169
+ "sourceSize": {"w":188,"h":400}
170
+ },
171
+ {
172
+ "filename": "爆竹021.png",
173
+ "frame": {"x":1504,"y":400,"w":188,"h":400},
174
+ "rotated": false,
175
+ "trimmed": false,
176
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
177
+ "sourceSize": {"w":188,"h":400}
178
+ },
179
+ {
180
+ "filename": "爆竹022.png",
181
+ "frame": {"x":1692,"y":400,"w":188,"h":400},
182
+ "rotated": false,
183
+ "trimmed": false,
184
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
185
+ "sourceSize": {"w":188,"h":400}
186
+ },
187
+ {
188
+ "filename": "爆竹023.png",
189
+ "frame": {"x":1880,"y":400,"w":188,"h":400},
190
+ "rotated": false,
191
+ "trimmed": false,
192
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
193
+ "sourceSize": {"w":188,"h":400}
194
+ },
195
+ {
196
+ "filename": "爆竹024.png",
197
+ "frame": {"x":2068,"y":400,"w":188,"h":400},
198
+ "rotated": false,
199
+ "trimmed": false,
200
+ "spriteSourceSize": {"x":0,"y":0,"w":188,"h":400},
201
+ "sourceSize": {"w":188,"h":400}
202
+ }],
203
+ "meta": {
204
+ "app": "https://www.codeandweb.com/texturepacker",
205
+ "version": "1.0",
206
+ "image": "爆竹1.png",
207
+ "format": "RGBA8888",
208
+ "size": {"w":2444,"h":800},
209
+ "scale": "1",
210
+ "smartupdate": "$TexturePacker:SmartUpdate:4653c3180ae1dfd88e2cdad4a90a475f:4528ea7e82284125b8973036a69273f2:a1db6f7b64874b6c5df40cc799d39b99$"
211
+ }
212
+ }
@@ -0,0 +1,220 @@
1
+ {"frames": [
2
+
3
+ {
4
+ "filename": "烟花000.png",
5
+ "frame": {"x":0,"y":0,"w":167,"h":335},
6
+ "rotated": false,
7
+ "trimmed": false,
8
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
9
+ "sourceSize": {"w":167,"h":335}
10
+ },
11
+ {
12
+ "filename": "烟花001.png",
13
+ "frame": {"x":167,"y":0,"w":167,"h":335},
14
+ "rotated": false,
15
+ "trimmed": false,
16
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
17
+ "sourceSize": {"w":167,"h":335}
18
+ },
19
+ {
20
+ "filename": "烟花002.png",
21
+ "frame": {"x":334,"y":0,"w":167,"h":335},
22
+ "rotated": false,
23
+ "trimmed": false,
24
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
25
+ "sourceSize": {"w":167,"h":335}
26
+ },
27
+ {
28
+ "filename": "烟花003.png",
29
+ "frame": {"x":501,"y":0,"w":167,"h":335},
30
+ "rotated": false,
31
+ "trimmed": false,
32
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
33
+ "sourceSize": {"w":167,"h":335}
34
+ },
35
+ {
36
+ "filename": "烟花004.png",
37
+ "frame": {"x":668,"y":0,"w":167,"h":335},
38
+ "rotated": false,
39
+ "trimmed": false,
40
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
41
+ "sourceSize": {"w":167,"h":335}
42
+ },
43
+ {
44
+ "filename": "烟花005.png",
45
+ "frame": {"x":835,"y":0,"w":167,"h":335},
46
+ "rotated": false,
47
+ "trimmed": false,
48
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
49
+ "sourceSize": {"w":167,"h":335}
50
+ },
51
+ {
52
+ "filename": "烟花006.png",
53
+ "frame": {"x":1002,"y":0,"w":167,"h":335},
54
+ "rotated": false,
55
+ "trimmed": false,
56
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
57
+ "sourceSize": {"w":167,"h":335}
58
+ },
59
+ {
60
+ "filename": "烟花007.png",
61
+ "frame": {"x":1169,"y":0,"w":167,"h":335},
62
+ "rotated": false,
63
+ "trimmed": false,
64
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
65
+ "sourceSize": {"w":167,"h":335}
66
+ },
67
+ {
68
+ "filename": "烟花008.png",
69
+ "frame": {"x":1336,"y":0,"w":167,"h":335},
70
+ "rotated": false,
71
+ "trimmed": false,
72
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
73
+ "sourceSize": {"w":167,"h":335}
74
+ },
75
+ {
76
+ "filename": "烟花009.png",
77
+ "frame": {"x":0,"y":335,"w":167,"h":335},
78
+ "rotated": false,
79
+ "trimmed": false,
80
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
81
+ "sourceSize": {"w":167,"h":335}
82
+ },
83
+ {
84
+ "filename": "烟花010.png",
85
+ "frame": {"x":167,"y":335,"w":167,"h":335},
86
+ "rotated": false,
87
+ "trimmed": false,
88
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
89
+ "sourceSize": {"w":167,"h":335}
90
+ },
91
+ {
92
+ "filename": "烟花011.png",
93
+ "frame": {"x":334,"y":335,"w":167,"h":335},
94
+ "rotated": false,
95
+ "trimmed": false,
96
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
97
+ "sourceSize": {"w":167,"h":335}
98
+ },
99
+ {
100
+ "filename": "烟花012.png",
101
+ "frame": {"x":501,"y":335,"w":167,"h":335},
102
+ "rotated": false,
103
+ "trimmed": false,
104
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
105
+ "sourceSize": {"w":167,"h":335}
106
+ },
107
+ {
108
+ "filename": "烟花013.png",
109
+ "frame": {"x":668,"y":335,"w":167,"h":335},
110
+ "rotated": false,
111
+ "trimmed": false,
112
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
113
+ "sourceSize": {"w":167,"h":335}
114
+ },
115
+ {
116
+ "filename": "烟花014.png",
117
+ "frame": {"x":835,"y":335,"w":167,"h":335},
118
+ "rotated": false,
119
+ "trimmed": false,
120
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
121
+ "sourceSize": {"w":167,"h":335}
122
+ },
123
+ {
124
+ "filename": "烟花015.png",
125
+ "frame": {"x":1002,"y":335,"w":167,"h":335},
126
+ "rotated": false,
127
+ "trimmed": false,
128
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
129
+ "sourceSize": {"w":167,"h":335}
130
+ },
131
+ {
132
+ "filename": "烟花016.png",
133
+ "frame": {"x":1169,"y":335,"w":167,"h":335},
134
+ "rotated": false,
135
+ "trimmed": false,
136
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
137
+ "sourceSize": {"w":167,"h":335}
138
+ },
139
+ {
140
+ "filename": "烟花017.png",
141
+ "frame": {"x":1336,"y":335,"w":167,"h":335},
142
+ "rotated": false,
143
+ "trimmed": false,
144
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
145
+ "sourceSize": {"w":167,"h":335}
146
+ },
147
+ {
148
+ "filename": "烟花018.png",
149
+ "frame": {"x":0,"y":670,"w":167,"h":335},
150
+ "rotated": false,
151
+ "trimmed": false,
152
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
153
+ "sourceSize": {"w":167,"h":335}
154
+ },
155
+ {
156
+ "filename": "烟花019.png",
157
+ "frame": {"x":167,"y":670,"w":167,"h":335},
158
+ "rotated": false,
159
+ "trimmed": false,
160
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
161
+ "sourceSize": {"w":167,"h":335}
162
+ },
163
+ {
164
+ "filename": "烟花020.png",
165
+ "frame": {"x":334,"y":670,"w":167,"h":335},
166
+ "rotated": false,
167
+ "trimmed": false,
168
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
169
+ "sourceSize": {"w":167,"h":335}
170
+ },
171
+ {
172
+ "filename": "烟花021.png",
173
+ "frame": {"x":501,"y":670,"w":167,"h":335},
174
+ "rotated": false,
175
+ "trimmed": false,
176
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
177
+ "sourceSize": {"w":167,"h":335}
178
+ },
179
+ {
180
+ "filename": "烟花022.png",
181
+ "frame": {"x":668,"y":670,"w":167,"h":335},
182
+ "rotated": false,
183
+ "trimmed": false,
184
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
185
+ "sourceSize": {"w":167,"h":335}
186
+ },
187
+ {
188
+ "filename": "烟花023.png",
189
+ "frame": {"x":835,"y":670,"w":167,"h":335},
190
+ "rotated": false,
191
+ "trimmed": false,
192
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
193
+ "sourceSize": {"w":167,"h":335}
194
+ },
195
+ {
196
+ "filename": "烟花024.png",
197
+ "frame": {"x":1002,"y":670,"w":167,"h":335},
198
+ "rotated": false,
199
+ "trimmed": false,
200
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
201
+ "sourceSize": {"w":167,"h":335}
202
+ },
203
+ {
204
+ "filename": "烟花025.png",
205
+ "frame": {"x":1169,"y":670,"w":167,"h":335},
206
+ "rotated": false,
207
+ "trimmed": false,
208
+ "spriteSourceSize": {"x":0,"y":0,"w":167,"h":335},
209
+ "sourceSize": {"w":167,"h":335}
210
+ }],
211
+ "meta": {
212
+ "app": "https://www.codeandweb.com/texturepacker",
213
+ "version": "1.0",
214
+ "image": "烟花1.png",
215
+ "format": "RGBA8888",
216
+ "size": {"w":1503,"h":1005},
217
+ "scale": "1",
218
+ "smartupdate": "$TexturePacker:SmartUpdate:ab4059baa1390f7f5674ee9b2d6c6e5c:37f1b138367ce6c6c2fac6c308dd40e5:056a74f1740b57b1437fc76fdd6a9c2d$"
219
+ }
220
+ }