<input type="text">
<button>btn</button>
<div></div>
<script>
// animate 动画效果
$("button").click(function(){
$("div").animate({width:"200px"},1000)
})
$("input").focus(function(){
$("input").animate({width:"260px"})
}).blur(function(){
$("input").animate({width:"200px"})
})
</script>