商品名称jQuery实现鼠标滑过放大图片

鼠标图片  时间:2021-04-19  阅读:()

本特效效果模仿百度图片效果。效果图如下打开页面效果

鼠标放上去0.15秒放大的层从小到大展开

鼠标移开后弹出层消失

。页面代码如下

<!DOCTYPE htmlPUBLI C "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w 3.org/TR/xhtml1/DTD/xhtml1-transition al.dtd">

<HTML xmlns="http://w ww.w 3.org/1999/xhtml">

<HEAD>

<META c ontent="text/html; c harset=utf-8"http-equiv="Conte nt-Type">

<TITLE>demo</TITLE>

<SCRIPT language="JavaScript" type="text/javas cript" src="demo_files/jquery.js"></SCRIP T><STYLE>html,body,div,span,iframe,h 1,h2,h3,h4,h5,h6,p,a,font,img,strong,dl,dt,dd,ol,ul,li,field s et,form,label,legend{margin:0;padding:0;}a{ color:#fff; text-decoration:none;}a img{border:none;}li{ lis t-s tyle-typ e:none;}body{backg round:#000;color:#fff;font-size:12px; font:Arial ,Verda na,"宋体"}

.wrapper{overflow:hidden;width:1130px;margin:0 auto;}

.header{overflow:hidden;padding:20px 050px;}

.main{width:1000px;margin:0 auto 30px;overflow:hidde n;}

#detial{overflow:hidden;width:750px;paddi ng-top:20px;}

.shopPic{overflow:hidde n;w idth:720px; float:right;}

.shopPic a{float:left;display:inlin e-block;}

.detialItem{overflow:hidden;margin-bottom:5px;width:720px;}

.itemTop{ overflow:hidden; line-height:40px; border-bottom:1px solid #fff;margin-bottom:20px;}

.itemTop h2{float:left;margin-left:10px;}

.more{ float :right ;backg round:#fff; color :#333; displ ay:block;heigh t:20px; line-heigh t:20px;width:50px; text-align:cente r;margi n-top:12px;margi n-right :10px;font-famil y:'微软雅黑' ;}.more:hover{ text-dec oration:under line;}

.itemIfor{float:left;width:150px;float:left;margin-left:23px;}

.pic Title{ font-size:14px;font-weight:bold; c olor:#A0 BC 1 D; line-height:30px;padding:05px;}.itemIfor p{padding:05px; line-height:20px;}

.popup{width:300px;height:380px;background-c olor:#fff;border:solid 1 px#ccc;}

#tempdiv{overflow:hidden;display:none;posit ion:abs olute;}

</STYLE>

<META name="GENER ATOR"c ontent="MSHTM L 9.00.8112.16441">

</HEAD>

<BODY>

<div clas s="wrapper">

<div c las s="main">

<div id="detia l">

<div c las s="detialItem">

<div class ="itemT op"><h2>列表 1</h2><a href="#" class="more">More. .</a></div>

<div c las s="itemIfor">

<a href ="#"><img src ="demo_files/img3.jpg" width="150"

height="150" /></a>

<a href="#"class="picTi tle">商品名称</a>

<p>111.00</p>

</div>

<div c las s="itemI for">

<a href ="#"><img src ="demo_files/img6.jpg" width="150"height="150" /></a>

<a href="#"class="picTi tle">商品名称</a>

<p>222.00</p>

</div>

<div c las s="itemI for">

<a href ="#"><img src ="demo_files/img3.jpg" width="150"height="150" /></a>

<a href="#"class="picTi tle">商品名称</a>

<p>333.00</p>

</div>

<div c las s="itemI for">

<a href ="#"><img src ="demo_files/img6.jpg" width="150"height="150" /></a>

<a href="#"class="picTi tle">商品名称</a>

<p>123.00</p>

</div>

</div>

<div c las s="detialItem">

<div class ="itemT op"><h2>列表 2</h2><a href="#" class="more">More. .</a></div>

<div c las s="itemI for">

<a href ="#"><img src ="demo_files/img6.jpg" width="150"height="150" /></a>

<a href="#"class="picTi tle">商品名称</a>

<p>123.00</p>

</div>

<div c las s="itemIfor">

<a href ="#"><img src ="demo_files/img3.jpg" width="150"height="150" /></a>

<a href="#"class="picTi tle">商品名称</a>

<p>123.00</p>

</div>

<div c las s="itemI for">

<a href ="#"><img src ="demo_files/img6.jpg" width="150"height="150" /></a>

<a href="#"class="picTi tle">商品名称</a>

<p>123.00</p>

</div>

<div c las s="itemI for">

<a href ="#"><img src ="demo_files/img3.jpg" width="150"height="150" /></a>

<a href="#"class="picTi tle">商品名称</a>

<p>123.00</p>

</div>

</div>

</div>

</div>

</div>

<!--这个是弹出放大图片的模板-->

<div style="displ ay:none" id="templ ate">

<a href="Thref"><img src="Timg"width="150"heigh t="150"/></a>

<a href="Thref"class="picTitle">TprdName</a>

<p style="color:#000">Tprice</p>

</div>

<SCRIPT>var popupdiv={init:funct ion(){//初始化

$th is=th is;//保存本对象

$("#detia l .itemIfor").each(function(i){var children=$(this).children();var itemobj=new Object();itemo bj.href=$(child ren[0]).attr("href");//获取链接itemo bj.produ ctNam e=$(child ren[1]).text();//获取产品名称itemo bj.price =$(child ren[2]).text();//获取价格

$(child ren[0]).find("img").mouse enter (funct ion(){//给所有图片添加鼠标进入事件var templ ate=$("#templ ate").html();//获取模板

//替换模板内容template=$this.s etVa lue(template,/Thref/g,itemo bj.href);template=$this.s etValue(template,/TprdName/g,itemobj.productName);template=$this.s etValue(template,/Tprice/g,itemobj.pric e);template=$this.s etVa lue(template,/T img/g,$(this).attr("s rc"));var htmlobj=new Object();htmlobj.html=temp l ate;htmlo bj.offse t=$(this).posit ion();//获取图片精确位置htmlo bj.w idth =$(this).outer Width();//获取图片宽度htmlo bj.heigh t=$(this).outer Heigh t();//获取图片高度

$this.creat ePopu p(htmlo bj);//创建div

}).mouse leave (funct ion(){clear Timeo ut($this.popti mmer);});//鼠标移除图片时清除定时器 以避免鼠标移出了图片还弹出效果图

});

},

s etValue:function(template,reg,value){return template.replac e(reg,value);

},createPopup:function(opts){var div="<div id='tempdiv'><div clas s='popup'>"+opts.html+"</div><div>";if($("#temp d iv").html()!=nul l)

$("#tempdiv").remove();

$("body").appen d(div);

//设置定时器this.poptimmer=s etT imeout(func tion(){

$("#tempdiv").c s s({width:opts.width+"px",height:opts.height+"px",left:opts.offs et.left+"px",top:opts.offset.top+"px"}).show();var children=$("#tempdiv").children();

//计算放大图的实际大小var innerWidth=$(c hildren[0]).outerWidth();var innerHeight=$(children[0]).outerHeigh t();

//计算放大图的左顶点位置var diff=innerWidth-opts.w idth;var newTop=opts.offset.top-diff/2;var newLeft=opts.offset.left -diff/2;

$("#tempdiv").animate({w idth:inn erWidth+"p x",height:innerHeigh t+"px",left:newLe ft+"px",top:newTop+"px"

},{duration:150,s tep:func tion(){

//执行动画的时候每一步都改变图片大小

$(this).find("im g").attr({w idth:$(this).outerWidth(),h e ight:$(this).outerWidth()});

}

});//animate end

},500);//setTimeout end

$("#tempdiv").mous eleave(function(){

$(this).s top().html("").remove();

});

},popti mmer:null//定时器

}popupdiv.init();

</SCRIPT>

</BODY>

</HT ML>

图片和jq uery插件请放在demo_file文件夹中

pacificrack:超级秒杀,VPS低至$7.2/年,美国洛杉矶VPS,1Gbps带宽

pacificrack又追加了3款特价便宜vps搞促销,而且是直接7折优惠(一次性),低至年付7.2美元。这是本月第3波便宜vps了。熟悉pacificrack的知道机房是QN的洛杉矶,接入1Gbps带宽,KVM虚拟,纯SSD RAID10,自带一个IPv4。官方网站:https://pacificrack.com支持PayPal、支付宝等方式付款7折秒杀优惠码:R3UWUYF01T内存CPUSS...

TmhHost香港三网CN2 GIA月付45元起,美国CN2 GIA高防VPS季付99元起

TmhHost是一家国内正规公司,具备ISP\ICP等资质,主营国内外云服务器及独立服务器租用业务,目前,商家新上香港三网CN2 GIA线路VPS及国内镇江BGP高防云主机,其中香港三网CN2 GIA线路最低每月45元起;同时对美国洛杉矶CN2 GIA线路高防及普通VPS进行优惠促销,优惠后美国洛杉矶Cera机房CN2 GIA线路高防VPS季付99元起。香港CN2 GIA安畅机房,三网回程CN2 ...

无忧云( 9.9元/首月),河南洛阳BGP 2核 2G,大连BGP线路 20G高防 ,

无忧云怎么样?无忧云服务器好不好?无忧云值不值得购买?无忧云,无忧云是一家成立于2017年的老牌商家旗下的服务器销售品牌,现由深圳市云上无忧网络科技有限公司运营,是正规持证IDC/ISP/IRCS商家,自营有国内雅安高防、洛阳BGP企业线路、香港CN2线路、国外服务器产品等,非常适合需要稳定的线路的用户,如游戏、企业建站业务需求和各种负载较高的项目,同时还有自营的高性能、高配置的BGP线路高防物理...

鼠标图片为你推荐
处理器flash签约xpCTiosipad上网为什么我的ipad 显示无法连接到网络重庆电信宽带管家如何才能以正确的流程在重庆电信安装上宽带win7关闭135端口如何关闭135端口,关闭它有什么影响么?googleadsense我申请Google AdSense要怎样才能通过Google AdSense呀?google搜图google的直接搜索图片的功能为什么没了ipad无法加入网络为什么ipad无法加入网络?www.baidu.jpbaidu 百度
青岛虚拟主机 网站域名备案查询 新加坡服务器 美国主机论坛 谷歌香港 宕机监控 好看的桌面背景图片 网站被封 100m空间 lol台服官网 常州联通宽带 cloudlink 789 秒杀品 畅行云 申请免费空间 美国迈阿密 免费稳定空间 umax 免费主页空间 更多