Skip to content

Instantly share code, notes, and snippets.

@delvinkrasniqi
Last active February 27, 2020 15:03
Show Gist options
  • Save delvinkrasniqi/69cb52a2ae13ca95f2fce4dab735eccd to your computer and use it in GitHub Desktop.
Save delvinkrasniqi/69cb52a2ae13ca95f2fce4dab735eccd to your computer and use it in GitHub Desktop.
Play Audio on Hover (jQuery & HTML & PHP)
<script>
jQuery(function(){
var audio = document.getElementsByTagName("audio")[0];
jQuery('#divid').hover(
function() {
audio.play();
},
function() {
audio.pause()
}
)
})
</script>
<div id="divid">
<img src="<?php the_field('how_we_started_img'); ?>" class="img-fluid" alt="" width="100%" height="auto"></div>
<audio id="mySoundClip1" autoplay>
<source src="<?php the_field('audio');?>">
<source src="<?php the_field('audio2');?>">
</audio>
<div id="sounddiv"><bgsound id="sound"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment