Показать сообщение отдельно
  #34 (permalink)  
Старый 02.02.2012, 22:37
Аватар для Aetae
Тлен
Отправить личное сообщение для Aetae Посмотреть профиль Найти все сообщения от Aetae
 
Регистрация: 02.01.2010
Сообщений: 6,577

<!DOCTYPE HTML>
<html>
<body>   
<style>
#hell{width:765px}
#hell div{float:left;width:1px;height:1px}
</style>
<input type="button" value="stop">
<div id="hell"></div>
  <script>
(function(){

var d = document.getElementById('hell') ,
    blocks = 0, timer;
    
document.getElementsByTagName('input')[0].onclick = function(){
  clearTimeout(timer);
  alert(blocks+' blocks')
};

(function(){
  var i=765, r=0, g=0, b=0;
  blocks += i;
  while(i--){
    d.appendChild( document.createElement('div') ).style.backgroundColor = 'rgb(' + (i%3?r:++r) + ',' + (i%3-1?g:++g) + ',' + (i%3-2?b:++b) + ')';
  }
  timer = setTimeout( arguments.callee , 100 )
})()

})()
</script>
  
</body>
</html>

Протестируй свою тачку.))
__________________
29375, 35
Ответить с цитированием