Wikipedia para siempre
ShareCode
Permalink: http://www.treeweb.es/u/974/ 01/02/2011

ShareCode

1 Puedo confirmar y confirmo que internet explorer es una puta mierda.2 3 <div data-component="box"></div>4 <div data-component="box"></div>5 <div data-component="box"></div>6 <div data-component="box"></div>7 <div data-component="box"></div>8 <div data-component="box"></div>9 <div data-component="box"></div>10 <div data-component="box"></div>11 <div data-component="box"></div>12 <div data-component="box"></div>13 <div data-component="box"></div>14 15 16 17 18 <script type="text/javascript">19 20 var Box = function(dom) {21  this.dom = dom;22 };23 24 Box.prototype.start = function() {25  this.dom.style.left = 1000*Math.random() + 'px';26  this.dom.style.top = 1000*Math.random() + 'px';27  28  var that = this;29  setTimeout(function() {30  that.start(); 31  }, 1000);32 };33 34 35 36 37 var boxes = document.querySelectorAll('[data-component="box"]');38 39 for (var i=0; i<boxes.length; i++) {40  var box = new Box(boxes[i]);41  box.start();42 }43 44 45 46 47 48 </script>
Enlace
El enlace para compartir es: