All Projects → uoziod → Suave Ui

uoziod / Suave Ui

Licence: mit
UI Framework for AngularJS

Labels

Suave UI 0.3.1

UI Framework for AngularJS

Suave UI is designed for web-applications based on AngularJS. It consists of CSS definitions, directives and services that helps build UI quick and efficiently.

Components

All these components are included in bundle-files. So you don't need to include them separately to use all them force.

How to use?

You can include Suave UI to your project with Bower by this command:

bower install suave-ui --save

To use Suave UI without Bower you had to add CSS & JS bundle-files and include suave-ui angular-module into your web-app initialization via Dependency Injection or angular.bootstrap.

<link rel="stylesheet" href="suave-ui/dist/styles.min.css" />
<script src="js/angular.min.js"></script>
<script src="suave-ui/dist/app.min.js"></script>

<script>
    angular.element(document).ready(function () {
        angular.bootstrap(document, ['your-app', 'suave-ui']);
    });
</script>

Then you can use Suave directives, services and styles right in your code. Demo & Examples is available here.

License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].