I now have a GIF graphic inserted. It plays once and stops static. How can I make it replay or reload on click?
The html code looks like this now.
Thank you.
I now have a GIF graphic inserted. It plays once and stops static. How can I make it replay or reload on click?
The html code looks like this now.
Hi there, if you still need, I found a codepen that does what you are describing. It uses a "Restart Gif" button that will restart the gif when clicked. There are other implementations that you might check out as well, but I thought the codepen one did the trick.
First, add the gif and the restart button to the Question Text using the Rich Content Editor's HTML/Source View, updating the URL of the gif as needed:
Click to write the question text.
Then, add the below to the OnReady of the question's JavaScript:
jQuery('#targetA').click(function() {
var $element = jQuery('#gif');
var src = $element.attr('src');
$element.attr('src', '#');
$element.removeClass('hidden');
$element.css('opacity');
setTimeout(function() {
$element.attr('src', src);
}, 0);
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.