鼠标经过图片时放大显示,淘宝UED官方网站就有这个效果,很多网站都用这种图片放大预览特效。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>淘宝网UED相册图片放大展示特效_武鸣人</title> <script src="/img/jquery_wuming_ren.js"></script> <style> body { font-size:12px; padding:0} </style> <script language="javascript"> pic={ href:"/img/20240305_www_wuming_ren_24.jpg", boxSize:250, width:1330, height:2128, creatImg:function(id){//创建图片 var width = $("#"+id).css("width"); $("#"+id).append("<img src='"+this.href+"' style='width:"+width+"'/>"); $("#"+id).append("<div id='bigImg'></div>"); var that = this; $("#"+id).mousemove(function(e){ var x = e.pageX-$(this).offset().left; var y = e.pageY-$(this).offset().top; if((x<parseInt(width) && x>0) && (y<that.height/that.multiple() && y>0)){ $("#bigImg").fadeIn(200); that.creatBigImg(x,y); }else{ $("#bigImg").fadeOut(200); } }); //武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) }, //武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) multiple:function(id){//和实际图片的倍数关系 return this.width/parseInt($("#www_wuming_ren").css("width")); }, bigBoxPost:function(x,y){//大图的坐标 return [x-this.boxSize/2,y-this.boxSize/2]; }, bigLoadPost:function(x,y){//大图的坐标 return [-(x*this.multiple()-this.boxSize/2),-(y*this.multiple()-this.boxSize/2)]; }, creatBigImg:function(x,y){ var that = this; $("#bigImg").css({ width:that.boxSize, height:that.boxSize, border:"#FFF 5px solid", position:"absolute", top:that.bigBoxPost(x,y)[1], left:that.bigBoxPost(x,y)[0], background:"url("+that.href+") no-repeat", backgroundPosition:that.bigLoadPost(x,y)[0]+"px "+that.bigLoadPost(x,y)[1]+"px" }) } }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) $(document).ready(function(){ pic.creatImg("www_wuming_ren"); })//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> </head> <body > <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> 需要加载js文件,请刷新页面后看效果! <div id="www_wuming_ren" style=" width:500px; position: relative; margin:100px;"></div> </body > </html>
本文来自武鸣人网站,转载请注明出处