鼠标划上图片放大

//大图
        $(".li_left img").on({
            "mouseover":function(){
                if(!$(this).is(":animated")){
                    $(this).animate({
                        width: '382px',
                        height: '272px',
                        marginLeft: '-25px',
                        marginTop: '-25px'
                    }, 400 );
                }
            },
            "mouseout":function(){
                    $(this).animate({
                        marginLeft: 0,
                        marginTop: 0,
                        width: '332px',
                        height: '222px'
                    }, 0 );
            }
        });


图片放大:
.CardLists .List .img img    {width: 100%;transition: all 0.8s;}
.CardLists .List:hover .img img {transform:scale(1.2);}

  

posted @ 2016-05-12 10:56  xiangcy  阅读(292)  评论(0)    收藏  举报