Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
solid-transition-group
Advanced tools
Animation library influenced by React Transition Group and Vue Transitions for the SolidJS library.
Known limitation: Transition and Transition Group work on detecting changes on DOM children. Only supports single DOM child. Not Text or Fragments.
Animations aren't always smooth under rapid input still working on improving.
npm install solid-transition-group
# or
yarn add solid-transition-group
# or
pnpm add solid-transition-group
All props besides children
are optional.
Name | Type | Description |
---|---|---|
name | string | Used to automatically generate transition CSS class names. e.g. name: 'fade' will auto expand to .fade-enter , .fade-enter-active , etc. Defaults to "s" . |
appear | boolean | Whether to apply transition on initial render. Defaults to false . |
mode | "inout" | "outin" | undefined | Controls the timing sequence of leaving/entering transitions. Available modes are "outin" and "inout" ; defaults to simultaneous. |
enterActiveClass | string | CSS class applied to the entering element for the entire duration of the enter transition. |
enterClass | string | CSS class applied to the entering element at the start of the enter transition, and removed the frame after. |
enterToClass | string | CSS class applied to the entering element after the enter transition starts. |
exitActiveClass | string | CSS class applied to the exiting element for the entire duration of the exit transition. |
exitClass | string | CSS class applied to the exiting element at the start of the exit transition, and removed the frame after. |
exitToClass | string | CSS class applied to the exiting element after the exit transition starts. |
onBeforeEnter | (el: Element) => void | Function called before the enter transition starts — before enter classes are applied. |
onEnter | (el: Element, done: () => void) => void | Function called when the enter transition starts — after enterToClass class is applied. Call done to end the transition - removes enter classes and calls onAfterEnter . |
onAfterEnter | (el: Element) => void | Function called after the enter transition ends — after all enter classes are removed. |
onBeforeExit | (el: Element) => void | Function called before the exit transition starts — before exit classes are applied. |
onExit | (el: Element, done: () => void) => void | Function called when the exit transition starts — after exitToClass class is applied. Call done to end the transition - removes exit classes, calls onAfterExit and removes the element from the DOM. |
onAfterExit | (el: Element) => void | Function called after the exit transition ends — after all exit classes are removed. |
<Transition>
serve as transition effects for single element/component. The <Transition>
only applies the transition behavior to the wrapped content inside; it doesn't render an extra DOM element, or show up in the inspected component hierarchy.
// simple CSS animation
<Transition name="slide-fade">{show() && <div>Hello</div>}</Transition>
// JS Animation
<Transition
onEnter={(el, done) => {
const a = el.animate([{ opacity: 0 }, { opacity: 1 }], {
duration: 600
});
a.finished.then(done);
}}
onExit={(el, done) => {
const a = el.animate([{ opacity: 1 }, { opacity: 0 }], {
duration: 600
});
a.finished.then(done);
}}
>
{show() && <div>Hello</div>}
</Transition>
moveClass
- CSS class applied to the moving elements for the entire duration of the move transition. Defaults to "s-move"
.<Transition>
except mode
.<TransitionGroup>
serve as transition effects for multiple elements/components.
<TransitionGroup>
supports moving transitions via CSS transform. When a child's position on screen has changed after an update, it will get applied a moving CSS class (auto generated from the name attribute or configured with the move-class attribute). If the CSS transform property is "transition-able" when the moving class is applied, the element will be smoothly animated to its destination using the FLIP technique.
<ul>
<TransitionGroup name="slide">
<For each={state.items}>{item => <li>{item.text}</li>}</For>
</TransitionGroup>
</ul>
FAQs
Components to manage animations for SolidJS
The npm package solid-transition-group receives a total of 7,678 weekly downloads. As such, solid-transition-group popularity was classified as popular.
We found that solid-transition-group demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.