For everyone coming across this thread while looking for a solution to prevent the “stop slider on hover” default behaviour (like me), there is an easy solution:
add a custom class to your slider element and embed the following css as a custom embed:
.yourClass{
pointer-events:none;
}
Bear in mind this will make your slider completely non-interactive! Works great for a timed animation, etc.