Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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}
}

I found a similar solution for blinking but the slow fade is cool! I am going to implement that. Thank you so much for the answer!