栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > Web开发 > Html/CSS > CSS教程

纯CSS实现鼠标放上滑动出半透明效果的文字说明(新手小白 必看)

CSS教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

效果如下:


实例1

实例1


实例2

实例2以实例1【婚礼策划】为例

HTML:


   婚礼策划
   
状态:待完成
执行者:张三
截止日期:2020/03/15

CSS:


.itemInWorks{
    width: 180px;
    height: 130px;
    border-radius:5px;
    font-size: 18px;
    font-weight: 600;
    color: dimgrey;
    text-align: center;
    line-height: 50px;
    background: url('image/works_image/4.jpg');
    background-repeat: no-repeat;
    background-size: 180px 130px;
    box-shadow: #909090 0px 0px 10px;
    
    overflow: hidden;
    position: relative;
}

.itemInWorks .mask{
    height:80px;
    width:172px;
    color: #f5f1e5;
    line-height: 23px;
    text-align: left;
    padding-left: 8px;
    border-radius:2px 2px 5px 5px;
    font-size: 14px;
    font-weight: 300;
    
    position: absolute;
    top:130px;
    background-color:rgba(0,0,0,0.5);
    transition:top 0.5s ease-in-out;
}
.itemInWorks:hover .mask{
    top:50px ;
}

全部代码:




    
    Title


    .itemInWorks{
 width: 180px;
 height: 130px;
 border-radius:5px;
 font-size: 18px;
 font-weight: 600;
 color: dimgrey;
 text-align: center;
 line-height: 50px;
 background: url('image/works_image/4.jpg');
 background-repeat: no-repeat;
 background-size: 180px 130px;
 box-shadow: #909090 0px 0px 10px;
 overflow: hidden;
 position: relative;
    }
    
    .itemInWorks .mask{
 height:80px;
 width:172px;
 color: #f5f1e5;
 line-height: 23px;
 text-align: left;
 padding-left: 8px;
 border-radius:2px 2px 5px 5px;
 font-size: 14px;
 font-weight: 300;
 position: absolute;
 top:130px;
 background-color:rgba(0,0,0,0.5);
 transition:top 0.5s ease-in-out;
    }
    .itemInWorks:hover .mask{
 top:50px ;
    }



    婚礼策划
    
 状态:待完成
执行者:张三
截止日期:2020/03/15

总结

以上所述是小编给大家介绍的 纯CSS实现鼠标放上滑动出半透明效果的文字说明(新手小白 必看),希望对大家有所帮助!

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/214889.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号