How to make images displayed with a certain frequency. for example, with a frequency of 60% of cases.
|
How to make images displayed with a certain frequency. for example, with a frequency of 60% of cases.
Source: https://ru.stackoverflow.com/questions/546298/
All Articles
if( rand(0,100) < 60 ) { show_image(); }
if( rand(0,100) < 60 ) { show_image(); }
- you about it? - PinkTux