"Schalter" auf Index zum Hintergrundfarbe ändern
Verfasst: 27.05.2012 00:41
Gibt es eine Mod die auf dem Index einen Button einbaut, der auf Knopfdruck zwischen zwei Hintergrundfarben hin und her schaltet?
Grüße
Theo
Grüße
Theo
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
<!--
function changeBackground(color) {
document.body.style.background = color;
}
//-->
</script>
<style type="text/css">
.button {
background-color: yellow;
margin: 4px;
padding: 5px;
border:1px solid #888;
text-decoration: none;
color: black;
font-weight: bold;
text-transform: uppercase;
}
</style>
</head>
<body style="background-color: blue;">
<ul>
<a class="button" href="#" onclick="changeBackground('red')">rot</a></li>
<a class="button" href="#" onclick="changeBackground('blue')">blau</a></li>
</ul>
</body>
</html>