2

我有一个 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 并添加回来之间的某个地方,图片的高度没有正确传输,因此调用了函数,但是 jqZoom 生成的 & 高度为 0,如果您将代码检查器中的设置更改为某个 px 值,则缩放将起作用,但图片未正确剪切

这是网站上产品的链接:http: //zeroinchapparel.com/index.php/men-short-sleeve/grand-experience.html

ps 最终我需要将缩放图片显示为标准(在图片的右侧)但是,当我将设置设置为标准时,没有显示带有缩放图片的窗口,z-index 是否存在一些问题?

ps2。这是我第一次使用 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 更改后鼠标悬停时不显示缩放图像...

4

1 回答 1

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-smalldata-img-big属性设置为缩略图,display: none;在需要的地方使用,我还没有真正看到任何不良行为。

于 2012-11-14T03:19:36.200 回答