You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
var RevolutionSlider = function () {
|
|
|
|
return {
|
|
|
|
//Revolution Slider - Full Width
|
|
initRSfullWidth: function () {
|
|
var revapi;
|
|
jQuery(document).ready(function() {
|
|
revapi = jQuery('.tp-banner').revolution(
|
|
{
|
|
delay:9000,
|
|
startwidth:1170,
|
|
startheight:500,
|
|
hideThumbs:10,
|
|
navigationStyle:"preview4"
|
|
});
|
|
});
|
|
},
|
|
|
|
//Revolution Slider - Full Screen Offset Container
|
|
initRSfullScreenOffset: function () {
|
|
var revapi;
|
|
jQuery(document).ready(function() {
|
|
revapi = jQuery('.tp-banner').revolution(
|
|
{
|
|
delay:15000,
|
|
startwidth:1170,
|
|
startheight:400,
|
|
hideThumbs:10,
|
|
fullWidth:"off",
|
|
fullScreen:"on",
|
|
hideCaptionAtLimit: "",
|
|
dottedOverlay:"twoxtwo",
|
|
navigationStyle:"preview4",
|
|
fullScreenOffsetContainer: ".header"
|
|
});
|
|
});
|
|
}
|
|
|
|
};
|
|
}();
|