Skip to content

Instantly share code, notes, and snippets.

@sp0033212000
Last active June 22, 2020 06:38
Show Gist options
  • Save sp0033212000/a809b4a542d401892d6a80e5d383992c to your computer and use it in GitHub Desktop.
Save sp0033212000/a809b4a542d401892d6a80e5d383992c to your computer and use it in GitHub Desktop.
const style = () => {
if (animation)
if (action === "next") {
return {
transform: `translateX(-${(100 / 3) * 2}%)`,
transition: "transform 0.1s",
};
} else if (action === "prev") {
return {
transform: `translateX(0%)`,
transition: "transform 0.1s",
};
}
return {
transform: `translateX(-${100 / 3}%)`,
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment