I need help on this code! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I need help on this code!

Need to stop the sound when the book page closes. https://code.sololearn.com/Wu5wp3i8ML3I/?ref=app

1st Apr 2020, 5:41 AM
Tuguldur (Төгөлдөр)
Tuguldur (Төгөлдөр) - avatar
2 Answers
+ 1
Add this snippet in the js tab: onload = () => { var audio = $('.song')[0]; addEventListener('transitionend',e => { e = e.target; var t, f; t = getComputedStyle(e).transform; f = e.classList.contains('imgbox'); if (f && t=='none') { audio.pause(); audio.currentTime = 0; } }); };
1st Apr 2020, 8:39 AM
visph
visph - avatar
0
thanks
1st Apr 2020, 9:13 AM
Tuguldur (Төгөлдөр)
Tuguldur (Төгөлдөр) - avatar