1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<!doctype html> <head> <meta charset="utf-8"> <title>shake demo</title> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"> <style> #toggle { width: 45px; height: 45px; } </style> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> </head> <body> <img src="left.png" id="toggle"> <input type="button" id="submitboard"> <script> $("#submitboard").click(function() { $( "#toggle" ).effect( "shake", { times:5 }, 2600); }); </script> </body> </html> |
