• Resolved alexteleportez

    (@alexteleportez)


    Is there a plugin to make a timer for appearing a button or photo?
    I mean, you enter on a page and after like 60 seconds a button appears.
    Also, if it includes a timer for a text or a photo would be great.

Viewing 3 replies - 1 through 3 (of 3 total)
  • some jQuery

    $(function(){
    	setTimeout(function(){ 
    		$('.hidden_until_shown').fadeIn();
    	}, 60000);
    }

    re: https://www.w3schools.com/jsref/met_win_settimeout.asp

    some CSS
    .hidden_until_shown { display: none; }

    some HTML

    <button class="hidden_until_shown">Button text</button>
    
    <img src="" class="hidden_until_shown" />
    
    etc...
    Thread Starter alexteleportez

    (@alexteleportez)

    Thank you man, I really appreciate that.

    Yes there are a lot of site who are using timer plugin. I am also looking for the timer plugin. This site: https://www.mobapks.com/ is using the timer plugin and i just love it. This plugins create dynamic urls for download pages. and amazing thing about this plugin is that it only creates download url at run time. So google does not index these URL’s. So if any one know about this sites’s plugin then please share with me Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Plugin timer for appearing a button’ is closed to new replies.