$(window).resize(function(){
  $('.slider-wrap').css({
    position:'absolute',
    left: ($(window).width() - $('.slider-wrap').outerWidth())/2,
    top: ($(window).height() - $('.slider-wrap').outerHeight())/2
  });
});
// To initially run the function:
$(window).resize();

