js切换背景颜色

Posted junyi-bk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js切换背景颜色相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>

<button onclick="stopColor()">停止切换</button>

<script>
var myVar = setInterval(function() setColor() , 50);

function setColor()
var x = document.body;
x.style.backgroundColor = x.style.backgroundColor == "yellow" ? "pink" : "yellow";


function stopColor()
clearInterval(myVar);

</script>

</body>
</html>

以上是关于js切换背景颜色的主要内容,如果未能解决你的问题,请参考以下文章

html中点击按钮怎样改变div背景颜色

按钮背景颜色切换

如何使用背景图像切换背景颜色[重复]

用php怎么实现每刷新一次网页,背景颜色自动切换,且输出当前颜色代码​

chart.js怎么去掉背景颜色

chart.js 雷达图怎么修改背景颜色