jquery插件制作 图片走廊 gallery

2020-05-19 07:35:55易采站长站整理

});
});
};
$.fn.center = function () {
return this.each(function () {
$(this).css({
//设置绝对定位,这样他就会浮动在最上层(必要的情况下可以设置zindex属性)
position: ‘absolute’,
//设置垂直居中对齐
top: ($(window).height() – $(this).height()) / 2 + $(window).scrollTop() + ‘px’,
//设置水平居中对齐
left: ($(window).width() – $(this).width()) / 2 + $(window).scrollLeft() + ‘px’
});
});
};
})(jQuery);

  好了,今天的内容到此结束。
demo下载地址:jQuery.plugin.gallery