Lockergnome goofy faces

by 13. September 2010 22:32

So I was on Chris Pirillo's site today and whipped up a goofy script. Enjoy.

<div id="divContainer"></div>
<script type="text/javascript">
var img = document.createElement('img');
var ct = 1;
var div = document.getElementById('divContainer');
setInterval("ChangePic()",100);
div.appendChild(img);

function ChangePic()
{
img.setAttribute('src', 'http://chris.pirillo.com/images/heads/large/' + ct + '.png');
ct = ct >= 28 ? 1 : ct+1;
}
</script>

 

Tags:

Comments

Add comment


(Will show your Gravatar icon)

  Country flag

biuquote
  • Comment
  • Preview
Loading




RecentComments

Comment RSS