├── .gitignore ├── LICENCE ├── README.md ├── css ├── bg_noise.png ├── bg_stitch.png └── liteaccordion.css ├── img-demo ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── callout_bg.gif └── sprite.png ├── index.html ├── js ├── jquery.easing.1.3.js ├── liteaccordion.jquery.js └── liteaccordion.jquery.min.js └── test ├── index.html └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/README.md -------------------------------------------------------------------------------- /css/bg_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/css/bg_noise.png -------------------------------------------------------------------------------- /css/bg_stitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/css/bg_stitch.png -------------------------------------------------------------------------------- /css/liteaccordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/css/liteaccordion.css -------------------------------------------------------------------------------- /img-demo/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/img-demo/1.jpg -------------------------------------------------------------------------------- /img-demo/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/img-demo/2.jpg -------------------------------------------------------------------------------- /img-demo/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/img-demo/3.jpg -------------------------------------------------------------------------------- /img-demo/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/img-demo/4.jpg -------------------------------------------------------------------------------- /img-demo/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/img-demo/5.jpg -------------------------------------------------------------------------------- /img-demo/callout_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/img-demo/callout_bg.gif -------------------------------------------------------------------------------- /img-demo/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/img-demo/sprite.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/index.html -------------------------------------------------------------------------------- /js/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/js/jquery.easing.1.3.js -------------------------------------------------------------------------------- /js/liteaccordion.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/js/liteaccordion.jquery.js -------------------------------------------------------------------------------- /js/liteaccordion.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/js/liteaccordion.jquery.min.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/test/index.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikki/LiteAccordion/HEAD/test/test.js --------------------------------------------------------------------------------