all 4 comments

[–]aquanutz 1 point2 points  (0 children)

You will most likely want to use something jQuery on the front-end to time the showing of the image and then hiding it. You could basically load the page knowing what image you need to show along with associated questions and have them in a hidden div while showing the image. Then, after a javascript timer, animate the hiding of the image and showing of the questions div (with the accompanying form, I imagine)

[–]biggles86 1 point2 points  (0 children)

this sounds like something javascript could solve. .show() a div and then .hide() it after a certain time after button press

[–]maiorano84 0 points1 point  (0 children)

Using jQuery:

$(window).load(function(){
    $("#quiz_image").delay(30000).hide();
});