近期做网页设计作业,感觉各种视频网站上的关灯效果很人性化,所以简易的用JavaScript写了一个
附上全部代码
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
#choose{
margin:200px 200px;
}
.daytime{
background: #0D0D0D;
}
.nigth{
background: #FFF;
}
</style>
<script language="javascript" type="text/javascript">
function Switch()
{
var button = document.getElementById("bt"); //通过id获得button
var type = document.body.className; //获得html里body的CSS样式表
if (type == "daytime") //判断类的名称,如果类是"daytime"则点击button后