picturehover
Index
Quick start
include the files
<script src="jquery.min.js"></script> <script src="picturehover.min.js"></script>
call the the plugin on a container as your wish
$("#container").picturehover();
or you can add the attr to the tag you want
<div data-picturehover></div>
All done!
Options
you can custom the caption by passing options when call the plugin.
call the the plugin on a container wish you wish
$("#container").picturehover({ height:'50%', duration:'fast', fontColor:'#fff', textAlign:'center', verticalMiddle: true, backgroundColor:'rgba(0,0,0,.9)', ... });
Event
There are two events ---'slideInEnd' and 'slideOutEnd',they are triggered when the overlay slidIn and the overlay slideOut,the argument--data is the index of the img of the container.
$('#container').picturehover().on('slideInEnd',function(event,data){ console.log('In-----'+data); }).on('slideOutEnd',function(event,data){ console.log('Out----'+data); })
Demo
There are 3 demos,you can learn how to use the simple plugin