document.write('    巨鹿县铭郡商贸有限公司              var process_request = "正在处理您的请求..."; //设为首页 function SetHome(obj, url) { try { obj.style.behavior = 'url(#default#homepage)'; obj.setHomePage(url); } catch (e) { if (window.netscape) { try { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); } catch (e) { alert("抱歉,此操作被浏览器拒绝!\n\n请在浏览器地址栏输入“about:config”并回车然后将[signed.applets.codebase_principal_support]设置为'true'"); } } else { alert("抱歉,您所使用的浏览器无法完成此操作。\n\n您需要手动将【" + url + "】设置为首页。"); } } } //收藏本站 bbs.ecmoban.com function AddFavorite(title, url) { try { window.external.addFavorite(url, title); } catch (e) { try { window.sidebar.addPanel(title, url, ""); } catch (e) { alert("抱歉,您所使用的浏览器无法完成此操作。\n\n加入收藏失败,请使用Ctrl+D进行添加"); } } } function show_div(obj) { if (obj.className == "more-menu") { obj.className = "more-menu hover"; } else { obj.className = "more-menu"; } }         Ū收藏巨鹿县铭郡商贸有限公司  欢迎光临本店,登录 | 注册 |     个人中心     我的订单 我的评价 我的收藏 修改收货地址     会员专区      { literal } < !-- function checkSearchForm() { if (document.getElementById('keyword').value) { return true; } else { alert("请输入搜索关键词!"); return false; } }-- > { / literal }    

      搜索       正品保障 中国人保承保

     30天退换货 购物有保障

     满99就包邮 闪电发货

          全部商品分类    首页  洗衣粉  肥皂  洗衣液  香皂  牙膏  牙刷       .container, .container * { margin: 0; padding: 0; } .container { width: 100%; height: 413px; overflow: hidden; position: relative; } .slider { position: absolute; width: 100%; height: 413px; } .slider li, .slider li a { list-style: none; float: left; width: 100%; height: 413px; } .slider img { width: 100%; height: 413px; display: block; } .slider2 { width: 2000px; } .slider2 li { float: left; } .num { position: absolute; left: 50%; bottom: 5px; width: auto; margin: 0 auto; } .num li { float: left; color: #E50065; text-align: center; line-height: 16px; width: 16px; height: 16px; font-family: Arial; font-size: 12px; cursor: pointer; overflow: hidden; margin: 3px 1px; border: 1px solid #f70; background-color: #fff; } .num li.on { color: #fff; line-height: 21px; width: 21px; height: 21px; font-size: 16px; margin: 0 1px; border: 0; background-color: #f70; font-weight: bold; }        1     var $s = function (id) { return "string" == typeof id ? document.getElementById(id) : id; }; var Class = { create: function () { return function () { this.initialize.apply(this, arguments); } } } Object.extend = function (destination, source) { for (var property in source) { destination[property] = source[property]; } return destination; } var TransformView = Class.create(); TransformView.prototype = { //容器对象,滑动对象,切换参数,切换数量 initialize: function (container, slider, parameter, count, options) { if (parameter <= 0 || count <= 0) return; var oContainer = $s(container), oSlider = $s(slider), oThis = this; this.Index = 0;//当前索引 this._timer = null;//定时器 this._slider = oSlider;//滑动对象 this._parameter = parameter;//切换参数 this._count = count || 0;//切换数量 this._target = 0;//目标参数 this.SetOptions(options); this.Up = !!this.options.Up; this.Step = Math.abs(this.options.Step); this.Time = Math.abs(this.options.Time); this.Auto = !!this.options.Auto; this.Pause = Math.abs(this.options.Pause); this.onStart = this.options.onStart; this.onFinish = this.options.onFinish; oContainer.style.overflow = "hidden"; oContainer.style.position = "relative"; oSlider.style.position = "absolute"; oSlider.style.top = oSlider.style.left = 0; }, //设置默认属性 SetOptions: function (options) { this.options = {//默认值 Up: true,//是否向上(否则向左) Step: 5,//滑动变化率 Time: 10,//滑动延时 Auto: true,//是否自动转换 Pause: 2000,//停顿时间(Auto为true时有效) onStart: function () { },//开始转换时执行 onFinish: function () { }//完成转换时执行 }; Object.extend(this.options, options || {}); }, //开始切换设置 Start: function () { if (this.Index < 0) { this.Index = this._count - 1; } else if (this.Index >= this._count) { this.Index = 0; } this._target = -1 * this._parameter * this.Index; this.onStart(); this.Move(); }, //移动 Move: function () { clearTimeout(this._timer); var oThis = this, style = this.Up ? "top" : "left", iNow = parseInt(this._slider.style[style]) || 0, iStep = this.GetStep(this._target, iNow); if (iStep != 0) { this._slider.style[style] = (iNow + iStep) + "px"; this._timer = setTimeout(function () { oThis.Move(); }, this.Time); } else { this._slider.style[style] = this._target + "px"; this.onFinish(); if (this.Auto) { this._timer = setTimeout(function () { oThis.Index++; oThis.Start(); }, this.Pause); } } }, //获取步长 GetStep: function (iTarget, iNow) { var iStep = (iTarget - iNow) / this.Step; if (iStep == 0) return 0; if (Math.abs(iStep) < 1) return (iStep > 0 ? 1 : -1); return iStep; }, //停止 Stop: function (iTarget, iNow) { clearTimeout(this._timer); this._slider.style[this.Up ? "top" : "left"] = this._target + "px"; } }; window.onload = function () { function Each(list, fun) { for (var i = 0, len = list.length; i < len; i++) { fun(list[i], i); } }; var objs = $s("idNum").getElementsByTagName("li"); var obj_len = objs.length; var tv = new TransformView("idTransformView", "idSlider", 413, obj_len, { onStart: function () { Each(objs, function (o, i) { o.className = tv.Index == i ? "on" : ""; }) }//按钮样式 }); tv.Start(); Each(objs, function (o, i) { o.onmouseover = function () { o.className = "on"; tv.Auto = false; tv.Index = i; tv.Start(); } o.onmouseout = function () { o.className = ""; tv.Auto = true; tv.Start(); } }) ////////////////////////test2 // var objs2 = $("idNum2").getElementsByTagName("li"); // // var tv2 = new TransformView("idTransformView2", "idSlider2",1200, 3, { // onStart: function(){ Each(objs2, function(o, i){o.className = tv2.Index == i ? "on" : "";}) },//按钮样式 // Up: false // }); // // tv2.Start(); // // Each(objs2, function(o, i){ // o.onmouseover = function(){ // o.className = "on"; // tv2.Auto = false; // tv2.Index = i; // tv2.Start(); // } // o.onmouseout = function(){ // o.className = ""; // tv2.Auto = true; // tv2.Start(); // } // }) // // $("idStop").onclick = function(){tv2.Auto = false; tv2.Stop();} // $("idStart").onclick = function(){tv2.Auto = true; tv2.Start();} // $("idNext").onclick = function(){tv2.Index++; tv2.Start();} // $("idPre").onclick = function(){tv2.Index--;tv2.Start();} // $("idFast").onclick = function(){ if(--tv2.Step <= 0){tv2.Step = 1;} } // $("idSlow").onclick = function(){ if(++tv2.Step >= 10){tv2.Step = 10;} } // $("idReduce").onclick = function(){ tv2.Pause-=1000; if(tv2.Pause <= 0){tv2.Pause = 0;} } // $("idAdd").onclick = function(){ tv2.Pause+=1000; if(tv2.Pause >= 5000){tv2.Pause = 5000;} } // // $("idReset").onclick = function(){ // tv2.Step = Math.abs(tv2.options.Step); // tv2.Time = Math.abs(tv2.options.Time); // tv2.Auto = !!tv2.options.Auto; // tv2.Pause = Math.abs(tv2.options.Pause); // } }     //初始化主菜单 function sw_nav2(obj, tag) { var DisSub2 = document.getElementById("DisSub2_" + obj); var HandleLI2 = document.getElementById("HandleLI2_" + obj); if (tag == 1) { DisSub2.style.display = "block"; HandleLI2.className = "current"; } else { DisSub2.style.display = "none"; HandleLI2.className = ""; } }     所有商品分类   洗衣粉     肥皂     洗衣液      香皂     牙膏     牙刷            新品上架 更多    雕牌洗衣粉1....

 市场价:¥109元  本店价: ¥95元     氧净浓缩有氧洗...

 市场价:¥58.6元  本店价: ¥55.8元     雕牌天然皂粉6...

 市场价:¥12.6元  本店价: ¥10.5元     超能洗衣粉天然...

 市场价:¥50元  本店价: ¥39.8元     2包白猫威煌洁...

 市场价:¥44.16元  本店价: ¥36.8元       精品推荐 更多    满婷清满沐浴皂...

 市场价:¥69元  本店价: ¥39.9元     满婷清满男士爽...

 市场价:¥59.8元  本店价: ¥22.8元     金大夫片仔癀珍...

 市场价:¥50元  本店价: ¥30元     Scullys... 

 市场价:¥45元  本店价: ¥32元     韩国进口香皂大...

 市场价:¥20元  本店价: ¥9.9元       热卖商品 更多    b29美弍玖皂...

 市场价:¥54.5元  本店价: ¥48元     超能内衣专用皂...

 市场价:¥90元  本店价: ¥45元     美弍玖美贰玖洗...

 市场价:¥54.5元  本店价: ¥48元     雕牌超能皂22...

 市场价:¥181.2元  本店价: ¥151元     超能透明皂22... 

 市场价:¥200.2元  本店价: ¥179元        ecshop模板堂        新手上路  注册了解 会员介绍 如何购物   购物流程 商品质保 配送方式 货到付款   售后保障 售后服务 退换原则 支付方式   公司简介 关于我们 投诉建议 人才招聘       联系我们     © 2021 巨鹿县铭郡商贸有限公司 版权所有,并保留所有权利。ICP备案证书号: 冀ICP备2021022798号

  服务时间:09:00-23:00 客服热线: 13452602548 

       // initFloatTips(); function OnlineOver() { document.getElementById("divMenu").style.display = "none"; document.getElementById("divOnline").style.display = "block"; document.getElementById("divQQbox").style.width = "170px"; } function OnlineOut() { document.getElementById("divMenu").style.display = "block"; document.getElementById("divOnline").style.display = "none"; } if (typeof (HTMLElement) != "undefined") //给firefox定义contains()方法,ie下不起作用 { HTMLElement.prototype.contains = function (obj) { while (obj != null && typeof (obj.tagName) != "undefind") { //通过循环对比来判断是不是obj的父元素 if (obj == this) return true; obj = obj.parentNode; } return false; }; } function hideMsgBox(theEvent) { //theEvent用来传入事件,Firefox的方式 if (theEvent) { var browser = navigator.userAgent; //取得浏览器属性 if (browser.indexOf("Firefox") > 0) { //如果是Firefox if (document.getElementById('divOnline').contains(theEvent.relatedTarget)) { //如果是子元素 return; //结束函式 } } if (browser.indexOf("MSIE") > 0) { //如果是IE if (document.getElementById('divOnline').contains(event.toElement)) { //如果是子元素 return; //结束函式 } } } /*要执行的操作*/ document.getElementById("divMenu").style.display = "block"; document.getElementById("divOnline").style.display = "none"; }