Safe Haskell | None |
---|---|
Language | Haskell2010 |
- data AnimationRepeatCount
- = Finite Int
- | Indefinite
- data AnimationFill
- data AnimationBasicEasing
- data AnimationEasingGroup
- data AnimationEasing = AnimationEasing {}
- data AnimationDirection
- data AnimationAttrs = AnimationAttrs {}
- defaultAnimationAttrs :: AnimationAttrs
- class ToJSVal a => CanAnimate a
- animation :: CanAnimate a => MisoString -> Maybe a -> a -> AnimationAttrs -> View action
Documentation
data AnimationFill Source
Determines effect of animation when not actively in play.
data AnimationDirection Source
data AnimationAttrs Source
Animation attributes.
AnimationAttrs | |
|
class ToJSVal a => CanAnimate a Source
:: CanAnimate a | |
=> MisoString | Name of an attribute to provide animation for. |
-> Maybe a | Starting value. Specify |
-> a | Ending value. |
-> AnimationAttrs | Animation attributes. |
-> View action |
A-Frame animation entity.