這個Magento商店是在Twitter的Bootstrap上開發的,我們試圖實現jbutz的Bootstrap Lightbox而不是Bootstrap模式。加載Bootstrap燈箱在Magento中的產品圖像
我們稱之爲引導燈箱JS與引導的JS的,像這樣的休息: -
<script src="<?php echo $this->getSkinUrl('js/jquery.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/google-code-prettify/prettify.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-transition.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-alert.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-modal.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-lightbox.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-dropdown.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-scrollspy.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-tab.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-tooltip.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-popover.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-button.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-collapse.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-carousel.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/bootstrap-typeahead.js'); ?>"></script>
<script src="<?php echo $this->getSkinUrl('js/application.js'); ?>"></script>
我們稱之爲引導燈箱CSS與其他引導CSS像這樣: -
<action method="addCss"><stylesheet>css/bootstrap.css</stylesheet></action>
<action method="addCss"><stylesheet>css/bootstrap-responsive.css</stylesheet></action>
<action method="addCss"><stylesheet>css/bootstrap-lightbox.css</stylesheet></action>
所有文件都在頁面加載時被調用並且可以訪問。
在模板/目錄/產品/視圖/ media.phtml,我們使用下面的標記: -
<a data-toggle="lightbox" href="#myGallery_<?php echo $_product->getId()?>" class="main-image">
<?php echo $_helper->productAttribute($_product, $_img, 'image'); ?>
</a>
<div class="lightbox hide fade" id="myGallery_<?php echo $_product->getId()?>" tabindex="-1" role="dialog" aria-hidden="true">
<div class="lightbox-header">
<a class="close" data-dismiss="lightbox">×</a>
<h3><?php echo $_product->getName()?></h3>
</div>
<div class="lightbox-content">
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'image')->resize(600)?>" alt="<?php echo $this->htmlEscape($this->getImageLabel())?>" title="<?php echo $this->htmlEscape($this->getImageLabel())?>" />
</div>
<div class="lightbox-footer">
<a href="#" class="btn" data-dismiss="lightbox">Close</a>
</div>
</div>
我不能然而,我的生活,讓燈箱在產品圖像被點擊時觸發,根本沒有任何反應。即使將演示中的確切標記實現到Magento模板文件中仍然不起作用 - 就好像js被正確調用/觸發一樣。你可以在jsfiddle上看到這樣的例子。
任何人都可以指出問題嗎?
js正在加載yes。錯誤包括: - 未捕獲的TypeError:Object [object Object]沒有方法'backdrop'和'Uncaught TypeError:Object [object Object]在控制檯中沒有方法'hideWithTransition'。燈箱js現在加載後的一切都沒有區別。謝謝。 – zigojacko
這個jsfiddle是否適合你?這正是自舉燈箱演示在他們的網站上使用的,它不在jsfiddle中工作... http://jsfiddle.net/zigojacko/bLMvn/ – zigojacko