Sublime Text
<!DOCTYPE html> <html> <head> <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.0.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("div").animate({width:'+=400px',height:'-=150px'},2000); }) }) </script> <style type="text/css"> div{ height:200px; width:100px; background-color:green; } </style> </head> <body> <button>Click vào đây</button> <hr> <div></div> </body> </html>
<!DOCTYPE html> <html> <head> <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.0.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("div").animate({width:'+=400px',height:'-=150px'},2000); }) }) </script> <style type="text/css"> div{ height:200px; width:100px; background-color:green; } </style> </head> <body> <button>Click vào đây</button> <hr> <div></div> </body> </html>