js特效代码
时间: 2023-07-23 11:04:33 浏览: 93
JS特效代码
以下是一个简单的 JavaScript 特效代码,它可以在页面中创建一个随机颜色的背景:
```html
<!DOCTYPE html>
<html>
<head>
<title>JavaScript特效代码</title>
<script type="text/javascript">
function changeBgColor() {
var r = Math.floor(Math.random() * 256);
var g = Math.floor(Math.random() * 256);
var b = Math.floor(Math.random() * 256);
document.body.style.backgroundColor = "rgb(" + r + "," + g + "," + b + ")";
}
setInterval(changeBgColor, 1000); //每一秒钟执行一次changeBgColor函数
</script>
</head>
<body>
<h1>JavaScript特效代码</h1>
<p>这是一个随机颜色背景的特效</p>
</body>
</html>
```
该代码使用 `Math.random()` 函数生成 0 到 255 之间的随机数来生成 RGB 颜色,然后将其应用于页面的背景颜色。 `setInterval()` 函数每秒钟执行一次 `changeBgColor()` 函数,以改变背景颜色。
阅读全文