patlegris / angular-materialize

Angularjs directives for Materialize CSS Framework https://github.com/Dogfalo/materialize

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

angular-materialize

angular-materialize in action http://krescruz.github.io/angular-materialize/

This library is a set of AngularJS directives which make it possible to use features from Materialize with AngularJS. It is basically a set of directives, which calls the JavaScript functions defined by Materialize. This means that you still need to include Materialize for this to work.

This project is not to be confused with the Angular Material project, which is a standalone Material design implementation for AngularJS.

A minimal example of how to set up this project can be found here: http://krescruz.github.io/angular-materialize/#getting-started

You can download this project through our bower package, or npm package. Or just use the cdn:

<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular-materialize/0.1.9/angular-materialize.min.js"></script>
Use with Webpack

Angular looks for jQuery and if no exists, it uses jQlite. Some directives of angular-materialize uses some jQuery methods, so be sure that Angular uses it instead of jQlite. It can be done by adding the following lines in your config.

//webpack.config.js
plugins: [
    new webpack.ProvidePlugin({
      'window.jQuery': 'jquery'
    })
  ],

then simply add to your module:

// yourModule.js
// ES6 style
import angularMaterialize from 'angular-materialize';
// OR commonjs style
var angularMaterialize = require('angular-materialize');
angular.module('yourModule', [angularMaterialize]);

Missing features

  • Components
    • Fixed Action Button
  • JavaScript
    • Carousel.

About

Angularjs directives for Materialize CSS Framework https://github.com/Dogfalo/materialize

License:MIT License


Languages

Language:HTML 51.7%Language:JavaScript 33.0%Language:CSS 15.3%