欢迎您  本站地址:   jQuery鼠标滑过图片显示遮罩背景层代码-小库平台

小库平台

 找回密码
 立即注册
jQuery鼠标滑过图片显示遮罩背景层代码-小库平台

小库平台

 找回密码
 立即注册
上一主题 下一主题

jQuery鼠标滑过图片显示遮罩背景层代码

跳转到指定楼层
楼主
|只看大图 回帖奖励 |倒序浏览 |阅读模式

个人觉得比较好看的一款jQuery鼠标滑过图片显示遮罩背景层代码特效,基于jQuery和CSS3制作。

JS代码:
<scriptsrc="http://libs.useso.com/js/jquery/2.1.1/jquery.min.js"type="text/javascript"></script>
<script>window.jQuery||document.write('<scriptsrc="js/jquery-2.1.1.min.js"><\/script>')</script>
<scriptsrc="js/modernizr.js"></script>
<script>
$(document).ready(function(){
if(Modernizr.touch){
//showthecloseoverlaybutton
$(".close-overlay").removeClass("hidden");
//handletheaddingofhoverclasswhenclicked
$(".img").click(function(e){
if(!$(this).hasClass("hover")){
$(this).addClass("hover");
}
});
//handletheclosingoftheoverlay
$(".close-overlay").click(function(e){
e.preventDefault();
e.stopPropagation();
if($(this).closest(".img").hasClass("hover")){
$(this).closest(".img").removeClass("hover");
}
});
}else{
//handlethemouseenterfunctionality
$(".img").mouseenter(function(){
$(this).addClass("hover");
})
//handlethemouseleavefunctionality
.mouseleave(function(){
$(this).removeClass("hover");
});
}
});
</script>



下载
回复

使用道具 举报

小黑屋|小库平台

GMT+8, 2024-9-20 13:41 , Processed in 3.629772 second(s), 18 queries , Xcache On.

Powered by Discuz! 3.4

小库提示

扫描下方二维码,访问手机版。