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.
36 lines
916 B
36 lines
916 B
var FancyBox = function () {
|
|
|
|
return {
|
|
|
|
//Fancybox
|
|
initFancybox: function () {
|
|
jQuery(".fancybox").fancybox({
|
|
groupAttr: 'data-rel',
|
|
prevEffect: 'fade',
|
|
nextEffect: 'fade',
|
|
openEffect : 'elastic',
|
|
closeEffect : 'fade',
|
|
closeBtn: true,
|
|
helpers: {
|
|
title: {
|
|
type: 'float'
|
|
}
|
|
}
|
|
});
|
|
|
|
$(".fbox-modal").fancybox({
|
|
maxWidth : 800,
|
|
maxHeight : 600,
|
|
fitToView : false,
|
|
width : '70%',
|
|
height : '70%',
|
|
autoSize : false,
|
|
closeClick : false,
|
|
closeEffect : 'fade',
|
|
openEffect : 'elastic'
|
|
});
|
|
}
|
|
|
|
};
|
|
|
|
}();
|