bug-op-je-website
Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
<?/*voor syntax highlighting*/
function bug(chance,location) {
if(Math.random()<chance) {
document.getElementsByTagName('body')[0].innerHTML+='<img src="bug.gif" alt="" style="position:absolute;position:fixed;top:'+location[1]+'px;left:'+location[0]+'px;z-index:2000;"/>';
}
}
setTimeout('bug(0.1,['+parseInt(Math.random()*1200)+','+parseInt(Math.random()*600)+'])',parseInt(Math.random()*10000));
/*voor syntax highlighting*/?>
function bug(chance,location) {
if(Math.random()<chance) {
document.getElementsByTagName('body')[0].innerHTML+='<img src="bug.gif" alt="" style="position:absolute;position:fixed;top:'+location[1]+'px;left:'+location[0]+'px;z-index:2000;"/>';
}
}
setTimeout('bug(0.1,['+parseInt(Math.random()*1200)+','+parseInt(Math.random()*600)+'])',parseInt(Math.random()*10000));
/*voor syntax highlighting*/?>