04 2012 档案

摘要:(function ($) { $.fn.extend({ layerCenter: function () { var obj = $(this); obj.css({ position: "absolute", top: "50%", left: "50%", marginLeft: -obj.width() / 2, marginTop: -obj.height() / 2 }); } }); })(jQuery);调用 $("#div").layerCenter(); 阅读全文
posted @ 2012-04-27 14:02 王不惑