jQuery

jquery的选择器:

其中较为详细的请参考:http://www.imooc.com/learn/418

 

常见的DOM事件:

 

 

<script>
$(function(){
  $("#move a").mouseenter(function(){
    $(this).find('i').animate({top:"-25x",opacity:"0"},300,function(){
      $(this).css({top:"30px"});
      $(this).animate({top:"20px",opacity:"1"},200)
   })
  })
})
</script>
posted @ 2017-02-11 10:27  fireporsche  阅读(116)  评论(0编辑  收藏  举报