Velocity.js - 如何使用具有UI效果的序列?

时间:2015-09-03 18:33:08

标签: javascript jquery velocity.js

到目前为止我没有成功。

我们可以这样:

class EntityContoller {

    public function index() {
        Entity $entities = Entity::all();

        if(Request::get('contentType', 'JSON')) return $entities;
        return view('entity.index', compact($entities));
    }

    ... // And many more routes like that
}

据我所知,p代表财产。确定。

是否有人知道我们是否可以传递 function _nextStepTransition(elementOut, elementIn) { var goForward = [ { e: elementOut, p: { translateX: 100 }, o: { duration: 1000 } }, { e: elementIn, p: { translateX: 200 }, o: { duration: 1000 } } ]; $.Velocity.RunSequence(goForward); } 属性,即UI效果p:,以便我们可以获得一系列UI效果?

我对这里要应用的语法一无所知(如果可能的话),到目前为止我的尝试都没有结果。

1 个答案:

答案 0 :(得分:1)

是的,当然。只需将Object中的p替换为您要转换/标注的string,如下所示:

var goForward = [
        { e: elementOut, p: 'callout.pulse', o: { duration: 1000 } },
        { e: elementIn, p: 'transition.flipXIn', o: { duration: 1000 } }
    ];

查看example here