Lightening Fast & Easy To Use
Want to learn more about Munee? Check the features below.
Easy To Install & Use
Using Composer, Munee can be installed in 3 easy steps. You will not have to change how you include your assets, everything just works!
Smart Caching
Assets are cached server-side and client-side. On every request, each asset is checked if a newer version is available. If so, Munee will bust the cache and force the browser to download the latest version.
On-The-Fly Image Resizing
Quickly resize/crop/fill images on the fly utilising Imagine and an easy to use parameter syntax. Once the image has been manipulated, the cached version will be served on the next request. Security measures are put in place to stop malicious users in their tracks.
LESS/SCSS/CoffeeScript Compiling
Just include these assets (.less, .scss, .coffee) to your HTML and Munee
will automatically compile and cache them for future requests.
Combine CSS/JS Into One Request
When creating your <link> and <style> tags, you can comma delimit
each file into one request. Munee will cache each file individually and combine
each files content.
Minification & Gzip Compression
The CSS & JavaScript can optionally be minified to save on bandwidth. Munee will also use
ob_gzhandler() to Gzip the response to save even more bandwidth.
Example Heading
Some Description about the example if needed
Link Css
Move the plugin CSS file to your server and link to it in the head
section of your document.
<link rel="stylesheet" href="yourplugin.css" />
Link JS
Move the plugin JS file to your server and link to it before the closing body tag.
Please note that you must include jQuery (v1.7 or later) before the slider JS file.
<script src="jquery-1.7.1.min.js"></script> <script src="jquery.yourplugin.min.js"></script>
The Markup
Add the following markup
<ul class="thumbnails"> <li class="span4"> <a href="#" class="thumbnail"> <img src="http://placehold.it/360x268" alt=""> </a> </li> .... </ul>
Call Plugin
Just before the closing body tag (after any JS file includes), call
the plugin with code below:
<script>
$(document).ready(function () {
$('.selector').yourPlugin();
});
</script>
Plugin Settings
Plugin accepts settings from an object of key/value pairs, and can be assigned to any HTML element.
| Property | Default | Description |
|---|---|---|
| Property1 | Default Value | some description about this |
| Property2 | "Default String" | some description about this |
| Property3 | false | some description about this |
| Property4 | Default Value | some description about this |
| Property5 | "Default String" | some description about this |
| Property6 | false | some description about this |
FAQ Option1
FAQ Option2
Roadmap
For more up-to-date information on release dates for these versions, please refer to the Issues Milestones.
| Version | Description |
|---|---|
| 1.0.3 | Description about this version goes here |
| 1.0.2 | Description about this version goes here |
| 1.0.1 | Description about this version goes here |
| 1.0.0 | Description about this version goes here |
Changelog
CSS Changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
Javascript Changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
HTML Changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
Javascript Changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
HTML Changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
- Some description about the changes
Javascript Changes
- Some description about the changes
- Some description about the changes
- Some description about the changes

