MagicZoom 放大镜 去掉 顶部的标题名 跟绿色的部分

2016-07-07 16:02 来源:www.chinab4c.com 作者:ecshop专家






能不能把 放大后的 图片上的 标题去掉 (不显示 商品名称)那个绿色的部分全部去掉

怎么搞本人 css 不好

回答:
已解决

打开 mzp-packed.js


找到


if(this.settings&&this.settings["header"]!=""){
varf=document.createElement("DIV");f.className='MagicZoomHeader';f.id='MagicZoomHeader'+this.bigImageCont.id;f.style.position='relative';f.style.zIndex=10;f.style.left='0px';f.style.top='0px';f.style.padding='0px';f.innerHTML=this.settings["header"];this.bigImageCont.appendChild(f)
}



找到这句把 {}中间的隐藏掉即可

很好很强大,谢谢楼主了!

不用修改js代码

只需要 在大图的加载部分

比如
  1. <a href="{$pictures.0.img_url}" id="zoom1" class="MagicZoom MagicThumb" title="{$goods.goods_style_name}">
复制代码


把title的属性去掉 就可以了

谢谢拜月哥哥

很好很强大,谢谢大大