Skip to content

Instantly share code, notes, and snippets.

@manuelbordallo
Last active September 24, 2015 08:59
Show Gist options
  • Select an option

  • Save manuelbordallo/3baa60f3e1122de85b56 to your computer and use it in GitHub Desktop.

Select an option

Save manuelbordallo/3baa60f3e1122de85b56 to your computer and use it in GitHub Desktop.
OyRzEP
<img src="https://photos-3.dropbox.com/t/2/AAAawkClttWKxAXgBFIVXiGRcZMm15O_9odka9Ky98FjBA/12/313120/png/32x32/1/_/1/2/logo.png/EOecOBiZhM34AyACKAI/MaKv7-eiK2Re466Tm6wkI2V9tIChgHt42KyYNigh6B0?size=1280x960&size_mode=2" class="logo">
function minimize() {
var id = $('.logo');
alert(id);
}
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
body {
text-align: center;
}
.logo {
transition: all 1s ease-in-out;
}
.logo:hover {
transform: translate(-35%, -40%) scale(0.3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment