Skip to content

Instantly share code, notes, and snippets.

@dodocinho
Last active November 25, 2016 23:24
Show Gist options
  • Save dodocinho/b9cae4208039b5c9a23d1269c54d6613 to your computer and use it in GitHub Desktop.
Save dodocinho/b9cae4208039b5c9a23d1269c54d6613 to your computer and use it in GitHub Desktop.
$( document ).ready(function() {
$('img.comentario').click(function() {
$(".envia-comentario").toggle();
});
$('img.avatar').click(function() {
$('img.avatar').animate({
"padding-left": "+=50px"
}, "slow");
});
$('h1').click(function() {
$('img.avatar').animate({
"padding-left": "-=50px"
}, "slow");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment