不能在Magento中发起简单的Supersized

时间:2012-06-19 14:04:38

标签: javascript jquery html magento supersized

我正在尝试使用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>

2 个答案:

答案 0 :(得分:1)

注意

我没有看到任何名为supersized()的函数,所以它是如何工作的?你的过程是错的。阅读有关jQuery插件制作过程的信息。


您使用了

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

jQuery(function(){..

都使用任何一个,因为它们是相同的并且确保:

  • 您首先添加了jQuery库

完整代码

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(); 
 });

答案 1 :(得分:1)

尝试:

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(){

他们是同一件事