Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@motionone/svelte
Advanced tools
@motionone/svelte is a Svelte-specific package that provides powerful and easy-to-use animation capabilities. It leverages the Motion One library to offer a declarative way to create animations in Svelte applications.
Basic Animations
This feature allows you to create basic animations such as fading in and sliding up elements. The `animate` directive is used to define the animation properties.
<script>
import { animate } from '@motionone/svelte';
</script>
<div use:animate={{ opacity: [0, 1], transform: ['translateY(20px)', 'translateY(0)'] }}>
Fade in and slide up
</div>
Keyframe Animations
This feature allows you to create more complex animations using keyframes. The `animate` directive can take an array of keyframes to define the animation sequence.
<script>
import { animate } from '@motionone/svelte';
</script>
<div use:animate={{ keyframes: [
{ opacity: 0, transform: 'translateY(20px)' },
{ opacity: 1, transform: 'translateY(0)' }
] }}>
Keyframe animation
</div>
Spring Animations
This feature allows you to create spring-based animations, which provide a more natural and bouncy effect. The `spring` directive is used to define the spring properties.
<script>
import { spring } from '@motionone/svelte';
</script>
<div use:spring={{ stiffness: 200, damping: 20 }}>
Spring animation
</div>
svelte-motion is another animation library for Svelte that focuses on providing a declarative way to create animations. It is similar to @motionone/svelte but may have different performance characteristics and API design.
svelte-transitions is a built-in Svelte package that provides basic transition effects. While it is not as feature-rich as @motionone/svelte, it is a good option for simple animations and transitions.
FAQs
A tiny, performant animation library for Svelte
The npm package @motionone/svelte receives a total of 203,272 weekly downloads. As such, @motionone/svelte popularity was classified as popular.
We found that @motionone/svelte 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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.