jQuery css3鼠标悬停图片显示遮罩层动画特效
jQuery css3鼠标悬停图片显示遮罩层动画特效
效果体验:http://hovertree.com/texiao/jquery/39/
效果图:
源码下载:http://hovertree.com/h/bjaf/q9ii3dfq.htm
代码如下:
<!doctype html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>jQuery炫酷鼠标滑过图片显示遮罩层特效 - 何问起</title><base target="_blank" /> <!--可无视--> <link rel="stylesheet" type="text/css" href="http://hovertree.com/texiao/jquery/39/css/normalize.css" /> <link rel="stylesheet" type="text/css" href="http://hovertree.com/texiao/jquery/39/css/default.css"> <link rel="stylesheet" href="http://hovertree.com/texiao/jquery/39/css/base.css" /> <!--必要样式--> <link rel="stylesheet" href="http://hovertree.com/texiao/jquery/39/css/style.css" /> <!--[if IE]> <script src="http://hovertree.com/texiao/html5/4/html5shiv.min.js"></script> <![endif]--> </head> <body> <div id="main"> <div class="container"> <nav> <ul> <li><a target="_self" href="http://hovertree.com/texiao/jquery/39/index.html" class="active">Slide In Bottom</a></li> <li><a target="_self" href="http://hovertree.com/texiao/jquery/39/index2.html">Slide In Top</a></li> <li><a target="_self" href="http://hovertree.com/texiao/jquery/39/index3.html">Slide In Left</a></li> <li><a target="_self" href="http://hovertree.com/texiao/jquery/39/index4.html">Slide In Right</a></li> <li><a target="_self" href="http://hovertree.com/texiao/jquery/39/index5.html">Icon Border Animate</a></li> <li><a target="_self" href="http://hovertree.com/texiao/jquery/39/index6.html">Icon Slide In</a></li> </ul> </nav><!-- /nav --> <div id="effect-1" class="effects clearfix"> <div class="img"> <img src="http://hovertree.com/texiao/jquery/39/img/jpg/1.jpg" alt=""> <div class="overlay"> <a href="http://hovertree.com/" class="expand">+</a> <!-- <a class="close-overlay hidden">x</a> --> </div> </div> <div class="img"> <img src="http://hovertree.com/texiao/jquery/39/img/jpg/2.jpg" alt=""> <div class="overlay"> <a href="http://hovertree.com/" class="expand">+</a> <a class="close-overlay hidden">x</a> </div> </div> <div class="img"> <img src="http://hovertree.com/texiao/jquery/39/img/jpg/3.jpg" alt=""> <div class="overlay"> <a href="http://hovertree.com/" class="expand">+</a> <a class="close-overlay hidden">x</a> </div> </div> <div class="img"> <img src="http://hovertree.com/texiao/jquery/39/img/jpg/4.jpg" alt=""> <div class="overlay"> <a href="http://hovertree.com/" class="expand">+</a> <a class="close-overlay hidden">x</a> </div> </div> </div> </div><!-- /.container --> </div> <script type="text/javascript" src="http://hovertree.com/ziyuan/jquery/jquery-2.2.1.min.js"></script> <script type="text/javascript" src="http://hovertree.com/texiao/jquery/39/js/modernizr.js"></script> <script type="text/javascript"> $(document).ready(function(){ if (Modernizr.touch) { // show the close overlay button $(".close-overlay").removeClass("hidden"); // handle the adding of hover class when clicked $(".img").click(function(e){ if (!$(this).hasClass("hover")) { $(this).addClass("hover"); } }); // handle the closing of the overlay $(".close-overlay").click(function(e){ e.preventDefault(); e.stopPropagation(); if ($(this).closest(".img").hasClass("hover")) { $(this).closest(".img").removeClass("hover"); } }); } else { // handle the mouseenter functionality $(".img").mouseenter(function(){ $(this).addClass("hover"); }) // handle the mouseleave functionality .mouseleave(function(){ $(this).removeClass("hover"); }); } }); </script> </body> </html>
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 使用C#创建一个MCP客户端
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· ollama系列1:轻松3步本地部署deepseek,普通电脑可用
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 按钮权限的设计及实现