I have an autofade button attached to each instance of my audio tracks:
<input type="button" id="autofadebtn<?php echo $track;?>" value="Fade Out"
onclick="$(document).ready(function()
{
$('#<?php echo $track;?>')[0].volume = .5;
$('#<?php echo $track;?>').animate({volume: 0}, 30000);
});
$('#<?php echo $track;?>').promise().done(function() {
$('#<?php echo $track;?>').trigger('pause');
});
"
>
I also have a volume slider:
var audio<?php echo $track;?> = document.getElementById("<?php echo $track;?>");
var slider<?php echo $track;?> = document.getElementById("slider<?php echo $track;?>");
var display<?php echo $track;?> = document.getElementById("display<?php echo $track;?>");
slider<?php echo $track;?>.addEventListener("input", sliderActions);
function sliderActions( )
{
var newVolume = slider<?php echo $track;?>.value;
display<?php echo $track;?>.innerText = newVolume; // range 0 to 100
audio<?php echo $track;?>.volume = newVolume / 100; // range 0 to 1
}
My issue is that I would like my autofade button to start at the volume the user moves the volume slider to. Currently the auto fade starts at .5. I can't work out which variable to use from the volume slider. The autofade button is within the input tag whilst the volume slider script is at the bottom of the page.
I've tried replacing the volume = .5 in the autofade with the named variables from the volume slider but each time the autofade stops working.
I have an autofade button attached to each instance of my audio tracks:
<input type="button" id="autofadebtn<?php echo $track;?>" value="Fade Out"
onclick="$(document).ready(function()
{
$('#<?php echo $track;?>')[0].volume = .5;
$('#<?php echo $track;?>').animate({volume: 0}, 30000);
});
$('#<?php echo $track;?>').promise().done(function() {
$('#<?php echo $track;?>').trigger('pause');
});
"
>
I also have a volume slider:
var audio<?php echo $track;?> = document.getElementById("<?php echo $track;?>");
var slider<?php echo $track;?> = document.getElementById("slider<?php echo $track;?>");
var display<?php echo $track;?> = document.getElementById("display<?php echo $track;?>");
slider<?php echo $track;?>.addEventListener("input", sliderActions);
function sliderActions( )
{
var newVolume = slider<?php echo $track;?>.value;
display<?php echo $track;?>.innerText = newVolume; // range 0 to 100
audio<?php echo $track;?>.volume = newVolume / 100; // range 0 to 1
}
My issue is that I would like my autofade button to start at the volume the user moves the volume slider to. Currently the auto fade starts at .5. I can't work out which variable to use from the volume slider. The autofade button is within the input tag whilst the volume slider script is at the bottom of the page.
I've tried replacing the volume = .5 in the autofade with the named variables from the volume slider but each time the autofade stops working.
Share Improve this question edited Apr 1 at 9:56 jonrsharpe 122k30 gold badges268 silver badges475 bronze badges asked Apr 1 at 9:47 Andrew HelmeAndrew Helme 11 bronze badge 5 |1 Answer
Reset to default 1<?php echo $track;?>
in varname and and getElementById looks like you have several of these on the page. If you delegate you do not need this code at all.
jQUery makes delegation easy, although plain vanilla JS can do it too
- php
<?php foreach ($tracks as $track) { ?>
<div class="track-container">
<audio class="track-audio" src="<?= $track ?>"></audio>
<input type="range" class="volume-slider" min="0" max="100" value="50">
<span class="volume-display">50</span>
<input type="button" class="autofade-btn" value="Fade Out">
</div>
<? } ?>
- JS using delegation - note you need to change prev/prevAll to next/nextAll depending on where the button is relative to the audio and slider. Post your HTML if you need help with that
$(document).ready(function() {
// Delegate slider input events
$(document).on('input', '.volume-slider', function() {
const $slider = $(this);
const $audio = $slider.prev('.track-audio'); // Audio is before slider
const $display = $slider.next('.volume-display'); // Display is after slider
const newVolume = $slider.val();
$display.text(newVolume); // Update display (0-100)
$audio[0].volume = newVolume / 100; // Update audio volume (0-1) note we use the [0] DOM property
});
// Delegate autofade button clicks
$(document).on('click', '.autofade-btn', function() {
const $button = $(this);
const $audio = $button.prevAll('.track-audio').first(); // Audio is before button
// Fade from current volume to 0 over 30 seconds
$audio.animate({
volume: 0
}, 30000).promise().done(function() {
$audio.trigger('pause');
});
});
});
onclick="$(document).ready(function() ...
- that is one of the worst constructs I have ever seen, when it comes to event handling. Surprised it does anything at all, considering it appears to try and set aready
handler for the document, when the element gets clicked (by which time ready will probably already have passed.) – C3roe Commented Apr 1 at 10:02sliderActions
? I'm assumingaudio<?php echo $track;?>
in there, and$('#<?php echo $track;?>')
in your click handler, are effectively the same element? So why do you need to set it again in your click handler, can't just just "animate" from the current volume? – C3roe Commented Apr 1 at 10:05<?php echo $track;?>
in varname and and getElementById looks like you have several of these on the page. If you delegate you do not need this code at all. – mplungjan Commented Apr 1 at 10:21