Skip to content
  • This project
    • Loading...
  • Sign in

Jeremy Groot / stellervista-Intranet

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • stellervista-Intranet
  • wp-content
  • themes
  • understrap-child
  • src
  • js
  • _contest_slider.js
  • Jeff Balicki's avatar
    slider · 677dd3e1 ...
    677dd3e1
    Signed-off-by: Jeff <jeff@gotenzing.com>
    Jeff Balicki committed 2023-02-27 20:48:33 -0500
_contest_slider.js 454 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
jQuery(document).ready(function($) {


    text_change();
    function text_change(){
       var words = [ 'Dance', 'Smile','Party','Sing',''];
        $.each(words, function( index, value ) {
            setTimeout( function(){ 
                $(".like-you strong").text(value);
                if( (words.length - 1) ==  index){
                 //   text_change();
                }
            }, index * 1000 );
           
        });
    }  

});