我有一个 div,随机单词按批分配。为了显示这些词,我使用了这个脚本:
<script src="jquery.fittext.js"></script>
<script type="text/javascript">
$("#my_random_word").fitText(0.6);
</script>
问题是当我的单词超过 10 个字母时,对于屏幕来说太宽了,而不是调整大小,它只是溢出了屏幕的宽度。CSS:
#parent_of_my_random_word {
display: table;
position: absolute;
height: 100%;
width: 100%;
text-align: center;
}
#my_random_word {
color: red;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
user-select: none;
}
有没有办法为超过 10 个字母的单词指定另一个函数,或者我还能做什么?谢谢。