Skip to content

totaldesigner/any

Repository files navigation

AnyJS

The easiest responsive front-end framework for web development

Inatall

git clone https://github.com/totaldesigner/any
npm install
bower install
or
bower install anyjs

Usage

gulp 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();

Tagging

  • 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 install

Contributing

Pull requests for new features, bug fixes, and suggestions are welcome!

License

See the LICENSE file for license rights and limitations (MIT).

About

Anyplace, Anywhere, Anytime - Web

Resources

License

Stars

Watchers

Forks

Packages

No packages published