我想增加3倍,每次都是2PX。 但是它没有给我原始大小的字体(第三次它应该重置之后)。
var textUp = 1;
if (textUp < 4) {
for (var i = 0; i < allATags.length; i++) {
var style = window.getComputedStyle(allATags[i], null).getPropertyValue('font-size');
var elfontSize = parseInt(style);
allATags[i].style.fontSize = (elfontSize + 2) + 'px';
}
textUp++;
}
else
{
for (var i = 0; i < allATags.length; i++) {
var style = window.getComputedStyle(allATags[i], null).getPropertyValue('font-size');
var elfontSize = parseInt(style);
allATags[i].style.fontSize = (elfontSize - 6) + 'px';
}
textUp = 1
}