Ich habe dies in der Vergangenheit mit jQuery getan. Sie können die Größe eines Textstücks wie folgt messen:
// txt is the text to measure, font is the full CSS font declaration,
// e.g. "bold 12px Verdana"
function measureText(txt, font) {
var id = 'text-width-tester',
$tag = $('#' + id);
if (!$tag.length) {
$tag = $('<span id="' + id + '" style="display:none;font:' + font + ';">' + txt + '</span>');
$('body').append($tag);
} else {
$tag.css({font:font}).html(txt);
}
return {
width: $tag.width(),
height: $tag.height()
}
}
var size = measureText("spam", "bold 12px Verdana");
console.log(size.width + ' x ' + size.height); // 35 x 12.6
Um dies in einen gegebenen Raum einzupassen, ist es ein wenig kniffliger - Sie müssen die font-size
Erklärung und skalieren Sie sie entsprechend. Je nachdem, wie Sie vorgehen, ist es vielleicht am einfachsten, wenn Sie die verschiedenen Teile der font
Erklärung. Eine Größenänderungsfunktion könnte wie folgt aussehen (auch dies ist natürlich jQuery-abhängig):
function shrinkToFill(input, fontSize, fontWeight, fontFamily) {
var $input = $(input),
txt = $input.val(),
maxWidth = $input.width() + 5, // add some padding
font = fontWeight + " " + fontSize + "px " + fontFamily;
// see how big the text is at the default size
var textWidth = measureText(txt, font).width;
if (textWidth > maxWidth) {
// if it's too big, calculate a new font size
// the extra .9 here makes up for some over-measures
fontSize = fontSize * maxWidth / textWidth * .9;
font = fontWeight + " " + fontSize + "px " + fontFamily;
// and set the style on the input
$input.css({font:font});
} else {
// in case the font size has been set small and
// the text was then deleted
$input.css({font:font});
}
Sie können dies hier in Aktion sehen: http://jsfiddle.net/nrabinowitz/9BFQ8/5/
Tests scheinen zu zeigen, dass dies ein wenig ruckelig ist, zumindest in Google Chrome, da nur ganzzahlige Schriftgrößen verwendet werden. Möglicherweise können Sie es besser machen mit einer em
-basierte Schriftartendeklaration, obwohl dies ein wenig knifflig sein könnte - Sie müssten sicherstellen, dass die 1em
Die Größe für den Textbreitentester ist die gleiche wie für die Eingabe.