Jump to content

Recommended Posts

Hi,

 

How can I put the script more random, not just a count of 5 out of 5 ..

I wanted, for example, a count of 5 numbers after 7, after 3, after 6 or 15 etc .... a more random count and not only 5 in 5 or 2 in 2 etc. 


<script>
      function handleTickInit(tick) {
      // update the value every 5 seconds
      var interval = Tick.helper.duration(5, 'seconds');
      // value to add each interval
      var valuePerInterval = 5;
      // offset is a fixed date in the past
      var offset = Tick.helper.date('2017-03-01');
      // uncomment lines below (and comment line above) if you want offset be set to the first time the user visited the page
      // var offset = parseInt(localStorage.getItem('tick-value-counter-offset') || Date.now(), 10);
      // localStorage.setItem('tick-value-counter-offset', offset);
      // start updating the counter each second
      Tick.helper.interval(function(){
        // current time in milliseconds
        var now = Date.now();
        // difference with offset time in milliseconds
        var diff = now - offset;
        // total time since offset divide by interval gives us the amount of loops since offset
        var loops = diff / interval;
        // this will make sure we only count completed loops.
        loops = Math.floor(loops);
        // multiply that by the value per interval and you have your final value
        tick.value = loops * valuePerInterval;
      }, 1000);
    }
    </script>

 

I already used this code, but it did not work very well   


var x = Math.floor((Math.random() * 15) + 1);

I wanted to deploy in my script, something like this

 


 

 

I do not know if they can help me.

 

 

Best Regards

 

Link to comment
https://forums.phpfreaks.com/topic/305121-more-random-count/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.