คืนค่าการตั้งค่าทั้งหมด
คุณแน่ใจว่าต้องการคืนค่าการตั้งค่าทั้งหมด ?
ลำดับตอนที่ #5 : โค๊ด เม้าส์เป็นจุด แล้วแตกกระจายคับ
ก๊อปไปได้เลยคับ เป็นโค๊ดดิบนะคับ ยาวมากๆ
<!-- Start of Stars: High-light or select all, copy and paste in Body -->
<LAYER name="a0" left=10 top=10 bgcolor="#FF0000" clip="0,0,2,2"></LAYER>
<LAYER name="a1" left=10 top=10 bgcolor="#FF8000" clip="0,0,2,2"></LAYER>
<LAYER name="a2" left=10 top=10 bgcolor="#FFFF00" clip="0,0,2,2"></LAYER>
<LAYER name="a3" left=10 top=10 bgcolor="#00FF00" clip="0,0,2,2"></LAYER>
<LAYER name="a4" left=10 top=10 bgcolor="#0000FF" clip="0,0,2,2"></LAYER>
<LAYER name="a5" left=10 top=10 bgcolor="#FF00FF" clip="0,0,2,2"></LAYER>
<LAYER name="a6" left=10 top=10 bgcolor="#FFFFFF" clip="0,0,2,2"></LAYER>
<DIV id="starsDiv" style="position:absolute;top:0px;left:0px">
<DIV style="position:relative;width:2px;height:2px;background:#ffffff;font-size:2px"></DIV>
<DIV style="position:relative;width:2px;height:2px;background:#ffff00;font-size:2px"></DIV>
<DIV style="position:relative;width:2px;height:2px;background:#ffa000;font-size:2px"></DIV>
<DIV style="position:relative;width:2px;height:2px;background:#ff0000;font-size:2px"></DIV>
<DIV style="position:relative;width:2px;height:2px;background:#00ff00;font-size:2px"></DIV>
<DIV style="position:relative;width:2px;height:2px;background:#0000ff;font-size:2px"></DIV>
<DIV style="position:relative;width:2px;height:2px;background:#FF00FF;font-size:2px"></DIV>
</DIV>
<SCRIPT language="JavaScript">
/*
Mouse Stars
Copyright Kurt Grigg (website.lineone.net/~kurt.grigg/javascript)
To add more shock to your site, visit www.DHTML Shock.com
*/
if (document.layers)
{window.captureEvents(Event.MOUSEMOVE);}
var yBase = 200;
var xBase = 200;
var step = .2;
var currStep = 0;
var Xpos = 1;
var Ypos = 1;
var i = 0;
var j = 0;
if (document.all)
{
function MoveHandler(){
Xpos = document.body.scrollLeft+event.x;
Ypos = document.body.scrollTop+event.y;
}
document.onmousemove = MoveHandler;
}
else if (document.layers)
{
function xMoveHandler(evnt){
Xpos = evnt.pageX;
Ypos = evnt.pageY;
}
window.onMouseMove = xMoveHandler;
}
function animateLogo(){
if (document.all)
{
yBase = window.document.body.offsetHeight/4;
xBase = window.document.body.offsetWidth/4;
}
else if (document.layers)
{
yBase = window.innerHeight/4;
xBase = window.innerWidth/4;
}
if (document.all)
{
for ( i = 0 ; i < starsDiv.all.length ; i++ )
{
starsDiv.all[i].style.top = Ypos + Math.cos((20*Math.sin(currStep/20))+i*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
starsDiv.all[i].style.left = Xpos + Math.sin((20*Math.sin(currStep/20))+i*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
}
}
else if (document.layers)
{
for ( j = 0 ; j < 7 ; j++ ) //7 is number of NS layers!
{
var templayer="a"+j
document.layers[templayer].top = Ypos + Math.cos((20*Math.sin(currStep/20))+j*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
document.layers[templayer].left =Xpos + Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
}
}
currStep += step;
setTimeout("animateLogo()", 10);
}
animateLogo();
// -->
</SCRIPT>
<!-- End of stars! -->
ความคิดเห็น