Created
September 15, 2014 23:43
-
-
Save Microsofttechies/472c9086c0941901f8ad to your computer and use it in GitHub Desktop.
jQuery animate right to left
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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>slide demo</title> | |
| <link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css"> | |
| <style> | |
| #toggle { | |
| width: 900px; | |
| height: 30px; | |
| background: #ccc; | |
| } | |
| </style> | |
| <script src="//code.jquery.com/jquery-1.10.2.js"></script> | |
| <script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script> | |
| </head> | |
| <body> | |
| <p>Click anywhere to toggle the box.</p> | |
| <div id="toggle"> | |
| <div>Hello</div> | |
| </div> | |
| <script> | |
| $("#toggle").click((function () { | |
| return function () { | |
| $(this).animate({ | |
| width: "20px" | |
| }, 10); | |
| } | |
| })()); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment