...
|
...
|
@@ -329,26 +329,17 @@ |
|
|
//点击
|
|
|
$('.title').click(function () {
|
|
|
title_id = $(this).attr("data-id");
|
|
|
|
|
|
// 第一步点击语音按钮
|
|
|
if ($(this).children(".voice_btn").css("display") == "inline") {
|
|
|
$(this).children(".voice_btn").css("display", "none");
|
|
|
$(this).children(".icon-tianxie").css("display", "inline")
|
|
|
$(this).parents('.info_item').children('.textarea_box').hide()
|
|
|
$(this).parents('.info_item').children('.voice_module').children('.voice_box').show()
|
|
|
$(this).parents('.info_item').children('.voice_module').children('.videoitem').show()
|
|
|
$(this).parents('.info_item').find('.voice_first').show()
|
|
|
} else if ($(this).children(".icon-tianxie").css("display") == "inline") {
|
|
|
$(this).children(".voice_btn").css("display","inline");
|
|
|
$(this).children(".icon-tianxie").css("display","none")
|
|
|
$(this).parents('.info_item').children('.textarea_box').show()
|
|
|
$(this).parents('.info_item').children('.voice_module').children('.voice_box').hide()
|
|
|
$(this).parents('.info_item').children('.voice_module').children('.videoitem').hide()
|
|
|
$(this).parents('.info_item').find('.voice_first').hide()
|
|
|
}
|
|
|
// $(this).next().show();
|
|
|
// $('.textarea_box').hide()
|
|
|
// $('.voice_btn').hide()
|
|
|
// $('.icon-tianxie').show()
|
|
|
// $('.voice_first').show()
|
|
|
})
|
|
|
|
|
|
//点击正在播放按钮
|
...
|
...
|
|