WTF!?
У меня вот только что проскочила. Спросонья упал со стула головой об стену T_T
Полез смотреть код, если кому надо подробности, они под спойлером.
Подробности
Судя по коду, она появляется если,
- случайное число от 0f до 1f умноженное 10000 меньше 5;
- Код: Выделить всё
if(Math.round(Math.random()*10000)>5)
return;
- если соблюден первый пункт и с момента открытия страницы прошло от 30 до 90 секунд.
- Код: Выделить всё
window.setTimeout(function(){
...
}, Math.round(Math.random()*60+30)*1000);
Вся функция:
- Код: Выделить всё
function showCLB() {
if(Math.round(Math.random()*10000)>5)
return;
var e = document.createElement('img');
e.setAttribute('src', 'http://files.everypony.ru/ponies/psb.png');
e.setAttribute('style', 'display:none;');
document.getElementsByTagName('body')[0].appendChild(e);
window.setTimeout(function(){
e.setAttribute('style', 'display:block;position:fixed;left:0px;bottom:0px;max-width:100%;');
window.setTimeout(function(){
document.getElementsByTagName('body')[0].removeChild(e);
}, 1000);
}, Math.round(Math.random()*60+30)*1000);
}