Last active
September 24, 2015 08:59
-
-
Save manuelbordallo/3baa60f3e1122de85b56 to your computer and use it in GitHub Desktop.
OyRzEP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function minimize() { | |
| var id = $('.logo'); | |
| alert(id); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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