[原]jQuery不错的过渡效果

/*加强用户体验,给切换的时候添加过渡效果 20100301*/
       $(".detail li").hover(
      function () {
           $(this).css("background-color","#e6e7e8");
        },
        function () {
           $(this).css("background-color","#d2dfec");
        }
       );
作者:mhfcr 发表于2014/1/22 15:06:54 原文链接
阅读:49 评论:0 查看评论
原文地址:https://www.cnblogs.com/crmhf/p/3823255.html