我有一个magento在线商店,我正在尝试自定义产品页面。
在页面上,我有jqZoom的主产品图片,还有magento生成的缩略图,以及改变主图像的onmouseover功能。
经过漫长的几天更改功能和代码后,我在MacBook上的两个浏览器中都能正常工作,但我测试的其他计算机上都存在问题。
在第一次加载时,第一张图片完全加载,缩放功能正常,但只要您将鼠标移开并更改图像,大多数浏览器上的缩放功能就不再有效了。
以下是代码:
。 。 。 。 在头脑中我添加了这个:
<script>
$('imgzoom').ready(function(){
var options = {
zoomType: 'innerzoom',
title:false,
lens:false,
preloadImages: true,
alwaysOn:false,
zoomWidth: 300,
zoomHeight: 400,
xOffset:10,
yOffset:0,
position:'left'
//...MORE OPTIONS
};
jQuery('.imgzoom').jqzoom(options);
});
</script>
<script>
function startzoom() {
var options = {
zoomType: 'innerzoom',
title:false,
lens:false,
preloadImages: true,
alwaysOn:false,
zoomWidth: 300,
zoomHeight: 400,
xOffset:10,
yOffset:0,
position:'left'
//...MORE OPTIONS
};
jQuery('.imgzoom').jqzoom(options);
};
</script></code>
。 。 。 。 。 这是magento用于生成链接的代码和产品的大图像
<p class="product-image product-image-zoom">
<?php
$_img = '<a href="'.$this->helper('catalog/image')->init($_product, 'image').'" class="imgzoom" rel="gal1" title="MYTITLE" id="imglink"><img width="380" name="img1" src="'.$this->helper('catalog/image')->init($_product, 'image').'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" /></a>';
$imagehelper = $_helper->productAttribute($_product, $_img, 'image');
echo $imagehelper;
?>
</p>
。 。 。 。 。 这是缩略图中的foreach循环,可以进行所有更改
<?php
++$i;
?>
<script>
function update_img<?php echo $i; ?>()
{
//$.jqzoom.disable('.jqzoom')
//jQuery('.imgzoom').disable('.imgzoom');
jQuery('.imgzoom').remove();
jQuery('.product-image.product-image-zoom').append('<?php echo $imagehelper; ?>');
img1.src = "<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()) ?>";
jQuery('#imglink').attr('href', '<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()) ?>');
startzoom();
//jQuery('#imgholdwrap').attr('style', 'width: 100%; height: 570px');
return false;
}
</script>
<a href="#" onclick="popWin('<?php echo $this->getGalleryUrl($_image) ?>', 'gallery', 'width=300,height=450,left=0,top=0,location=no,status=yes,scrollbars=yes,resizable=yes'); return false;" title="<?php echo $this->htmlEscape($_image->getLabel()) ?>"><img onmouseover="update_img<?php echo $i; ?>()" src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()); ?>" width="66" height="100" alt="<?php echo $this->htmlEscape($_image->getLabel()) ?>" /></a>
。 。 。
我认为的主要问题是在我删除jQzoom并将其添加回去之间的某处,图片的高度不能正确传输,因此调用该函数,但是&amp;由jqZoom生成的高度为0,如果将代码检查器中的设置更改为某个px值,则缩放将起作用,但图片未被正确剪切
以下是网站上产品的链接: http://zeroinchapparel.com/index.php/men-short-sleeve/grand-experience.html
P.S。最终我需要将缩放图片显示为标准(在图片的右侧),但是,当我将设置设置为标准时,没有显示缩放图片的窗口,z-index是否会出现问题?
p.s.2。这是我第一次使用javascript或jQuery,所以我是一个完整的n00b!
更新: 找到一些与IE不兼容的代码,很容易被替换
img1.src = "<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()) ?>";
原来IE无法将新的src分配给id“IMG1”,重写为:
document.getElementById('img1').src = "<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()) ?>";
某些版本的Chrome仍然存在问题,在src更改后鼠标悬停时未显示缩放图像...
答案 0 :(得分:1)
我使用了以下内容:
jQuery(document).ready(function(){
// activate on mouseover since IE8/9 don't seem to fire it automatically.
jQuery(".product-image").on('mouseover',function(){
jQuery(".jqzoom").jqzoom(options);
})
});
同时:
jQuery(document).ready(function(){
jQuery(".thumbnail").click(function(){
var smallUrl = jQuery(this).attr('data-img-small');
var bigUrl = jQuery(this).attr('data-img-big');
// Remove the old/default image.
jQuery(".jqzoom").remove();
// Add the desired images back in from the thumbnails
jQuery(".pad-image").append('<a href="'+bigUrl+'" class="jqzoom"><img src="'+smallUrl+'"/></a>');
// Turn it off, wait for next `mouseover`.
jQuery(".jqzoom").off();
});
})
这似乎在其他浏览器中运行良好。
我将data-img-small
和data-img-big
属性设置为缩略图,在需要时使用display: none;
,我还没有看到任何不良行为。