JavaScript Tutorial/Style/Color

Материал из Web эксперт
Версия от 08:24, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Change element color by setting the color style

<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
function colorchange()
{
    head1.style.color = "red";
}
function colorchangeback()
{
    head1.style.color = "black";
}
//  -->
</script>
</head>
<body>
<h1 id="head1" onMouseover="colorchange()" onMouseout="colorchangeback()">
Welcome to this page!</h1>
<P>A lot of interesting text goes here!</p>
</body>
</html>


div.style.color="#fff";

<html>
<head>
<title>PrettyPretty</title>
<script type="text/javascript">
document.onclick=changeElement;
function changeElement() {
  var div = document.getElementById("div1");
  div.style.backgroundColor="#00f";
  div.style.width="500px";
  div.style.color="#fff";
  div.style.height="200px";
  div.style.paddingLeft="50px";
  div.style.paddingTop="50px";
  div.style.fontFamily="Verdana";
  div.style.fontSize="2em";
  div.style.border="3px dashed #ff0";
  div.style.position="absolute";
  div.style.left="200px";
  div.style.top="100px";
  div.style.textDecoration="underline";
}
</script>
</head>
<body>
<div id="div1">
This is a DIV element. Click me to see the change.
</div>
</body>
</html>