Сообщение от serg123
|
var rand=Math.Round(Math.Rand()*backgrounds.length);
|
нет таких функций!!!
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<style type="text/css">
div{
height: 30px;
width: 30px;
}
</style>
</head>
<body>
<div id="fon"></div>
<script>
var backgrounds = new Array();
backgrounds[0] = 'http://javascript.ru/forum/images/smilies/agree.gif';
backgrounds[1] = 'http://javascript.ru/forum/images/smilies/cray.gif';
var rand = Math.floor(Math.random()*backgrounds.length);
document.getElementById('fon').style.background = 'url('+backgrounds[rand]+') bottom no-repeat';
</script>
</body>
</html>