我这里有一些问题。
一(如何在此代码中添加随机字体大小?
b(如何设置最小(3(和最大(8(个字符的限制?
爪哇语
function randomString(Length) {
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
for (var i = 0; i < Length; i++)
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
function ChangingRandomString(Length) {
setInterval(function () {
document.getElementById("random").innerHTML = randomString(Length);
}, 2000);
}
用于添加随机喜好大小
document.getElementById("myP").style.fontSize = Math.floor((Math.random() * 8) + 3)+"px";
你必须实现自己的代码来随机化它
如何设置最小(3(和最大(8(个字符的限制?
function randomString(Length)
{
if(Length < 3) Length = 3;
if(Length > 8) Length = 8;
<!DOCTYPE html>
<html>
<body>
<p id="myP">This is a paragraph.</p>
<button type="button" onclick="myFunction()">Set font size</button>
<script>
function myFunction() {
document.getElementById("myP").style.fontSize = Math.floor((Math.random() * 8) + 3)+"px";
}
</script>
</body>
</html>
这应该可以完成您的工作