Pergunta

Can anyone help me create a javascript/jquery function to control the HTML5 audio tag control seekbar?? (Or suggest me a web resource from where I can learn). I want to customize the looks of the default controls and so I want to handle the progress in a different <div>. How can I achieve that?

Foi útil?

Solução

Use any JavaScript slider control that you want and do two things:

  • listen for changes (clicks) and set audioNode.currentTime
  • conversely, periodically set the slider's value to audioNode.currentTime
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top