Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
basic-animation-stage
Advanced tools
A panel that shows animated transitions between selection states.
ElementBase
Presents a single item as selected, providing animated transitions when the selection changes. The same animation can be shown at an arbitrary point, generally used to reflet a user-controlled touch or trackpad drag operation in progress.
This component is intended to be used as a programmatic rendering surface for components which want to show transitional effects.
The component uses the SelectionAnimation mixin, which in turn uses the Web Animations API. For use on browsers which do not support that API natively, you will need to load the Web Animations polyfill.
For a simpler component that exhibits only a sliding effect, but does not require the Web Animations API, see basic-sliding-viewport.
Kind: global class
Extends: ElementBase
Mixes: ContentAsItems
, DistributedChildrenAsContent
, ItemsSelection
, ObserveContentChanges
, SelectionAnimation
, SelectionAriaActive
ElementBase
boolean
boolean
Array.<HTMLElement>
Array.<HTMLElement>
number
number
object
number
string
Array.<cssRules>
boolean
boolean
boolean
Apply the selection state to a single item.
Invoke this method to signal that the selected state of the indicated item
has changed. By default, this applies a selected
CSS class if the item
is selected, and removed it if not selected.
Kind: instance method of AnimationStage
. Defined by ContentAsItems
mixin.
Param | Type | Description |
---|---|---|
item | HTMLElement | The item whose selection state has changed. |
selected | boolean | True if the item is selected, false if not. |
Apply the indicate selection state to the item.
The default implementation of this method does nothing. User-visible effects will typically be handled by other mixins.
Kind: instance method of AnimationStage
. Defined by ItemsSelection
mixin.
Param | Type | Description |
---|---|---|
item | HTMLElement | the item being selected/deselected |
selected | boolean | true if the item is selected, false if not |
boolean
True if the selection can be moved to the next item, false if not (the selected item is the last item in the list).
Kind: instance property of AnimationStage
. Defined by ItemsSelection
mixin.
boolean
True if the selection can be moved to the previous item, false if not (the selected item is the first one in the list).
Kind: instance property of AnimationStage
. Defined by ItemsSelection
mixin.
Array.<HTMLElement>
The content of this component, defined to be the flattened array of children distributed to the component.
Kind: instance property of AnimationStage
. Defined by DistributedChildrenAsContent
mixin.
This event is raised when the component's contents (including distributed children) have changed.
Kind: event emitted by AnimationStage
. Defined by ObserveContentChanges
mixin.
Invoked when the contents of the component (including distributed children) have changed.
This method is also invoked when a component is first instantiated; the contents have essentially "changed" from being nothing. This allows the component to perform initial processing of its children.
Kind: instance method of AnimationStage
. Defined by ObserveContentChanges
mixin.
Handle a new item being added to the list.
The default implementation of this method simply sets the item's selection state to false.
Kind: instance method of AnimationStage
. Defined by ItemsSelection
mixin.
Param | Type | Description |
---|---|---|
item | HTMLElement | the item being added |
This method is invoked whenever a new item is added to the list.
The default implementation of this method does nothing. You can override this to perform per-item initialization.
Kind: instance method of AnimationStage
. Defined by ContentAsItems
mixin.
Param | Type | Description |
---|---|---|
item | HTMLElement | The item that was added. |
Array.<HTMLElement>
The current set of items in the list. See the top-level documentation for mixin for a description of how items differ from plain content.
Kind: instance property of AnimationStage
. Defined by ContentAsItems
mixin.
Fires when the items in the list change.
Kind: event emitted by AnimationStage
. Defined by ContentAsItems
mixin.
This method is invoked when the underlying contents change. It is also invoked on component initialization – since the items have "changed" from being nothing.
Kind: instance method of AnimationStage
. Defined by ContentAsItems
mixin.
Fires when the selectedIndex property changes.
Kind: event emitted by AnimationStage
. Defined by ItemsSelection
mixin.
Param | Type | Description |
---|---|---|
detail.selectedIndex | number | The new selected index. |
Fires when the selectedItem property changes.
Kind: event emitted by AnimationStage
. Defined by ItemsSelection
mixin.
Param | Type | Description |
---|---|---|
detail.selectedItem | HTMLElement | The new selected item. |
detail.previousItem | HTMLElement | The previously selected item. |
number
A fractional value indicating how far the user has currently advanced to
the next/previous item. E.g., a selectedFraction
of 3.5 indicates the
user is halfway between items 3 and 4.
For more details, see the FractionalSelection mixin.
Kind: instance property of AnimationStage
. Defined by SelectionAnimation
mixin.
number
The index of the item which is currently selected.
If selectionWraps
is false, the index is -1 if there is no selection.
In that case, setting the index to -1 will deselect any
currently-selected item.
Kind: instance property of AnimationStage
. Defined by ItemsSelection
mixin.
object
The currently selected item, or null if there is no selection.
Setting this property to null deselects any currently-selected item.
Kind: instance property of AnimationStage
. Defined by ItemsSelection
mixin.
Select the first item in the list.
Kind: instance method of AnimationStage
. Defined by ItemsSelection
mixin.
number
The duration of a selection animation in milliseconds.
This measures the amount of time required for a selection animation to complete. This number remains constant, even if the number of items being animated increases.
The default value is 250 milliseconds (a quarter a second).
Kind: instance property of AnimationStage
. Defined by SelectionAnimation
mixin.
Default: 250
string
The name of a standard selection animation effect.
This is a shorthand for setting the selectionAnimationKeyframes
property to standard keyframes. Supported string values:
"crossfade"
"reveal"
"revealWithFade"
"showAdjacent"
"slide"
"slideWithGap"
Kind: instance property of AnimationStage
. Defined by SelectionAnimation
mixin.
Default: ""slide""
Array.<cssRules>
The keyframes that define an animation that plays for an item when moving forward in the sequence.
This is an array of CSS rules that will be applied. These are used as keyframes to animate the item with the Web Animations API.
The animation represents the state of the next item as it moves from completely unselected (offstage, usually right), to selected (center stage), to completely unselected (offstage, usually left). The center time of the animation should correspond to the item's quiscent selected state, typically in the center of the stage and at the item's largest size.
The default forward animation is a smooth slide at full size from right to left.
When moving the selection backward, this animation is played in reverse.
Kind: instance property of AnimationStage
. Defined by SelectionAnimation
mixin.
boolean
True if the list should always have a selection (if it has items).
Kind: instance property of AnimationStage
. Defined by ItemsSelection
mixin.
Default: false
boolean
True if selection navigations wrap from last to first, and vice versa.
Kind: instance property of AnimationStage
. Defined by ItemsSelection
mixin.
Default: false
Select the last item in the list.
Kind: instance method of AnimationStage
. Defined by ItemsSelection
mixin.
Select the next item in the list.
Kind: instance method of AnimationStage
. Defined by ItemsSelection
mixin.
Select the previous item in the list.
Kind: instance method of AnimationStage
. Defined by ItemsSelection
mixin.
boolean
Determine whether a transition should be shown during selection.
Components like carousels often define animated CSS transitions for sliding effects. Such a transition should usually not be applied while the user is dragging, because a CSS animation will introduce a lag that makes the swipe feel sluggish. Instead, as long as the user is dragging with their finger down, the transition should be suppressed. When the user releases their finger, the transition can be restored, allowing the animation to show the carousel sliding into its final position.
Note: This property is only intended to let a component cooperate with mixins that may be applied to it, and is not intended to let someone using component permanently enable or disable transition effects.
Kind: instance property of AnimationStage
. Defined by SelectionAnimation
mixin.
FAQs
A panel that shows animated transitions between selection states.
The npm package basic-animation-stage receives a total of 0 weekly downloads. As such, basic-animation-stage popularity was classified as not popular.
We found that basic-animation-stage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.