Check out the documentation @ http://fooplugins.github.io/rvslider/
First download the required JS and CSS files and include them in your page.
<link href="rvslider.min.css" rel="stylesheet" />
<script src="rvslider.min.js"></script>
Then include the following JS script in your page or add it into your own page ready function to initialize the plugin.
<script>
jQuery(function($){
$('.rvs-container').rvslider();
});
</script>
Once that is setup all that is left to do is provide the plugin with the HTML it requires. You can create this markup yourself however you like, server side or client side*, or simply use the generator to create your slider and items and simply copy the code into your page.
** Note generating the HTML client side would require the plugin initializer to only be called after all HTML content is added to the page.
Version | Description |
---|---|
1.0.0 | Initial release. |
1.0.1 | Added Dailymotion support. |
1.0.2 |
|
1.0.3 |
|
1.0.4 |
|
1.0.5 | Changed to GPLv3 license |
1.0.6 | Removed transition-delay from rvs-item-text and rvs-item-content transitions as it was causing PageSpeed Insights parsing engine to fail. Changed things around a little to achieve the same effect using the trnasitionend event in JS. |
1.0.7 |
|