The easiest responsive front-end framework for web development
git clone https://github.com/totaldesigner/any
npm install
bower install
or
bower install anyjsgulp build<link rel="stylesheet" href="any.css"/>
<script src="any.js"></script>var controls, collections, page, layer, box, carousel, list;
controls = any.controls;
collections = any.collections;
page = new controls.Page();
layer = new controls.Layer();
box = new controls.Box();
list = new collections.List([{
key: 1
}, {
key: 2
}]);
carousel = new controls.Carousel(list, '<div><a>{key}</a></div>');
box.append(carousel);
layer.append(box);
page.append(layer);
page.draw();
- Updating and maintenance
git tag -a v0.0.1 -m "Release version 0.0.1"
git push origin master --tags- Deleting a tag
git tag -d v0.0.1
git push origin :refs/tags/v0.0.1- Cleaning and installation
rm -rf bower_components
bower cache clean
bower installPull requests for new features, bug fixes, and suggestions are welcome!
See the LICENSE file for license rights and limitations (MIT).