日期:2014-05-16 浏览次数:20363 次
var sounds1=soundManager.createSound({
id: 'sound1',
url: '',
autoPlay:false,
onfinish:function(){
if (wc == 1001 && wf== 2){
soundManager.play('sound2');
}
}
});
var sounds2=soundManager.createSound({
id: 'sound2',
url: '',
autoPlay:false
});
if (wc == 1001 && wf == 1){
soundManager.play('sound1');
}