0

我有以下代码:我想打电话

预加载函数()

  (function ($) {
 $.fn.waterwheelCarousel = function (options) {
 options = $.extend({}, $.fn.waterwheelCarousel.defaults, options || {});

    return $(this).each(function () {
 var data = {
        itemsContainer:         $(this).find(".carousel-images"),
        totalItems:             $(this).find(".carousel-images img").length,
        containerWidth:         $(this).width(),
        containerHeight:        $(this).height(),
        currentCenterItem:      null,
        items:                  [],
        itemDistances:          [],
        waveDistances:          [],
        itemWidths:             [],
        itemHeights:            [],
        itemOpacities:          [],
        carouselRotationsLeft:  0,
        currentlyMoving:        false,
        itemsAnimating:         0,
        currentSpeed:           options.speed,
        intervalTimer:          null
      };

      // Setup the carousel
      beforeLoaded();
      // Preload the images. Once they are preloaded, the passed in function
      // will be called and the carousel will be setup
      preload(function () {
        setupDistanceArrays();
        setupCarousel();
        setupStarterRotation();
      });

我努力了 :

waterwheelCarousel().preloadfunction()它给了我未定义的方法

我也试过:

var t = $("#waterwheelcarouseldefault").waterwheelCarousel(); 
t.preloadfunction();

没有运气,有人知道如何调用这个函数吗?

4

2 回答 2

2

该函数不是称为“preload”,而不是“preloadfunction”吗?

你有没有尝试过

waterwheelCarousel().preload();
于 2013-01-14T14:16:12.337 回答
0

您还可以通过这种方式创建结构的对象,代码将变得更具可读性。例如:

var app = 
{
      // Setup the carousel
      beforeLoaded : beforeLoaded(),
      preload: function () {
        setupDistanceArrays();
        setupCarousel();
        setupStarterRotation();
      }

 };

这样您就可以通过键入来访问您的功能app.preload();

于 2013-01-14T14:21:09.630 回答