(function ($) {
$.fn.dexpsticky = function (e) {
this.each(function () {
var b = $(this);
b.addClass('dexp-sticky');
b.data('offset-top', b.data('offset-top') || b.offset().top);
b.data('max-height', b.outerHeight());
var c = $('
').addClass('sticky-wrapper').height(b.outerHeight());
b.wrap(c);
var d = b.parents('.sticky-wrapper');
setInterval(function () {
//if($(window).width()<992) return;
d.height(b.outerHeight());
b.width(d.width());
}, 50);
$(window).bind('scroll',function () {
if($(window).width()<992) return;
var a = $(window).scrollTop();
if (a > b.data('offset-top')) {
b.addClass('fixed');
setTimeout(function () {
b.addClass('fixed-transition')
}, 10);
} else {
b.removeClass('fixed');
setTimeout(function () {
b.removeClass('fixed-transition')
}, 10);
}
}).bind('resize',function () {
b.removeClass('fixed fixed-transition').data('offset-top', b.offset().top);
$(window).scroll();
}).scroll();
});
};
$(window).load(function () {
$('.dexp-sticky').dexpsticky()
})
}(jQuery));