gpt4 book ai didi

javascript - 无法在 Magento 中启动简单的 Supersized

转载 作者:行者123 更新时间:2023-12-02 19:34:25 25 4
gpt4 key购买 nike

我正在尝试使用 Jquery 插件 Supersized 但我不能。我正在与 Magento 合作。我已经用 jQuery 替换了超大库中的所有 $ 。我添加了这个: jQuery.noConflict();就在函数开始之前。这是我的代码,我复制脚本和 html。我不知道为什么它不起作用,有人可以帮助我吗?

<script type="text/javascript"> 
jQuery.noConflict();
jQuery(function(){
jQuery.fn.supersized.options = {
startwidth: 1440,
startheight: 900,
vertical_center: 1,
slideshow: 1,
navigation: 1,
thumbnail_navigation: 0,
transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
pause_hover: 1,
slide_counter: 1,
slide_captions: 1,
slide_interval: 3000,
slides : [
{image : "<?php echo $this->getSkinUrl('images/portada_slider/slider1.jpg') ?>"} ,
{image : "<?php echo $this->getSkinUrl('images/portada_slider/slider2.jpg') ?>"}

]
};

});

</script>

<div id="supersized"></div>

最佳答案

尝试:

jQuery(function() {
jQuery.fn.supersized.options = {
startwidth: 1440,
startheight: 900,
vertical_center: 1,
slideshow: 1,
navigation: 1,
thumbnail_navigation: 0,
transition: 1,
//0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
pause_hover: 1,
slide_counter: 1,
slide_captions: 1,
slide_interval: 3000,
slides: [
{image: 'photo1.jpg'},
{image: 'photo2.jpg'}
]
};
jQuery('#supersized').supersized();
});​

无需同时包含两者:

jQuery('document').ready(function() {
jQuery(function(){

它们是同一件事

关于javascript - 无法在 Magento 中启动简单的 Supersized,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11102701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com