Hi @ community!
I was wondering if there is a way to let a question fade in after a certain amount of time?
I found the following post, where the author had a similar request, that a question appears after showing a video:
I implemented this (especially the response with the adjusted version for the slider) and it works just fine. However, what I would like to implement is, that the question fades in instead of just all of a sudden appearing.
I’m using the following code from the question answer at the moment as I also have two questions with a slider:
var q="#"+this.questionId;
jQuery(q).css("content-visibility","hidden");
setTimeout(function () {
jQuery(q).css("content-visibility","visible");
},5000);
How could I adjust this code, that it fades in a bit softer than just popping up? I found something online with a “fade.In(‘slow’)” attribute - but I don’t really know how to implement it.
Thank you in advance!