Skip to content

Instantly share code, notes, and snippets.

@ox1111
Forked from sp0033212000/style
Created June 22, 2020 06:34
Show Gist options
  • Save ox1111/02c8af2fa6c6454ff1743851f8c6e52f to your computer and use it in GitHub Desktop.
Save ox1111/02c8af2fa6c6454ff1743851f8c6e52f 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