animation for sportlight #1066
Closed
vhphuc0240
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
Hey @vhphuc0240 You can add the keyframes and the selector in your global CSS. @keyframes scaleUpDown {
0% {
transform: scale(1); /* Start at normal size */
}
50% {
transform: scale(1.2); /* Scale up */
}
100% {
transform: scale(1); /* Scale back down */
}
}
.react-joyride__spotlight {
animation: scaleUpDown 2s infinite;
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to add animation to sportlight for attractive to users. Some animation like that: https://codesandbox.io/p/sandbox/confident-feynman-qxyzq5 or any animation with lottie
Beta Was this translation helpful? Give feedback.
All reactions