bir linke tıklayarak ya da sadece fare ile üzerine giderek sitenizin arkaplanını değiştirmek için öncelikle şu kodu sitenizdeki
<head>....</head> kodları arasına ekleyiniz
<script language="JavaScript">
<!--
// Copyright 2001 by www.CodeBelly.com
// Please do *not* remove this notice.
var backColor = new Array(); // don't change this
// Enter the colors you wish to use. Follow the
// pattern to use more colors. The number in the
// brackets [] is the number you will use in the
// function call to pick each color.
backColor[0] = '#FF0000';
backColor[1] = '#00FF00';
backColor[2] = '#0000FF';
backColor[3] = '#FFFFFF';
// Do not edit below this line.
//-----------------------------
function changeBG(whichColor){
document.bgColor = backColor[whichColor];
}
//-->
</script>daha sonra ise aşağıdaki link kodlarını sitenizin istediğiniz bölümüne ekleyiniz<!-- Example One -- changing bg color with mouseOver. Set the number in the () in the changeBG() function to the number of the color in the brackets in the backColor[] array to select a given color. //--> <a href="#" onMouseOver="javascript:changeBG(2)">Change</a> <!-- Example Two -- changing bg color with a mouse click. Set the number in the () in the changeBG() function to the number of the color in the brackets in the backColor[] array to select a given color. //--> <a href="javascript:changeBG(1)">Change</a>
kullanımı ise şöyledir:
size ilk verdiğim koddaki renk ayarlarını zevkinize göre düzenleyiniz ve 2. koddaki linkleri istediğiniz yere ekleyip keyfini sürünüz
ingilizcesi olanlar için de verdiğim kodlarda açıklama sunulmuş
iyi çalışmalar