anim_opacity {omsvg} | R Documentation |
Animate an element through an opacity change
Description
Within an anims()
call, itself passed to any anims
argument, the
anim_opacity()
function can be used to express an animation where the
target element undergoes a change in opacity with time.
Usage
anim_opacity(opacity = NULL, easing_fn = NULL, initial = FALSE)
Arguments
opacity |
The opacity value of the element at the keyframe time (given
as the LHS value in the |
easing_fn |
The timing or easing function to use for the animation. If
not provided, the |
initial |
Should this opacity value be the initial opacity value of
the element? If so, use |
Value
An anim_opacity
object, which is to be used as part of an anims()
call.
Examples
if (interactive()) {
# Basic animation of an element's
# opacity value (moving to a new
# `opacity` value of `0`)
SVG(width = 300, height = 300) %>%
svg_rect(
x = 50, y = 50,
width = 50, height = 50,
attrs = svg_attrs_pres(
stroke = "magenta",
fill = "lightblue"
),
anims = anims(
2.0 ~ anim_opacity(opacity = 0)
)
)
}