鼠标经过图片 图片放大缩小

当鼠标经过img时,图片发生的缩放写法:

#Images img{
        transition: all 0.6s;
        cursor: pointer;
        position:relative
    }
    #Images img:hover{
        transform: scale(2.4);
        z-index:999
    }

 

你可能感兴趣的:(css)