help with the music

sokrates

New Member
Hello

I have a web and i want that music sounds but in some pages y have videos so i want that the music stops when you go to this pages with video and restart when you go to another page. Is this posible???

My web is www.animateweb.es

Thank you.
 

Hazey Coder

New Member
You would have to load your page content via AJAX (while always keeping the header intact to play the music), and then use a bit of JS for the functionality. You'd need to setup your videos with a div with a particular class wrapped around them. Then use JS to detect if that class is present on the page, and then pause the audio recording.

Based on how your current site layout, this would not be a fun project.

-Hazey
 
You would have to load your page content via AJAX (while always keeping the header intact to play the music), and then use a bit of JS for the functionality. You'd need to setup your videos with a div with a particular class wrapped around them. Then use JS to detect if that class is present on the page, and then pause the audio recording.

Based on how your current site layout, this would not be a fun project.

-Hazey

yeah that's what I was thinking. Using a class and AJAX and an if statement. ie:

if ( page == video){
pause music if playing{
else if ( page == another && music == paused){
unpause music}

just tossing ideas around.
 
Top