Safe Haskell | None |
---|---|
Language | Haskell2010 |
Miso.AFrame.Core.Animation
- 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 AnimationRepeatCount Source
Constructors
Finite Int | |
Indefinite |
data AnimationDirection Source
data AnimationAttrs Source
Animation attributes.
Constructors
AnimationAttrs | |
Fields
|
Instances
class ToJSVal a => CanAnimate a Source
Arguments
:: 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.