Код JavaScript "Анимированная модель солнечной системы" (для Opera и IE)
<script language="JavaScript">
var rad = 30;
var xoff = 350;
var yoff = 177;
var pi = Math.PI;
var inc = pi/50;
var inc1 = pi/150;
var inc2 = pi/230;
var inc3 = pi/305;
var inc4 = pi/395;
var inc5 = pi/465;
var inc6 = pi/510;
var inc7 = pi/575;
var inc8 = pi/630;
var pos=pos1=pos2=pos3=pos4=pos5=pos6=pos7=pos8=0;
function move() {
pos += inc;
pos1 += inc1;
pos1 += inc1;
pos2 += inc2;
pos2 += inc2;
pos3 += inc3;
pos3 += inc3;
pos4 += inc4;
pos4 += inc4;
pos5 += inc5;
pos5 += inc5;
pos6 += inc6;
pos6 += inc6;
pos7 += inc7;
pos7 += inc7;
pos8 += inc8;
pos8 += inc8;
var rad =150
obj.left = (rad * Math.cos(pos)) + xoff-1;
obj.top = (rad*.3 * Math.sin(pos)) + yoff+25;
var rad = 200;
obj1.left = (rad * Math.cos(pos1)) + xoff+19;
obj1.top = (rad*.3 * Math.sin(pos1)) + yoff+20;
var rad = 255;
obj2.left = (rad * Math.cos(pos2)) + xoff+27;
obj2.top = (rad*.4 * Math.sin(pos2)) + yoff+29;
var rad = 300;
obj3.left = (rad * Math.cos(pos3)) + xoff+32;
obj3.top = (rad*.4 * Math.sin(pos3)) + yoff+34;
var rad = 358;
obj4.left = (rad * Math.cos(pos4)) + xoff+33;
obj4.top = (rad*.4 * Math.sin(pos4)) + yoff+37;
var rad = 415;
obj5.left = (rad * Math.cos(pos5)) + xoff+39;
obj5.top = (rad*.4 * Math.sin(pos5)) + yoff+41;
var rad = 482;
obj6.left = (rad * Math.cos(pos6)) + xoff+46;
obj6.top = (rad*.5 * Math.sin(pos6)) + yoff+48;
var rad = 542;
obj7.left = (rad * Math.cos(pos7)) + xoff+54;
obj7.top = (rad*.5 * Math.sin(pos7)) + yoff+57;
var rad = 582;
obj8.left = (rad * Math.cos(pos8)) + xoff+64;
obj8.top = (rad*.5 * Math.sin(pos8)) + yoff+68;
setTimeout("move()",100);
}
</script>
</head>
<body background="nebo.jpg"> <ALIGN="RIGHT">
<marquee behavior="scroll" direction="up" background="nebo.jpg"
scrollAmount="1"width="15%" height="12%" hspace="70" loop="3">
<font color="#FFFFFF" size="3">Данная программа предназначена не для изучения Солнечной системы,
а для знакомства с языком JavaScript Автор Ш.Саидмамбетов</font>
</marquee>
<table Border=0 Align="RIGHT" vAlign="top">
<tr bgcolor="#F9FE25">
<td><center><a href="solnce.txt">Просмотр скрипта</a></center></td>
</tr>
</table>
<div id="obj" style="position:absolute; left:400px; top:10px; width:10px; height:31px">
<img src="Mercuri.gif" width=10 height=10 border=0></div>
<div id="obj1" style="position:absolute; left:400px; top:10px; width:10px; height:31px">
<img src="venus.gif" width=18 height=18 border=0></div>
<div id="obj2" style="position:absolute; left:400px; top:10px; width:10px; height:31px">
<img src="zemla.gif" width=25 height=25 border=0 title="Земля"></div>
<div id="obj3" style="position:absolute; left:400px; top:10px; width:10px; height:31px">
<img src="Mars.gif" width=17 height=17 border=0></div>
<div id="obj4" style="position:absolute; left:400px; top:10px; width:10px; height:31px">
<img src="yopiter.gif" width=80 height=50 border=0></div>
<div id="obj5" style="position:absolute; left:400px; top:10px; width:10px; height:31px">
<img src="saturne.gif" width=50 height=50 border=0></div>
<div id="obj6" style="position:absolute; left:400px; top:10px; width:10px; height:31px">
<img src="uran.gif" width=14 height=12 border=0></div>
<div id="obj7" style="position:absolute; left:400px; top:10px; width:10px; height:31px">
<img src="Neptun.gif" width=15 height=14 border=0></div>
<div id="obj8" style="position:absolute; left:400px; top:10px; width:10px; height:31px">
<img src="Pluton.gif" width=17 height=16 border=0></div>
<div style="position:absolute; left:330px; top:157px; width:39px; height:42px">
<img src="Sunny.gif" width=90 height=90 border=0>
</div>
<script language="JavaScript">
var NN = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 4);
var obj = (NN) ? document.obj : document.all.obj.style;
var obj1 = (NN) ? document.obj1 : document.all.obj1.style;
var obj2 = (NN) ? document.obj2 : document.all.obj2.style;
var obj3 = (NN) ? document.obj3 : document.all.obj3.style;
var obj4 = (NN) ? document.obj4 : document.all.obj4.style;
var obj5 = (NN) ? document.obj5 : document.all.obj5.style;
var obj6 = (NN) ? document.obj6 : document.all.obj6.style;
var obj7 = (NN) ? document.obj7 : document.all.obj7.style;
var obj8 = (NN) ? document.obj8 : document.all.obj8.style;
move();
</script>