我正在使用以下javascipt動態地居中文本。執行javascript之前的延遲
$(function() {
$('.centre-dyn').css({
'position' : 'absolute',
'left' : '50%',
'top' : '50%',
'margin-left' : function() {return -$(this).outerWidth()/2},
'margin-top' : function() {return -$(this).outerHeight()/2}
});
});
但是,當我加載頁面時,文本在快速居中之前會出現在其未預先確定的位置。我怎樣才能讓文字立即居中?
使用Flex純CSS,而不是JS代碼。 – SLaks
爲什麼不爲此設置CSS規則而不是使用JavaScript? – j08691
爲什麼你不使用CSS的樣式? – randominstanceOfLivingThing