0

我正在使用一个名为 oridomi (oridomi.com) 的折叠插件。我创建了一个新对象,并传递了一些选项。

var fold_map = new OriDomi('.fold-map', {
        vPanels:         8,     // number of panels when folding left or right (vertically oriented)
        speed:           0,  // folding duration in ms
        ripple:          0,     // backwards ripple effect when animating
        shadingIntesity: .2,    // lessen the shading effect
        perspective:     1000,   // smaller values exaggerate 3D distortion
        maxAngle:        40,    // keep the user's folds within a range of -40 to 40 degrees
        shading:         'hard', // change the shading type
        touchEnabled:    true
    });

我想稍后将速度从 0 更新到 500。我尝试使用:

fold_map['speed'] = 500;

fold_map.speed = 500;

但这行不通。我认为这就是您在 js 中更新对象选项的方式。怎么了?

您可以使用以下方法折叠/展开对象:

 fold_map.accordion(30,'left');

一切正常,但初始化后我无法更新速度。

4

1 回答 1

0

使用setSpeed方法:

fold_map.setSpeed(500);

此方法也是可链接的,如下例所示:http: //oridomi.com/#queueing

于 2014-09-17T00:29:43.780 回答