-
Notifications
You must be signed in to change notification settings - Fork 0
/
ep2.html
executable file
·369 lines (272 loc) · 13 KB
/
ep2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
<!DOCTYPE html>
<!-- saved from url=(0071)http://imas.gree-apps.net/app/index.php/voice_drama/play/id/410002/to/1 -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, shrink-to-fit=no">
<title>アイドルマスター ミリオンライブ!</title>
<style type="text/css">
*{ -webkit-tap-highlight-color: rgba(0,0,0,0) !important; }
body { margin: 0; padding: 0;}
</style>
<link rel="stylesheet" href="./ep2_files/2a496d537c616659bdb2da9cf6b7646ae1758f68b8d92b163c3550a6713789b1" media="screen">
<link rel="stylesheet" href="./ep2_files/67746bc05cb56b6364bc53cea16f81d2a6cb466e55a60cef62a4e2c1c6f6f221" media="screen">
<link rel="apple-touch-icon-precomposed" href="http://cdn.bn765.com/66b/764e6fa42f542a827f9906f3368544af8b0240ab87555553935418bdab94dc5c?ccea7c4d7810724ac3b608ccab5e6802">
<link rel="shortcut icon" href="http://cdn.bn765.com/a2c/aa5c89f6a409ee3fea6affbdb9218df15c783ce9fa6e3da6ccdcf78f578a0380?3ab584d93f830b73b66f97dd28ba426a">
</head>
<body style="background-color:#000">
<div id="gree-app-container">
<div id="flash-container">
<canvas id="canvas" height="832" style="background-color: rgb(0, 0, 0); margin: auto; zoom: 0.5;" width="640"></canvas>
</div>
<div id="main-container" style="display: none">
<div id="wrapper"></div>
</div>
<script type="text/javascript" async="" src="./ep2_files/ga.js.다운로드"></script><script src="./ep2_files/jquery.min.js.다운로드"></script>
<script src="./ep2_files/598e56bff714e205e4e65d7be1aad3e5e545efb8efc60168d7f2b95e01177b38"></script>
<script src="./ep2_files/9b4a0f4bd45014501b6fd3b1d5a01215"></script>
<script src="./ep2_files/911b0eb67e33e6a0174b1f9a6a6956b0"></script>
<script>
var imas = imas || {};
imas.g_voice = null;
imas.g_sound_play_img = "http://cdn.bn765.com/3cb/2a508eecead41624b69b863e9ac2709a2bb6892a979ffd542814544dbbdec808?b89a6f7c8588835e39e4deb8d3b10e32";
imas.g_sound_stop_img = "http://cdn.bn765.com/475/61575b3542de59cfffc38df1c02bfbd555088474be267ac510a1f853f36522f0?c0353191c612375461c1bf902f88e8e3";
imas.SendLog = function(path) {
if (path) {
$.post(
'http://imas.gree-apps.net/app/index.php/voice/req',
{
'url': 'voice_drama/play',
'path': path
}
);
}
};
imas.PlaySoundByPath = function( path, callback ) {
if (imas.g_voice) {
imas.g_voice.stop();
} else {
imas.g_voice = new imas.Voice();
}
if ( path ) {
imas.g_voice.load( path );
imas.g_voice.play( callback );
$.post(
'http://imas.gree-apps.net/app/index.php/voice/req',
{
'url': 'voice_drama/play',
'path': path
}
);
}
};
imas.StopSound = function() {
if ( imas.g_voice && imas.g_voice.isPlaying() ) {
imas.g_voice.stop();
}
imas.g_voice = null;
};
imas.IsPlaying = function() {
if ( imas.g_voice == null ) {
return false;
}
return imas.g_voice.isPlaying();
};
imas.GetPlayingPath = function() {
if ( imas.g_voice == null ) {
return null;
}
return imas.g_voice.src();
}
$(document).ready(function() {
var supportClickStart , supportClickEnd;
if ((("createTouch" in document) || ("ontouchstart" in document)) && navigator.userAgent.indexOf("Android 3.2") == -1) {
supportClickStart = 'touchstart';
supportClickEnd = 'touchend';
} else {
supportClickStart = 'mousedown';
supportClickEnd = 'mouseup';
}
var changeImage = function( path, is_play_img ) {
$('.idol-sound').each( function() {
var inputs = $(this).children('input');
if ( inputs.length == 0 )
return;
input_path = inputs[0].value;
if ( input_path == path ) {
var img = $(this).children('img');
if ( is_play_img ) {
img.attr( 'src', imas.g_sound_play_img );
}
else {
img.attr( 'src', imas.g_sound_stop_img );
}
}
});
};
$('.idol-sound').on(supportClickEnd, function() {
if(!imas.SoundVolume.voice.isVolumeState()) {
$(this).children('img').not(':animated').animate({
opacity: ".3"
}, 500).animate({
opacity: "1"
}, 500);
return;
}
var inputs = $(this).children('input');
if (inputs.length == 0) return;
var click_path = inputs[0].value;
var is_play = false;
if (imas.IsPlaying()) {
var now_path = imas.GetPlayingPath();
if (now_path == click_path) {
changeImage(now_path, true);
imas.StopSound();
} else {
$('.idol-sound>img').each(function () {
$(this).attr('src', imas.g_sound_play_img);
});
is_play = true;
}
} else {
is_play = true;
}
if (is_play === true) {
changeImage(click_path, false);
imas.PlaySoundByPath(click_path, function () {
changeImage(click_path, true);
});
}
});
var caravanChangeImage = function( path, is_play_img ) {
$('.caravan-idol-sound').each( function() {
var inputs = $(this).children('input');
if ( inputs.length == 0 )
return;
input_path = inputs[0].value;
if ( input_path == path ) {
var img = $(this).children('img');
if ( is_play_img ) {
img.attr( 'src', imas.g_sound_play_img );
}
else {
img.attr( 'src', imas.g_sound_stop_img );
}
}
});
};
$('.caravan-idol-sound').on(supportClickEnd, function() {
if( !imas.SoundVolume.voice.isVolumeState() ){
$(this).children('img').not(':animated').animate({
opacity: ".3"
}, 500).animate({
opacity: "1"
}, 500);
return;
}
var inputs = $(this).children( 'input' );
if ( inputs.length == 0 ) return;
var click_path = inputs[0].value;
var is_play = false;
if ( imas.IsPlaying() ) {
var now_path = imas.GetPlayingPath();
if ( now_path == click_path ) {
caravanChangeImage( now_path, true );
imas.StopSound();
}
else {
$('.caravan-idol-sound>img').each( function() {
$(this).attr( 'src', imas.g_sound_play_img );
});
is_play = true;
}
}
else {
is_play = true;
}
if ( is_play === true ) {
caravanChangeImage( click_path, false );
$.post(
'http://imas.gree-apps.net/app/index.php/caravan/voice_read',
{
'mode': 401,
'voice_id': $(this).data('id')
}
);
imas.PlaySoundByPath( click_path, function() {
caravanChangeImage( click_path, true );
});
}
});
});
</script>
<script>
$(document).ready(function () {
init();
});
</script>
<script type="text/javascript" src="./ep2_files/d1427b19f571e9c72220cd7119eb8e2a496375fe86925598d2ddeb72176b4215"></script>
<script type="text/javascript" src="./ep2_files/5d237d4cec351dc4fd479ab92721909524f92af3ebd85697c540c49e9d11431a"></script>
<script>
imas.SoundVolume.init(
{
voice: "1",
webview_se: "",
webview_bgm: "",
webview_bgm_volume: ""
}
);
</script>
<script src="./ep2_files/5caaca37a734b4a0e9058e9542f161353a2c8dbe73e6092a10d323407ff5fa41"></script>
<script>
Howler.iOSAutoEnable = true;
</script>
<script src="./ep2_files/e108ebe0dfb58fbfca862bc728e04ab79ef7e123c7fe888faac69166f59d22f22fc27813a44d7b898e23cec3740f5fa7"></script>
<script>
var imageArray={
spritesheet0:"./ep2_files/e108ebe0dfb58fbfca862bc728e04ab7a685eb096b8c7c78678b1669ccb9dcbd0a4c777fe670dee6075d9a0d20268f84.png",
};
var method="voice_drama";
if(!window.imageArray) {
imageArray = {};
}
imageArray.card_symbol1 = "./ep2_files/48ecc39dd995ebd5756cd69f95a4f09ac7cb5447740ee67dd8ff8ed5c78bbfa1b839787f7fdba53be620c2675396deb1.png";
imageArray.symbol_info1 = {"type":"json","src":"data:;base64,eyJmcmFtZXMiOiB7CgoiYm9keSI6CnsKCSJmcmFtZSI6IHsieCI6MSwieSI6MSwidyI6MzEyLCJoIjo1NDB9LAoJInJvdGF0ZWQiOiBmYWxzZSwKCSJ0cmltbWVkIjogZmFsc2UsCgkic3ByaXRlU291cmNlU2l6ZSI6IHsieCI6MCwieSI6MCwidyI6MzEyLCJoIjo1NDB9LAoJInNvdXJjZVNpemUiOiB7InciOjMxMiwiaCI6NTQwfQp9LAoiZmFjZTEiOgp7CgkiZnJhbWUiOiB7IngiOjE1NCwieSI6NTQyLCJ3IjoxNTIsImgiOjE1Mn0sCgkicm90YXRlZCI6IGZhbHNlLAoJInRyaW1tZWQiOiBmYWxzZSwKCSJzcHJpdGVTb3VyY2VTaXplIjogeyJ4IjowLCJ5IjowLCJ3IjoxNTIsImgiOjE1Mn0sCgkic291cmNlU2l6ZSI6IHsidyI6MTUyLCJoIjoxNTJ9Cn0sCiJmYWNlMiI6CnsKCSJmcmFtZSI6IHsieCI6MSwieSI6NTQyLCJ3IjoxNTIsImgiOjE1Mn0sCgkicm90YXRlZCI6IGZhbHNlLAoJInRyaW1tZWQiOiBmYWxzZSwKCSJzcHJpdGVTb3VyY2VTaXplIjogeyJ4IjowLCJ5IjowLCJ3IjoxNTIsImgiOjE1Mn0sCgkic291cmNlU2l6ZSI6IHsidyI6MTUyLCJoIjoxNTJ9Cn0sCiJmYWNlMyI6CnsKCSJmcmFtZSI6IHsieCI6MzA3LCJ5Ijo1NDIsInciOjE1MiwiaCI6MTUyfSwKCSJyb3RhdGVkIjogZmFsc2UsCgkidHJpbW1lZCI6IGZhbHNlLAoJInNwcml0ZVNvdXJjZVNpemUiOiB7IngiOjAsInkiOjAsInciOjE1MiwiaCI6MTUyfSwKCSJzb3VyY2VTaXplIjogeyJ3IjoxNTIsImgiOjE1Mn0KfSwKImZhY2U0IjoKewoJImZyYW1lIjogeyJ4IjozMTQsInkiOjE1NCwidyI6MTUyLCJoIjoxNTJ9LAoJInJvdGF0ZWQiOiBmYWxzZSwKCSJ0cmltbWVkIjogZmFsc2UsCgkic3ByaXRlU291cmNlU2l6ZSI6IHsieCI6MCwieSI6MCwidyI6MTUyLCJoIjoxNTJ9LAoJInNvdXJjZVNpemUiOiB7InciOjE1MiwiaCI6MTUyfQp9LAoiZmFjZTUiOgp7CgkiZnJhbWUiOiB7IngiOjMxNCwieSI6MSwidyI6MTUyLCJoIjoxNTJ9LAoJInJvdGF0ZWQiOiBmYWxzZSwKCSJ0cmltbWVkIjogZmFsc2UsCgkic3ByaXRlU291cmNlU2l6ZSI6IHsieCI6MCwieSI6MCwidyI6MTUyLCJoIjoxNTJ9LAoJInNvdXJjZVNpemUiOiB7InciOjE1MiwiaCI6MTUyfQp9LAoibGlwMSI6CnsKCSJmcmFtZSI6IHsieCI6MzE0LCJ5Ijo0MDksInciOjUwLCJoIjo1MH0sCgkicm90YXRlZCI6IGZhbHNlLAoJInRyaW1tZWQiOiBmYWxzZSwKCSJzcHJpdGVTb3VyY2VTaXplIjogeyJ4IjowLCJ5IjowLCJ3Ijo1MCwiaCI6NTB9LAoJInNvdXJjZVNpemUiOiB7InciOjUwLCJoIjo1MH0KfSwKImxpcDIiOgp7CgkiZnJhbWUiOiB7IngiOjMxNCwieSI6MzU4LCJ3Ijo1MCwiaCI6NTB9LAoJInJvdGF0ZWQiOiBmYWxzZSwKCSJ0cmltbWVkIjogZmFsc2UsCgkic3ByaXRlU291cmNlU2l6ZSI6IHsieCI6MCwieSI6MCwidyI6NTAsImgiOjUwfSwKCSJzb3VyY2VTaXplIjogeyJ3Ijo1MCwiaCI6NTB9Cn0sCiJsaXAzIjoKewoJImZyYW1lIjogeyJ4IjozMTQsInkiOjMwNywidyI6NTAsImgiOjUwfSwKCSJyb3RhdGVkIjogZmFsc2UsCgkidHJpbW1lZCI6IGZhbHNlLAoJInNwcml0ZVNvdXJjZVNpemUiOiB7IngiOjAsInkiOjAsInciOjUwLCJoIjo1MH0sCgkic291cmNlU2l6ZSI6IHsidyI6NTAsImgiOjUwfQp9fSwKImxheW91dCI6IHsKCSJib2R5IjogeyAieCI6IC0xNTYsICJ5IjogLTU0MCB9LAoJImxpcCI6IHsgIngiOiAtMTgsICJ5IjogLTQzNyB9LAoJImVtb3RlIjogeyAieCI6IDU1LCAieSI6IC01ODAgfQp9Cn0K"};
imageArray.card_bg1 = "./ep2_files/48ecc39dd995ebd5756cd69f95a4f09a820daacf51683e19cac1188b475d1140b8d0ef1ed9e1afccbdb3e899067bc3c4.jpg";
_root.next_url = "./main.html";
_root.command_total = "23";
_root.c0 = "load,$url0,$audio_path,$audio_info,$audio_path_lq,$audio_info";
_root.c1 = "bg,1";
_root.c2 = "fade,1";
_root.c3 = "start,0,エンディングストーリー";
_root.c4 = "bgm,night_rmx";
_root.c5 = "symbol,1,50";
_root.c6 = "motion,1,6";
_root.c7 = "text,1,1,,北上麗花,ふふっ、楽しかった~♪ただいまです、プロデュ-サ-さん♪";
_root.c8 = "emote,1,14,0";
_root.c9 = "text,1,2,,北上麗花,聞いてください。今日1日で、ちゃんと全員と会ってきました♪えっへん♪";
_root.c10 = "text,1,1,,北上麗花,地球の外に出るのは、ちょっと苦労しましたけど…いったん出ちゃえばこっちのものですね♪";
_root.c11 = "emote,1,8,0";
_root.c12 = "text,1,2,,北上麗花,あとはグングン走っていくだけでしたし、ラクチンでした。途中、火星人の乗ったUFOとすれ違っちゃった時は、私…。";
_root.c13 = "emote,1,11,0";
_root.c14 = "text,1,3,,北上麗花,…あれ?プロデュ-サ-さん…ぐっすり寝てる…。そっか、お仕事、大変そうですもんね。";
_root.c15 = "text,1,1,,北上麗花,毛布、かけますね。起こさないように…よいしょっと。";
_root.c16 = "emote,1,15,0";
_root.c17 = "text,1,1,,北上麗花,よし、これでバッチリ♪今日のお話は、また今度にしますね。";
_root.c18 = "text,1,2,,北上麗花,これ、プロデュ-サ-さんへのお土産です。今日の出来事を書いた日記帳。起きたら読んでくださいね。";
_root.c19 = "emote,1,5,0";
_root.c20 = "text,1,2,,北上麗花,いつもいつも、私達のために頑張ってくれて、ありがとうございます。";
_root.c21 = "text,1,1,,北上麗花,これからも、よろしくお願いします。大切なプロデュ-サ-さん♪";
_root.c22 = "end,0,$url2";
_root.url0 = "./main.html";
_root.url1 = "./main.html";
_root.url2 = "./main.html";
_root.audio_path = "";
_root.audio_path_lq = "";
_root.audio_info = "";
_root.pname = "プロデューサー";
function loadRoot() {
window[method](lib = lib||{}, images = images||{}, createjs = createjs||{});
exportRoot = new lib[method]();
exportRoot.setTransform(0, 0, targetZoom, targetZoom);
}
</script>
</div>