Skip to content

Commit

Permalink
Actualizada guía de html
Browse files Browse the repository at this point in the history
  • Loading branch information
argenisosorio committed Dec 2, 2024
1 parent a01c5d0 commit 2850ab1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions html.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4963,6 +4963,28 @@ Fuente

https://www.campusmvp.es/recursos/post/como-insertar-audio-en-html5.aspx

Otra forma
==========

A veces lo anterior no funciona en dispositivos móviles porque le pica el
trasero entonces logre que un audio se reproduciera con:

1- Agregar este botón:

<button id="startAudio">Reproducir Audio</button>

2- Agregar este script al final de la página dentro de body:

<script type="text/javascript">
let audio;
document.getElementById("startAudio").addEventListener("click", function() {
if (!audio) {
audio = new Audio('assets/audio/audio.mp3');
audio.play();
}
});
</script>

=========================================================================
Insertar video como fonde de un section, tipo section hero en una landing
=========================================================================
Expand Down

0 comments on commit 2850ab1

Please sign in to comment.