码迷,mamicode.com
首页 > 其他好文 > 详细

鼠标划上图片放大

时间:2016-05-13 07:58:36      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

//大图
        $(".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);}

  

鼠标划上图片放大

标签:

原文地址:http://www.cnblogs.com/mbyund/p/5484827.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!