У меня была похожая проблема, в которой setInterval
нельзя было полагаться на то, чтобы "держать время" в течение длительного периода.Моим решением был приведенный ниже фрагмент: (в сценарии кофе скомпилированный js находится в конце ссылки)
Он обеспечивает замену setInetrval, который будет очень близок ко времени хранения.С его помощью вы можете сделать это:
accurateInterval(1000 * 60 / bpm, callbackFunc);
См. Мой пример использования и пример, который синхронизирует визуалы с предоставленным BPM для видео на YouTube здесь: http://squeegy.github.com/MandalaTron/?bpm=64&vid=EaAzRm5MfY8&vidt=0.5&fullscreen=1
correctInterval code:
# Accurate Interval, guaranteed not to drift!
# (Though each call can still be a few milliseconds late)
window.accurateInterval = (time, fn) ->
# This value is the next time the the timer should fire.
nextAt = new Date().getTime() + time
# Allow arguments to be passed in in either order.
if typeof time is 'function'
[fn, time] = [time, fn]
# Create a function that wraps our function to run. This is responsible for
# scheduling the next call and aborting when canceled.
wrapper = ->
nextAt += time
wrapper.timeout = setTimeout wrapper, nextAt - new Date().getTime()
fn()
# Clear the next call when canceled.
wrapper.cancel = -> clearTimeout wrapper.timeout
# Schedule the first call.
setTimeout wrapper, nextAt - new Date().getTime()
# Return the wrapper function so cancel() can later be called on it.
return wrapper
получите сценарий с кофе и js здесь: https://gist.github.com/1d99b3cd81d610ac7351