...
|
...
|
@@ -196,7 +196,6 @@ |
|
|
console.log(key);
|
|
|
vo.play();
|
|
|
var audioTimer = setInterval(function() {
|
|
|
audioTime--;
|
|
|
if (audioTime % 2 == 0) {
|
|
|
audio.eq(key).parents('.detail_audio_wrap').find(".b3").siblings().removeClass("b_active")
|
|
|
} else {
|
...
|
...
|
@@ -206,7 +205,7 @@ |
|
|
if (audioTime <= 0) {
|
|
|
audioTime = parseInt(vo.duration);
|
|
|
console.log(audioTime);
|
|
|
audio.eq(key).parents('.detail_audio_wrap').find(".b3").siblings().removeClass("b_active")
|
|
|
audio.eq(key).parents('.detail_audio_wrap').find(".b3").siblings().removeClass("b_active");
|
|
|
clearInterval(audioTimer)
|
|
|
}
|
|
|
}, 1000);
|
...
|
...
|
|