jquery仿京东商品页面
京东页面大家都很熟悉,进入商品页面把鼠标放在图片上旁边会出现一个放大的效果,接下来就带大家看看怎么实现的!!!!
仿京东商品页面的效果!!!
仿京东商品页面css的代码!!!
* { margin: 0; padding: 0; } .da { width: 360px; height: 418px; float: left; } .shang { width: 350px; height: 350px; border: 1px solid #ccc; margin: 10px 0 10px 10px; position: relative; } .yin { width: 150px; height: 150px; border: 1px solid #ccc; background: rgba(255,255,255,0.3); position: absolute; top: 0; left: 0; cursor: pointer; display: none; } .bao { width: 362px; height: 56px; } .tab { width: 320px; height: 56px; margin-left: 10px; overflow: hidden; } .Ul { width: 9999px; height: 56px; } .Ul li { width: 52px; height: 52px; float: left; border: 2px solid #ccc; margin-left: 8px; list-style: none; position: relative; text-align: center; } .li { width: 52px; height: 52px; border: 2px solid #FF7403; } .li img { display: block; position: absolute; top: 50%; left: 50%; margin-top: -26px; margin-left: -26px; } .zuo { display: block; width: 12px; height: 56px; background: url(../img/icon_clubs.gif) no-repeat; background-size: 180px 608px; background-position: -82px -462px; float: left; margin-left: 10px; } .you { display: block; width: 12px; height: 56px; background: url(../img/icon_clubs.gif) no-repeat; background-size: 180px 608px; background-position: -95px -462px; float: right; margin-top: -56px; } .xia { width: 360px; height: 418px; border: 1px solid #ccc; float: left; margin: 10px 0 0px 20px; overflow: hidden; display: none; } .lie { width: 1329px; height: 30px; margin-left: 10px; margin-top: 20px; border-bottom: 2px solid #BE0000; } .lie li { float: left; list-style: none; width: 80px; height: 28px; background: #fff; border-radius: 3px; border: 0; line-height: 30px; text-align: center; margin-right: 5px; border: 1px solid #BE0000; color: #c30; cursor: pointer; font-weight: bold; } .lie>ul .ll { width: 80px; height: 30px; background: #BE0000; border-radius: 3px; border: 0; line-height: 30px; text-align: center; color: #fff; cursor: pointer; } .nie { width: 1329px; height: 200px; margin-left: 10px; overflow: hidden; } .bao1 { width: 1329px; height: 500px; } .up { width: 1329px; height: 200px; } .up span { display: block; padding: 10px 0 0 10px; margin-bottom: 70px; } .up p { text-align: center; margin-top: 5px; } .down { width: 1329px; height: 300px; background: yellow; }
仿京东商品页面html的代码!!!
<html> <head></head> <body> <div> <div class="da "> <div class="shang"> <img src="img/b1.jpg" height="350" width="350" id="pian" /> <div class="yin"></div> </div> <div class="bao"> <span class="zuo"></span> <div class="tab"> <ul class="Ul"> <li><img src="img/b1.jpg" height="52" width="52" /></li> <li><img src="img/b2.jpg" height="52" width="52" /></li> <li><img src="img/b3.jpg" height="52" width="52" /></li> <li><img src="img/b1.jpg" height="52" width="52" /></li> <li><img src="img/b2.jpg" height="52" width="52" /></li> <li><img src="img/b3.jpg" height="52" width="52" /></li> <li><img src="img/b1.jpg" height="52" width="52" /></li> <li><img src="img/b2.jpg" height="52" width="52" /></li> </ul> </div> <span class="you"></span> </div> <div class="lie "> <ul> <li class="ll">图文介绍</li> <li>评论(1)</li> </ul> </div> <div class="nie"> <div class="bao1"> <div class="up"> <span>暂无好评!</span> <p>适用浏览器:IE8、360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗</p> <p>来源:师徒课堂</p> </div> <div class="down"> <img src="img/11.png" height="300" width="1329" /> </div> </div> </div> </div> <div class="xia"> <img src="img/b1.jpg" height="600" width="600" id="zhao" /> </div> </div> </body> </html>
仿京东商品页面jquery的代码!!!
$(function() { var $yin = $(".yin"); $(".Ul li img").mouseover(function() { $(this).parent().addClass("li").siblings().removeClass("li"); $("#pian").attr("src", $(this).attr("src")); $("#zhao").attr("src", $(this).attr("src")); }).mouseout(function() { $(this).parent().removeClass("li"); }); var l = $(".shang").eq(0).offset().left; var t = $(".shang").eq(0).offset().top; var width1 = $(".yin").outerWidth() / 2; var height1 = $(".yin").outerHeight() / 2; var maxL = $(".shang").width() - $yin.outerWidth(); var maxT = $(".shang").height() - $yin.outerHeight(); var bili = $("#zhao").width() / $("#pian").width(); $(".shang").mousemove(function(e) { var maskL = e.clientX - l - width1, maskT = e.clientY - t - height1; if (maskL < 0) { maskL = 0 }; if (maskT < 0) { maskT = 0 }; if (maskL > maxL) { maskL = maxL }; if (maskT > maxT) { maskT = maxT }; $yin.css({ "left": maskL, "top": maskT }); $(".xia").show(); $(".yin").show(); $("#zhao").css({ "margin-left": -maskL * bili, "margin-top": -maskT * bili }); }); $(".shang").mouseleave(function() { $(".xia").hide(); $(".yin").hide(); }); var marginLeft = 0; $(".you").click(function() { marginLeft = marginLeft - 64; if (marginLeft < -192) { marginLeft = -192 }; $(".tab ul").stop().animate({ "margin-left": marginLeft }, "fast"); }); $(".zuo").click(function() { marginLeft = marginLeft + 64; if (marginLeft > 0) { marginLeft = 0 }; $(".tab ul").stop().animate({ "margin-left": marginLeft }, "fast"); }); $(".lie li").click(function() { var index = $(this).index(); $(this).addClass("ll").siblings().removeClass("ll"); $(".bao1>div").eq(index).show().siblings().hide(); }); });
怎么样,当我做出来的时候感觉神清气爽!!!!!
以上是jquery仿京东商品页面代码分享的详细内容。更多信息请关注PHP中文网其他相关文章!

从C/C 转向JavaScript需要适应动态类型、垃圾回收和异步编程等特点。1)C/C 是静态类型语言,需手动管理内存,而JavaScript是动态类型,垃圾回收自动处理。2)C/C 需编译成机器码,JavaScript则为解释型语言。3)JavaScript引入闭包、原型链和Promise等概念,增强了灵活性和异步编程能力。

不同JavaScript引擎在解析和执行JavaScript代码时,效果会有所不同,因为每个引擎的实现原理和优化策略各有差异。1.词法分析:将源码转换为词法单元。2.语法分析:生成抽象语法树。3.优化和编译:通过JIT编译器生成机器码。4.执行:运行机器码。V8引擎通过即时编译和隐藏类优化,SpiderMonkey使用类型推断系统,导致在相同代码上的性能表现不同。

JavaScript在现实世界中的应用包括服务器端编程、移动应用开发和物联网控制:1.通过Node.js实现服务器端编程,适用于高并发请求处理。2.通过ReactNative进行移动应用开发,支持跨平台部署。3.通过Johnny-Five库用于物联网设备控制,适用于硬件交互。

我使用您的日常技术工具构建了功能性的多租户SaaS应用程序(一个Edtech应用程序),您可以做同样的事情。 首先,什么是多租户SaaS应用程序? 多租户SaaS应用程序可让您从唱歌中为多个客户提供服务

本文展示了与许可证确保的后端的前端集成,并使用Next.js构建功能性Edtech SaaS应用程序。 前端获取用户权限以控制UI的可见性并确保API要求遵守角色库

JavaScript是现代Web开发的核心语言,因其多样性和灵活性而广泛应用。1)前端开发:通过DOM操作和现代框架(如React、Vue.js、Angular)构建动态网页和单页面应用。2)服务器端开发:Node.js利用非阻塞I/O模型处理高并发和实时应用。3)移动和桌面应用开发:通过ReactNative和Electron实现跨平台开发,提高开发效率。

JavaScript的最新趋势包括TypeScript的崛起、现代框架和库的流行以及WebAssembly的应用。未来前景涵盖更强大的类型系统、服务器端JavaScript的发展、人工智能和机器学习的扩展以及物联网和边缘计算的潜力。

JavaScript是现代Web开发的基石,它的主要功能包括事件驱动编程、动态内容生成和异步编程。1)事件驱动编程允许网页根据用户操作动态变化。2)动态内容生成使得页面内容可以根据条件调整。3)异步编程确保用户界面不被阻塞。JavaScript广泛应用于网页交互、单页面应用和服务器端开发,极大地提升了用户体验和跨平台开发的灵活性。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

ZendStudio 13.5.1 Mac
功能强大的PHP集成开发环境

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3 Linux新版
SublimeText3 Linux最新版

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。