css transition ease,css - css3 transition ease out - Stack Overflow

本文介绍了一种使用CSS实现的图片遮罩效果,当鼠标悬停在图片上时,遮罩会平滑显示;鼠标移开时,遮罩将缓慢消失而非立即隐藏。通过调整CSS属性,可以达到更佳的用户体验。

i create a mask for image. when i hover over mouse on image then the mask will show but when the mouse is out then it will suddenly disappear rather then slowly.i want something like This Effect. This is my Jsfiddle

my code is...

.top

{

margin-top: 200px;

}

.top div

{

padding:0px;

margin: 0px;

}

img

{

width: 100%;

height: 400px;

padding: 0px;

margin: 0px;

-webkit-transition: margin 1s ease;

-moz-transition: margin 1s ease;

-o-transition: margin 1s ease;

-ms-transition: margin 1s ease;

transition: margin 1s ease;

}

.blog-post:hover img

{

margin-left: 100px;

}

.blog-post

{

border: 1px solid #c0c0c0;

float: left;

overflow: hidden;

}

.mask

{

top: 0;

left:0;

padding: 0;

position: absolute;

display: inline-block;

overflow: hidden;

visibility: hidden;

width: 250px;

height: 100%;

border: 1px solid #ff1493;

-webkit-transition: all 0.5 ease-in-out;

-moz-transition: all 0.2s ease-in-out;

-o-transition: all 0.2s ease-in-out;

-ms-transition: all 0.2s ease-in-out;

transition: all 0.5s ease-in-out;

transform-origin: 0 0;

-webkit-transform: rotateY(-90deg);

-moz-transform: rotateY(-90deg);

transform: rotateY(-90deg);

-webkit-transition: -webkit-transform 0.4s, opacity 0.2s 0.4s;

-moz-transition: -moz-transform 0.4s, opacity 0.2s 0.4s;

transition: transform 0.4s, opacity 0.2s 0.4s;

background: #ff1493;

}

.mask h4

{

text-align: center;

}

.blog-post:hover .mask

{

visibility: visible;

-webkit-transform: rotateY(0deg);

-moz-transform: rotateY(0deg);

transform: rotateY(0deg);

-webkit-transition: -webkit-transform 1s, opacity 0.2s;

-moz-transition: -moz-transform 1s, opacity 1.2s;

transition: transform 1s, opacity 0.2s;

}

Post title

i want the when the mouse is out from image then it will slowly disappear rather then fast.

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值