码迷,mamicode.com
首页 > 其他好文 > 详细

蒙版图片和背景图法

时间:2016-03-22 00:47:46      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

 <!--img-->
<div class="fa1">
<div class="fat2"> <img src="../img/index1.jpg" /></div>
<div class="meb"></div>
</div>
<!--background-img-->
<div class="div1">
<div class="div2">fs</div>
</div>
<br/>

/*图片法*/
.meb{
width: 360px;
height: 480px;
outline: 1px solid grey;
background: rgba(0,0,0,.5);
position: absolute;
top: 0;
left: 0;

}
.fa1{
position: relative;
cursor: pointer;

}


.meb{
transition: all 2s linear;
}
.meb:hover{
width: 360px ;
height: 0;
}

.fat2 img{
transition: all 2s linear;
}
.fat2:hover img{
-webkit-transform: scale(2);
}

.meb img{
transition: all 2s linear;
}
.meb:hover img{
-webkit-transform: scale(2);
}

/*背景图法*/
.div1{
background-image:url("../img/index1.jpg");
width: 360px;
height: 480px;
outline: 1px solid pink;
}
.div2{
width: 360px;
height: 480px;
background: rgba(0,0,0,.5);
}
.div2:hover{

background-size: 600px 600px;
}

蒙版图片和背景图法

标签:

原文地址:http://www.cnblogs.com/ldcxj/p/5304362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!