跟老师写的一样怎么没有效果
<script src="jquery-3.1.1.slim.min.js"></script>
<script>
$(function(){
$('a').hover{
function(){
$(this).animate({"width":"160px"},200);
}
function(){
$(this).animate({"width":"120px"},200);
}
}
})
</script>