Answer the question
In order to leave comments, you need to log in
Audio player (software) with familiarization mode / automatic rewind?
Good afternoon.
I'm looking for an audio player (software) with the ability to get acquainted with the tracks.
For example: play a song for 30 seconds, fast forward 1 minute, play the next 30 seconds, etc. and so we move on to the next song in the same mode.
Purpose: to listen to a large number of songs (to get acquainted, find the best tracks), without going to the computer, so as not to rewind with your hands like this, but along the way to do some other business.
It is highly desirable that there be a version for both Windows and Linux, because. I use both of these systems.
Answer the question
In order to leave comments, you need to log in
This is done with Js. I wrote an example in jquery.
window.onscroll = function() {
var scroll = $(document).scrollTop();
if (scroll >= $(document).height() - $(window).height()){
$('.sidebar').addClass('sidebar--bottom');
}else{
$('.sidebar').removeClass('sidebar--bottom');
}
}
.sidebar--bottom {
top: auto;
bottom: 500px;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question