我写了一些 jquery(为语法道歉),将 div 居中在浏览器中间:
$(document).ready(function() {
function move_div(){
window_width = $(window).width();
window_height = $(window).height();
obj_width = $('#div_to_center').width();
obj_height = $('#div_to_center').height();
$('#div_to_center').css('top', (window_height / 2) - (obj_height / 2)).css('left', (window_width / 2) - (obj_width / 2));
}
move_div();
$(window).resize(function() {
move_div();
});
});
我想要做的是在 Tumblr 中实现它,这样像这样的 div就会居中。
但是,我对 Tumblr 的 API 并不熟悉。以及我如何实施它。