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:'200px', height:'200px', top:'200px', left:'150px', opacity:'0.3' },3000); }) }) </script> <style type="text/css"> div{ height:50px; width:50px; background-color:green; position: relative; } </style> </head> <body> <button>Click để xem hiệu ứng động</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:'200px', height:'200px', top:'200px', left:'150px', opacity:'0.3' },3000); }) }) </script> <style type="text/css"> div{ height:50px; width:50px; background-color:green; position: relative; } </style> </head> <body> <button>Click để xem hiệu ứng động</button> <hr> <div></div> </body> </html>