我想在5分钟的音频文件上显示10秒Mark / 30秒标记。 标记可以是一条小的暗线。我怎么能这样做。
这会正常运作吗?
//getting the audio ID
var audio = document.getElementById("myaudio");
// setting the duration to 10 seconds
audio.duration = 10;
//setting the duration to a class name
audio.duration.classList.add("otherclass");