[READ-ONLY] Mirror of https://github.com/probablykasper/playground. playground.kasper.space
0

Configure Feed

Select the types of activity you want to include in your feed.

playground / jquery3 / main.js
145 B 7 lines
1$("document").ready(function() { 2 3 $("img").delay(500).fadeOut(300, function() { 4 $(this).attr("src", "resources/1.png").fadeIn(500); 5 }); 6 7});