css3鼠标移上图片放大效果

原创2018-12-11 02:45:49107
摘要:html代码<div>     <img src="static/images/0.jpg" alt="" width="100"> </div>css代码<style type="text/css"

html代码

<div>
    <img src="static/images/0.jpg" alt="" width="100">
</div>

css代码

<style type="text/css">
    div{width: 500px;margin:100px auto;}
    img{
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    img:hover{
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
    }
</style>

效果图

QQ图片20181114103819.png

批改老师:韦小宝批改时间:2018-12-11 09:12:21
老师总结:这种效果在现在的企业站中使用的很多!课后多练习是很重要的哦!

发布手记

热门词条