Skip to content

Instantly share code, notes, and snippets.

@tantalor
Created January 21, 2011 03:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tantalor/789200 to your computer and use it in GitHub Desktop.
Save tantalor/789200 to your computer and use it in GitHub Desktop.
<div id="slideshow">
<img src="http://farm6.static.flickr.com/5243/5373962623_0e23ed169b_t.jpg">
<img src="http://farm6.static.flickr.com/5007/5374562138_30e01a767f_t.jpg" style="display:none">
<img src="http://farm6.static.flickr.com/5288/5374562162_d48ca16567_t.jpg" style="display:none">
<img src="http://farm6.static.flickr.com/5084/5374562208_3e1bbe58cc_t.jpg" style="display:none">
<img src="http://farm6.static.flickr.com/5086/5374562182_5ec5c14403_t.jpg" style="display:none">
</div>
<script type="text/javascript">
var ims = document.getElementById('slideshow').children;
var c = 0;
setInterval(function ()
{
ims[c%ims.length].style.display="None";
ims[++c%ims.length].style.display="";
}, 3000);
</script>
@jimmycuadra
Copy link

Mr. Tantalo, we'd like to extend an offer to you to join the YouTube team. Please reply at your earliest convenience.

@tantalor
Copy link
Author

My jaw about hit the floor when I read "there was only one full-time web developer". Then I remembered it was youtube.com.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment