addClass
アプリケーションで jQuery UI の機能を使用したいと考えています。
私は通常のjQuery、アンダースコア、バックボーンをすべてrequirejsと一緒に階層化して使用しています。
jQuery UI を次のように構成しました。
require.config({
deps: ["main"],
paths: {
"text": "lib/text"
, "jquery": "lib/jquery"
, "jquery-ui": "lib/jquery-ui"
, "underscore": "lib/underscore"
, "backbone": "lib/backbone"
, "bootstrap": "lib/bootstrap"
, "templates": "../templates"
},
shim: {
"jquery-ui": {
exports: "$",
deps: ['jquery']
},
"underscore": {
exports: "_"
},
"backbone": {
exports: "Backbone",
deps: ["underscore", "jquery"]
},
"bootstrap": ['jquery']
}
});
私が行うアプリケーションでは:
define(['jquery', 'underscore', 'backbone'], function($, _, Backbone) {
$('div').addClass('white');
});
残念ながら、これはaddClass
jQuery UI からアニメーション化されたものではなく、通常の処理のみを行います。
PS: 完全版の jQuery を使用しています。