Skip to content

Instantly share code, notes, and snippets.

View marcinlawnik's full-sized avatar

Marcin Ławniczak marcinlawnik

View GitHub Profile
@marcinlawnik
marcinlawnik / gist:7324695
Created November 5, 2013 19:27
list of video game soundtracks from reddit to download
http://youtu.be/mODIsvf9Huc
http://youtu.be/GBpzVD4GZ8E
http://youtu.be/uH1wfrOcvHg
http://youtu.be/aFeL7kTw2CU
http://youtu.be/Lsj0mY13t9s
http://youtu.be/RJ3yIZ3_cxk
http://youtu.be/ROKcr2OTgws
http://youtu.be/xSfD4ClDBCk
http://youtu.be/ypNgvc6c6Cc
http://youtu.be/vGjwXI0n5-I
$('#my_id').delay(2000).fadeOut(2000);
<div id="my_id">
</div>
@marcinlawnik
marcinlawnik / gist:940641
Created April 25, 2011 15:07
fading out animation delayed
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script type="text/javascript">
$('#myDiv').delay(800).fadeOut(1000);
</script>
<div id="myDiv">
some text here
</div>