当前位置: 移动技术网 > IT编程>网页制作>CSS > css3实现鼠标移入图片动效

css3实现鼠标移入图片动效

2020年03月29日  | 移动技术网IT编程  | 我要评论

花都房屋出租,加勒比海盗4字幕下载,全套美女化妆

按照国际惯例先放效果图

贴代码:

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>test</title>
    <style>
        .container{
            width:1200px;
            height:auto;
        }
        .container .img-box{
            overflow:hidden;
            position: relative;
            width:240px;
            height:135px;
            display: inline-block;
            cursor:pointer;

        }
        .container img{
            position: absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
            transition:all .5s;
        }        
        .container .overlay{
            position: absolute;
            width:100%;
            height:100%;
            top:0;
            left:0;
            z-index:2;
            line-height:135px;
            text-align: center;
            background-color: rgba(0,0,0,.5);
            opacity: 0;
        }
        .container .title{
            color:#fff;
        }
        .img-box:hover img{
            transform:scale(1.2);
        }
        .img-box:hover .overlay{
            opacity: 1;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="img-box">            
            <img src="images/1.jpg">
            <div class="overlay">
                <div class="title">图片标题1</div>
            </div>
        </div>
        <div class="img-box">            
            <img src="images/2.jpg">
            <div class="overlay">
                <div class="title">图片标题2</div>
            </div>
        </div>
    </div>
</body>
</html>

 

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网