udiedrichsen / wheelnav

Animated javascript navigation component based on Raphaël.js (SVG/VML). It can be a pie menu (radial menu, circular menu) and many more.

Home Page:http://wheelnavjs.softwaretailoring.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Meteor pacakge for wheelnav javascript framework. Check out my very simple meteor test package [https://github.com/udiedrichsen/demo-meteor-wheelnav].

Running example: [http://wheelnav.meteor.com]

wheelnav.js

Animated wheel navigation javascript library based on Raphaël.js (SVG/VML).

It works on all major desktop and mobile browser.

Possible uses:

  • tab navigation
  • pie menu (radial menu, circular menu)
  • sub menu
  • option button
  • checkboxes
  • and more...

For more insight please visit http://wheelnavjs.softwaretailoring.net

Using

Via JavaScript

HTML

<div id="divWheelnav"></div>

JS

var myWheelnav = new wheelnav("divWheelnav");
myWheelnav.slicePathFunction = slicePath().WheelSlice;
myWheelnav.colors = colorpalette.parrot;
myWheelnav.createWheel([icon.smile, icon.star, icon.fork, icon.$]);

Via data attributes

HTML

<div id="divWheelnav" data-wheelnav data-wheelnav-slicepath="WheelSlice" data-wheelnav-colors="#D80351,#F5D908,#00A3EE,#929292">
    <div data-wheelnav-navitemicon="smile">smile</div>
    <div data-wheelnav-navitemicon="star">star</div>
    <div data-wheelnav-navitemicon="fork">fork</div>
    <div data-wheelnav-navitemicon="$">donate</div>
</div>

JS

var myWheelnav = new wheelnav("divWheelnav");

demo image

The index.html of this repo (test page) is available here.

Install

wheelnav.js is available over npm

$ npm install wheelnav

and bower

$ bower install wheelnav

Author

Developer: Gábor Berkesi (gabor.berkesi@softwaretailoring.net)

Development environment: Visual Studio Community 2013 with Web Essentials

License

Licensed under MIT. Enjoy the spinning.

About

Animated javascript navigation component based on Raphaël.js (SVG/VML). It can be a pie menu (radial menu, circular menu) and many more.

http://wheelnavjs.softwaretailoring.net

License:MIT License


Languages

Language:JavaScript 99.0%Language:HTML 0.5%Language:CSS 0.4%Language:Shell 0.0%