How do you make paragraphs to show one by one? And how do you make the links to blink? These two effects make the game much more engaging. Is it possible to show me the code for these effects? I want to use that in my game as well!
Hi, I'm using SugarCube 2.3.
For the paragraphs, this link is really helpful https://twinery.org/forum/discussion/6383/how-to-make-slow-fade-in-text-on-sugarcube
To make the blinking links, I'm using a fade-in/fade-out animation on a:hover
@-webkit-keyframes fade-in-out
{
0%,
to {opacity: 1}
50% {opacity: 0}
}
@keyframes fade-in-out
{
0%,
to {opacity: 1}
50% {opacity: 0}
}