|
|
@@ -522,7 +522,7 @@ function TouchStartFunc(event) {
|
|
|
LeftTimeNum = parseInt($(".LDFPWhite_" + TouchIndex).attr("data-ctime"));
|
|
|
PWidthValNum = parseFloat($(jQStr).parent().css("width")); // 总宽度
|
|
|
if (TallTimeNum > 0) {
|
|
|
- mobileTSFunc();
|
|
|
+ mobileTSFunc(TouchIndex);
|
|
|
}
|
|
|
}
|
|
|
// 滑块滑动
|
|
|
@@ -553,7 +553,6 @@ function TouchMoveFunc(event) {
|
|
|
}
|
|
|
// 滑块滑动控制(抬起来)
|
|
|
function TouchEndFunc(event) {
|
|
|
- //$(document.body).append('<div style="width:100px;height:50px;position:fixed;left:10px;top:20px;background-color:yellow;"></div>');
|
|
|
mobileTEFunc(TouchIndex);
|
|
|
}
|
|
|
//#endregion
|
|
|
@@ -2257,7 +2256,7 @@ function adjustFontSize(FontSize) {
|
|
|
$(".LDFTimerS").css("line-height", TFontSize + "px");
|
|
|
}
|
|
|
// 音频进度条按下回调
|
|
|
-function mobileTSFunc() {
|
|
|
+function mobileTSFunc(ID) {
|
|
|
pressTableFlag =true;
|
|
|
// 移动端回调处理
|
|
|
}
|
|
|
@@ -2265,5 +2264,7 @@ function mobileTSFunc() {
|
|
|
function mobileTEFunc(ID) {
|
|
|
pressTableFlag = false;
|
|
|
var CurrentTime = parseInt($(".LDFPWhite_" + ID).attr("data-ctime")); // 当前滑动的时间进度
|
|
|
+ var jQStr = ".LDFPlayS_" + ID;
|
|
|
+ var AudioUrl = $(jQStr).parent().prev(".LDivTop").find(".LDivTItem[data-selected='1']").attr("data-auduourl"); // 路径
|
|
|
// 移动端回调处理
|
|
|
}
|