自定义动画animate()
$("#ani").click(function () {
$("#ani").animate({
width:"500px",
left:"500px"
})
})
animate()参数是一个对象,不能直接改变颜色,改变颜色需要引入插件
给ani添加点击事件,改变ani的width属性值为500px,left属性值为500px
$("#ani").click(function () {
$("#ani").animate({
width:"500px",
left:"500px"
})
})