如何实现鼠标悬停图片放大的效果

两种方式:



1.css实现鼠标悬浮图片放大

img {
    width: 100%;
    /* height: auto; */
    transform: scale(1);
    transition: transform 1s ease 0s;
}

img:hover {
    transform: scale(1.05);
}

2.js实现鼠标悬浮图片放大

你可能感兴趣的:(css,html,javascript)