jquery模倣京東製品拡大閲覧ページ_共有例

小云云
リリース: 2018-01-10 10:38:04
オリジナル
1929 人が閲覧しました

これまでに JD.com の機能を模倣する記事をたくさん紹介してきましたが、この記事では主に JD.com の製品閲覧ページにマウスを置くと拡大効果が得られます。興味のある方は参考にしていただければ幸いです。

jquery模倣京東製品ページ

誰もが知っている京東ページに入り、画像の横にマウスを置くと、拡大効果が表示されます。 ! ! !

JDの商品ページの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; }
ログイン後にコピー

JDの商品ページのHTMLコードを真似してみましょう! ! !


  • 图文介绍
  • 评论(1)

暂无好评!

适用浏览器:IE8、360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗

来源:师徒课堂

ログイン後にコピー

JD製品ページの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>p").eq(index).show().siblings().hide(); }); });
ログイン後にコピー

JD.comの製品ページの効果を真似してください! ! !

どう思いますか?ぜひ試してみてください。

関連する推奨事項:

京東エクスプレスの上スクロール_JavaScriptスキルを模倣する例

vue.jsを使用して京東省と市の3レベルのリンクの選択コンポーネントを模倣します

Html+Css初心者でもすぐに模倣できます京東商品分類navigation_html/css_WEB-ITnose

以上がjquery模倣京東製品拡大閲覧ページ_共有例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!