0

我正在尝试将默认灯箱“modal”替换为“slimbox”,因为“modal”没有导航箭头。

带导航的 slimbox 演示

没有导航的模态演示

我正在使用这些路径来修改 slimbox 的调用

[模板名称]/html/com_virtuemart/productdetails/default.php components/com_virtuemart/productdetails/default.php

Joomla v2.5 Virtuemart 2.0.6 Slimbox2

以下是我的尝试:

        //Enable Slimbox2 plugin
        $front = JURI::root(true).'/components/com_virtuemart/assets/';
        $document = JFactory::getDocument();
        $document->addStyleSheet($front.'js/slimbox/slimbox.css');
        $document->addScript($front.'js/slimbox/slimbox2.js');      
        $js = 'jQuery(document).ready(function($) { $("a.lightbox").slimbox(); });';
        $document->addScriptDeclaration($js);
        //output thumbnail
        echo $this->product->images[0]->displayMediaThumb('class="product-image"',true,'class="lightbox" rel="lightbox"'.$this->product->virtuemart_product_id.'"',true,true);
        //unset first image not to be show amont additional ones
        unset ($this->product->images[0]);
        ?>

但它仍然无法正常工作,我想知道怎么了?

[参考][3]

4

1 回答 1

0

您没有将 slimbox 类应用于图像引用,而是将其应用于图像的容器,不是吗?在我看来,您需要直接处理图像文件的 url。

// get the file_url of the first image
$imgPath = $this->product->images[0]->file_url;

// output the image
<a class="slimbox" href="<?php echo $imgPath; ?>">
<img src="<?php echo $imgPath; ?>" alt="" />
</a>
于 2012-05-08T14:30:02.707 回答