1. <input type="text">
    2. <button>btn</button>
    3. <div></div>
    4. <script>
    5. // animate 动画效果
    6. $("button").click(function(){
    7. $("div").animate({width:"200px"},1000)
    8. })
    9. $("input").focus(function(){
    10. $("input").animate({width:"260px"})
    11. }).blur(function(){
    12. $("input").animate({width:"200px"})
    13. })
    14. </script>