美文网首页
图片放大

图片放大

作者: 秀萝卜 | 来源:发表于2021-10-20 11:57 被阅读0次
<html>
<div class="myimg">
    <img class="img" src="https://img0.baidu.com/it/u=1231729851,1892679560&amp;fm=26&amp;fmt=auto" />
</div>
<style>
    .myimg{
        margin:100px;
        background:#eee;
        width:300px;
        height:200px;
        overflow: hidden;
    }
    .img{
        width:300px;
        height:200px;
        transition: all 0.5s ease-out;
    }
    .img:hover {
        cursor: pointer;
        transform: translateZ(0) scale(1.2);
        /* transition: transform 1s ease-out; */
    }
</style>
</html>

相关文章

网友评论

      本文标题:图片放大

      本文链接:https://www.haomeiwen.com/subject/bjdtaltx.html