博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
鼠标悬停在图片上出现蒙层的方法
阅读量:5328 次
发布时间:2019-06-14

本文共 2625 字,大约阅读时间需要 8 分钟。

关于蒙层实现的不同方法,我们可以用CSS和jQuery两种方法

Jquery方法

首先看一下HTML代码:

<div class="list_images"> <div class="content"> <img src="img/孤独症儿童行为检查量表(ABC) @2x.png" width="100%" /> <h3>孤独症儿童行为检查量表(ABC)</h3> <p>已有777人参与</p> <div class="mask"> <p class="mask_title">孤独症儿童行为检查量表(ABC)</p> <p class="mask_btn">立即参与</p> </div> </div> </div>

css代码:

.list_images { position: relative; width: 1000px; margin: 0 auto; text-align: center; } .content { margin-left: 26px; margin-top:18px; margin-bottom: 1%; height: 200px; width: 30%; position: relative; cursor: pointer; display: inline-block; box-shadow: 0px 3px 3px 0px rgb(0,0,0,0.05); } h3 { position: relative; color: #484848; font-size: 16px; font-weight: bold; left: 0px; } p { position: relative; left: -10px; color: #aaaaaa; font-size: 12px; } .mask { height: 100%; width: 100%; position: absolute; top: 0px; display: none; background-color: rgba(0, 0, 0, 0.5); color: #EEEEEE; font-size: 20px; } .mask_title { font-size:16px; margin-top: 20%; text-align: center; } .mask_btn { display: inline-block; text-decoration: none; color: #eee; width: 100px; height: 28px; line-height: 28px; font-size: 14px; text-align: center; border-radius: 14px; background: #5691fe; list-style: none; cursor: pointer; margin-top: 20px; }

jquery代码:

<script type="text/javascript"> $(' .content').mouseenter(function(){ $(this).find('.mask').show(); }); $('.content').mouseleave(function(){ $(this).find('.mask').hide(); }); </script>

Css方法:

只需要在css样式中再添加.content:hover .mask {display: block;}
Css 代码:

.list_images { position: relative; width: 1000px; margin: 0 auto; text-align: center; } .content { margin-left: 26px; margin-top:18px; margin-bottom: 1%; height: 200px; width: 30%; position: relative; cursor: pointer; display: inline-block; box-shadow: 0px 3px 3px 0px rgb(0,0,0,0.05); } h3 { position: relative; color: #484848; font-size: 16px; font-weight: bold; left: 0px; } p { position: relative; left: -10px; color: #aaaaaa; font-size: 12px; } .mask { height: 100%; width: 100%; position: absolute; top: 0px; display: none; background-color: rgba(0, 0, 0, 0.5); color: #EEEEEE; font-size: 20px; } .mask_title { font-size:16px; margin-top: 20%; text-align: center; } .mask_btn { display: inline-block; text-decoration: none; color: #eee; width: 100px; height: 28px; line-height: 28px; font-size: 14px; text-align: center; border-radius: 14px; background: #5691fe; list-style: none; cursor: pointer; margin-top: 20px; } .content:hover .mask {display: block;}

效果图

1638097-20190428105930499-770507610.png

----------------------------------------------------------------------------------------------------
1638097-20190428110006037-566627623.png

转载于:https://www.cnblogs.com/hellogmy/p/10782569.html

你可能感兴趣的文章
安装Endnote X6,但Word插件显示的总是Endnote Web"解决办法
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
大数据学习
查看>>
简单工厂模式
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
Objective-C 【关于导入类(@class 和 #import的区别)】
查看>>
倍福TwinCAT(贝福Beckhoff)常见问题(FAQ)-点击运行按钮进入到运行状态报错Error starting TwinCAT System怎么办 AdsWarning1823怎么办...
查看>>
【转】javascript 中的很多有用的东西
查看>>
Android 监听返回键、HOME键
查看>>
Android ContentProvider的实现
查看>>
sqlserver 各种判断是否存在(表名、函数、存储过程等)
查看>>
给C#学习者的建议 - CLR Via C# 读后感
查看>>
Recover Binary Search Tree
查看>>
Java 实践:生产者与消费者
查看>>
[转]IOCP--Socket IO模型终结篇
查看>>
各种正则验证
查看>>
观察者模式(Observer)
查看>>
python中numpy.r_和numpy.c_
查看>>
egret3D与2D混合开发,画布尺寸不一致的问题
查看>>
freebsd 实现 tab 命令 补全 命令 提示
查看>>