Module
Hylograph.Transition.RAF
- Package
- purescript-hylograph-transitions
- Repository
- afcondon/purescript-hylograph-transitions
RequestAnimationFrame bindings
Provides browser animation frame timing for tick-based animations.
#AnimationFrameId Source
data AnimationFrameIdOpaque ID for a scheduled animation frame
#requestAnimationFrame Source
requestAnimationFrame :: (Timestamp -> Effect Unit) -> Effect AnimationFrameIdSchedule a callback for the next animation frame.
#cancelAnimationFrame Source
cancelAnimationFrame :: AnimationFrameId -> Effect UnitCancel a scheduled animation frame.
#performanceNow Source
performanceNow :: Effect TimestampGet current high-resolution timestamp.