Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@cirolee/tiny-motion
Advanced tools
The high-performance extension of Web Animation API for React Hooks
The high-performance extension of Web Animation API for React Hooks
npm install @cirolee/tiny-motion
the preset motions
// App.tsx
import { useMotion } from '@cirolee/tiny-motion';
export default function App() {
const [ ref, motion ] = useMotion<HTMLDivElement>()
return (
<div>
<div ref={ref} className="text-3xl">@cirolee/tiny-motion</div>
<button onClick={() => motion('swing')}>play</button>
</div>
)
}
basic wrap of Web Animation API
import { useAnimate} from '@cirolee/tiny-motion;'
export default function App() {
const [ ref, animate ] = useAnimate<HTMLDivElement>();
return (
<div className="relative mb-3 flex h-[240px] overflow-hidden rounded-md border items-center justify-center">
<div ref={ref} className="size-[120px] rounded-lg bg-blue-500"></div>
<button
className="absolute bottom-2 right-2"
onClick={() => {
animate(
{
transform: ['translateX(0)', 'translateX(100px)'],
borderRadius: ['8px', '50%'],
backgroundColor: ['rgb(59 130 246)', 'rgb(246 154 59)']
},
{
duration: 800,
easing: 'ease-in-out',
fill: 'forwards'
}
);
}}>
play
</button>
</div>
)
}
useGroup is used to control multiple elements to animate with the same parameters
import { useGroup, EASING_FUNCTIONS } from '@cirolee/tiny-motion';
export default function App() {
const ballRef1 = useRef<HTMLDivElement>(null);
const ballRef2 = useRef<HTMLDivElement>(null);
const ballRef3 = useRef<HTMLDivElement>(null);
const controller = useGroup(
{
refs: [ballRef1, ballRef2, ballRef3],
keyframes: {
transform: ['translateX(0) rotate(0)', 'translateX(500px) rotate(2turn)']
},
options: {
duration: 3000,
fill: 'forwards',
easing: EASING_FUNCTIONS.easeOutInBack
},
onStart: () => {
console.log('start animate');
},
onPause: () => {
console.log('pause animate');
},
onResume: () => {
console.log('resume animate');
},
onComplete: () => {
console.log('complete animate');
}
},
[]
);
return (
<div className="flex flex-col justify-center gap-2 px-8">
<div ref={ballRef1} className="size-[40px] bg-blue-500"></div>
<div ref={ballRef2} className="size-[40px] bg-blue-500"></div>
<div ref={ballRef3} className="size-[40px] bg-blue-500"></div>
<div className="absolute bottom-2 right-2 space-x-2">
<button onClick={() => controller.play()}>
play
</button>
<button onClick={() => controller.reverse()}>
reverse
</button>
<button onClick={() => controller.pause()}>
pause
</button>
<button onClick={() => controller.resume()}>
resume
</button>
</div>
</div>
)
}
useMultiple is used to control the animation of multiple elements using independent animation parameters
import { useRef } from 'react';
import { useMultiple } from '@cirolee/tiny-motion';
export default function App() {
const ballRef1 = useRef<HTMLDivElement>(null);
const ballRef2 = useRef<HTMLDivElement>(null);
const ballRef3 = useRef<HTMLDivElement>(null);
const controller = useMultiple(
{
baseOptions: {
duration: 1000,
fill: 'forwards'
},
config: [
{
ref: ballRef1,
keyframes: [
{ transform: 'translateX(0) scale(1)', borderRadius: '0' },
{ transform: 'translateX(100px) scale(1)', borderRadius: '50%', offset: 0.2 },
{ transform: 'translateX(100px) scale(1)', borderRadius: '50%', offset: 0.6 },
{
transform: 'translateX(160px) scale(1.6, 1)',
borderRadius: '50%'
},
{
transform: 'translateX(360px) scale(1, 1)',
borderRadius: '50%'
}
]
},
{
ref: ballRef2,
keyframes: {
transform: ['translateX(200px) rotate(2turn)'],
borderRadius: ['4px']
},
options: {
duration: 500
}
},
{
ref: ballRef3,
keyframes: {
transform: ['translateX(0)', 'translateX(300px)'],
easing: 'steps(4)'
}
}
]
},
[]
);
return (
<div className="mb-4 flex flex-col justify-center gap-2 px-8">
<div ref={ballRef1} className="size-[40px] bg-blue-500"></div>
<div ref={ballRef2} className="size-[40px] bg-blue-500"></div>
<div ref={ballRef3} className="size-[40px] bg-blue-500"></div>
<button className="absolute bottom-3 right-3" onClick={() => controller.play()}>
play
</button>
</div>
)
}
used to make svg elements(such as path, circle) to have a line animation effect
import { useRef } from 'react';
import { useLineDraw } from '@cirolee/tiny-motion';
export default function App() {
const path1Ref = useRef<SVGPathElement>(null);
const path2Ref = useRef<SVGPathElement>(null);
const controller = useLineDraw(
{
refs: [path1Ref, path2Ref],
drawType: 'appear',
options: {
duration: 1500,
fill: 'forwards',
easing: 'ease-in-out'
}
},
[]
);
return (
<div className="mb-4 flex flex-col px-8 flex-center">
<svg
xmlns="http://www.w3.org/2000/svg"
width="100"
height="100"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round">
<path ref={path1Ref} d="M5 21c.5 -4.5 2.5 -8 7 -10" />
<path ref={path2Ref} d="M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z" />
</svg>
<button size="sm" className="absolute bottom-3 right-3" onClick={() => controller.play()}>
play
</button>
</div>
)
}
useValue is used to animate numbers
import { useValue } from '@cirolee/tiny-motion';
export default function App() {
const [value, controller] = useValue(0, 100 {
duration: 5000,
autoPlay: false,
easing: 'easeOutCubic'
});
return (
<div className="flex h-[260px] flex-col items-center">
<div className="my-4 flex size-[120px] rounded-xl border bg-white text-3xl font-bold flex-center">{value}</div>
<p>isPlaying: {controller.isPlaying.toString()}</p>
<div className="mt-4 space-x-2">
<button onClick={() => controller.play()}>
play
</button>
<button onClick={() => controller.pause()}>
pause
</button>
<button onClick={() => controller.resume()}>
resume
</button>
<button onClick={() => controller.cancel()}>
cancel
</button>
</div>
</div>
)
}
used to simulate the real physical spring motion effect
import { useSpring } from '@cirolee/tiny-motion';
export default function App() {
const [y, controller] = useSpring({ from: 0, to: 240, autoPlay: false });
return (
<div className="h-[440px] px-8">
<div className="relative top-3 ml-[33%] size-16 rounded-full bg-blue-500"
style={{ transform: `translateY(${y}px)`}}></div>
<button disabled={controller.isPlaying} onClick={controller.play}>
{controller.isPlaying ? 'playing...' : 'start'}
</button>
</div>
)
}
FAQs
The high-performance extension of Web Animation API for React Hooks
The npm package @cirolee/tiny-motion receives a total of 5 weekly downloads. As such, @cirolee/tiny-motion popularity was classified as not popular.
We found that @cirolee/tiny-motion demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.