├── .gitignore ├── README.md ├── bower.json ├── imgLiquid.jquery.json ├── js ├── imgLiquid-min.js └── imgLiquid.js ├── license.txt └── tests ├── imgLiquid.html ├── imgLiquid_Min.html ├── imgLiquid_Recall.html ├── imgLiquid_Responsive.html ├── imgLiquid_aligns.html ├── imgLiquid_anim.html ├── imgLiquid_changeImg.html ├── imgLiquid_full.html ├── imgLiquid_importants.html ├── imgLiquid_simple.html ├── imgLiquid_visible.html ├── logoimgliquid.png ├── reset.css └── woody.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | examples -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/bower.json -------------------------------------------------------------------------------- /imgLiquid.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/imgLiquid.jquery.json -------------------------------------------------------------------------------- /js/imgLiquid-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/js/imgLiquid-min.js -------------------------------------------------------------------------------- /js/imgLiquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/js/imgLiquid.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/license.txt -------------------------------------------------------------------------------- /tests/imgLiquid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid.html -------------------------------------------------------------------------------- /tests/imgLiquid_Min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_Min.html -------------------------------------------------------------------------------- /tests/imgLiquid_Recall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_Recall.html -------------------------------------------------------------------------------- /tests/imgLiquid_Responsive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_Responsive.html -------------------------------------------------------------------------------- /tests/imgLiquid_aligns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_aligns.html -------------------------------------------------------------------------------- /tests/imgLiquid_anim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_anim.html -------------------------------------------------------------------------------- /tests/imgLiquid_changeImg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_changeImg.html -------------------------------------------------------------------------------- /tests/imgLiquid_full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_full.html -------------------------------------------------------------------------------- /tests/imgLiquid_importants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_importants.html -------------------------------------------------------------------------------- /tests/imgLiquid_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_simple.html -------------------------------------------------------------------------------- /tests/imgLiquid_visible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/imgLiquid_visible.html -------------------------------------------------------------------------------- /tests/logoimgliquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/logoimgliquid.png -------------------------------------------------------------------------------- /tests/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/reset.css -------------------------------------------------------------------------------- /tests/woody.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karacas/imgLiquid/HEAD/tests/woody.jpg --------------------------------------------------------------------------------