Search in forum:
Search


Author Message
Post12/08/2008 at 7:39pm (UTC)    
Post subject: amazing website effects

Quote:
<script>
A=document.getElementById
B=document.all;
C=document.layers;
T1=new Array("trail1.gif",38,35,"trail2.gif",30,31,"trail3.gif",28,26,"trail4.gif",22,21,"trail5.gif",16,16,"trail6.gif",10,10)

var offsetx=15 //x offset of trail from mouse pointer
var offsety=10 //y offset of trail from mouse pointer

nos=parseInt(T1.length/3)
rate=50
ie5fix1=0;
ie5fix2=0;
rightedge=B? document.body.clientWidth-T1[1] : window.innerWidth-T1[1]-20
bottomedge=B? document.body.scrollTop+document.body.clientHeight-T1[2] : window.pageYOffset+window.innerHeight-T1[2]

for (i=0;i<nos;i++){
createContainer("CUR"+i,i*10,i*10,i*3+1,i*3+2,"","<img src='"+T1[i*3]+"' width="+T1[(i*3+1)]+" height="+T1[(i*3+2)]+" border=0>")
}

function createContainer(N,Xp,Yp,W,H,At,HT,Op,St){
with (document){
write((!A && !B) ? "<layer id='"+N+"' left="+Xp+" top="+Yp+" width="+W+" height="+H : "<div id='"+N+"'"+" style='position:absolute;left:"+Xp+"; top:"+Yp+"; width:"+W+"; height:"+H+"; ");
if(St){
if (C)
write(" style='");
write(St+";' ")
}
else write((A || B)?"'":"");
write((At)? At+">" : ">");
write((HT) ? HT : "");
if (!Op)
closeContainer(N)
}
}

function closeContainer(){
document.write((A || B)?"</div>":"</layer>")
}

function getXpos(N){
if (A)
return parseInt(document.getElementById(N).style.left)
else if (B)
return parseInt(B[N].style.left)
else
return C[N].left
}

function getYpos(N){
if (A)
return parseInt(document.getElementById(N).style.top)
else if (B)
return parseInt(B[N].style.top)
else
return C[N].top
}

function moveContainer(N,DX,DY){
c=(A)? document.getElementById(N).style : (B)? B[N].style : (C)? C[N] : "";
if (!B){
rightedge=window.innerWidth-T1[1]-20
bottomedge=window.pageYOffset+window.innerHeight-T1[2]
}
c.left=Math.min(rightedge, DX+offsetx);
c.top=Math.min(bottomedge, DY+offsety);
}
function cycle(){
//if (IE5)
if (document.all&&window.print){
ie5fix1=document.body.scrollLeft;
ie5fix2=document.body.scrollTop;
}
for (i=0;i<(nos-1);i++){
moveContainer("CUR"+i,getXpos("CUR"+(i+1)),getYpos("CUR"+(i+1)))
}
}

function newPos(e){
moveContainer("CUR"+(nos-1),(B)?event.clientX+ie5fix1:e.pageX+2,(B)?event.clientY+ie5fix2:e.pageY+2)
}

function getedgesIE(){
rightedge=document.body.clientWidth-T1[1]
bottomedge=document.body.scrollHeight-T1[2]
}

if (B){
window.onload=getedgesIE
window.onresize=getedgesIE
}

if(document.layers)
document.captureEvents(Event.MOUSEMOVE)
document.onmousemove=newPos
setInterval("cycle()",rate)
</script>

______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>


Last edited by pinoybands on Mon Dec 08, 2008 7:44 pm; edited 1 time in total
Post12/08/2008 at 7:41pm (UTC)    
Post subject: Fade-away cursor trail script

<SCRIPT language="Javascript1.2">
<!--
var isNS = (navigator.appName == "Netscape");
layerRef = (isNS) ? "document" : "document.all";
styleRef = (isNS) ? "" : ".style";

var queue = new Array();

var NUM_OF_TRAIL_PARTS = 5

for (x=1; x < 6; x++) {
eval("trailSpriteFrame" + x + " = new Image(28,36);");
eval("trailSpriteFrame" + x + ".src = 'trailgif" + x + ".gif';");
}


function trailSpriteObj(anID) {
this.trailSpriteID = "trailSprite" + anID;
this.imgRef = "trailSprite" + anID + "img";
this.currentFrame = 1;
this.animateTrailSprite = animateTrailSprite;
}

function animateTrailSprite() {
if (this.currentFrame <6 ) {
if (isNS) {
eval("document." + this.trailSpriteID +".document['"+ this.imgRef + "'].src = trailSpriteFrame" + this.currentFrame + ".src");
} else {
eval("document['" + this.imgRef + "'].src = trailSpriteFrame" + this.currentFrame + ".src");
}
this.currentFrame ++;
} else {
eval(layerRef + '.' + this.trailSpriteID + styleRef + '.visibility = "hidden"');
}
}



function processAnim() {
for(x=0; x < NUM_OF_TRAIL_PARTS; x++)
queue[x].animateTrailSprite();
}

function processMouse(e) {
currentObj = shuffleQueue();
if (isNS) {
eval("document." + currentObj + ".left = e.pageX - 10 ;");
eval("document." + currentObj + ".top = e.pageY + 10;");
} else {
eval("document.all." + currentObj + ".style.pixelLeft = event.clientX + document.body.scrollLeft - 10 ;");
eval("document.all." + currentObj + ".style.pixelTop = event.clientY + document.body.scrollTop + 10;");
}
}

function shuffleQueue() {
lastItemPos = queue.length - 1;
lastItem = queue[lastItemPos];
for (i = lastItemPos; i>0; i--)
queue[i] = queue[i-1];
queue[0] = lastItem;

queue[0].currentFrame = 1;
eval(layerRef + '.' + queue[0].trailSpriteID + styleRef + '.visibility = "visible"');

return queue[0].trailSpriteID;
}

function init() {

for(x=0; x<NUM_OF_TRAIL_PARTS; x++)
queue[x] = new trailSpriteObj(x+1) ;

if (isNS) { document.captureEvents(Event.MOUSEMOVE); }
document.onmousemove = processMouse;

setInterval("processAnim();",25);
}
if (document.all||document.layers)
window.onload = init;

//-->
</SCRIPT>
______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>
Post12/08/2008 at 7:42pm (UTC)    
Post subject: Elastic Trail Script

Code:
<div id="dot0" style="position: absolute; visibility: hidden; height: 11; width: 11;">
   <img src="bullet.gif" height=11 width=11>
</div>
<div id="dot1" style="position: absolute; height: 11; width: 11;">
   <img src="bullet.gif" height=11 width=11>
</div>
<div id="dot2" style="position: absolute; height: 11; width: 11;">
   <img src="bullet.gif" height=11 width=11>
</div>
<div id="dot3" style="position: absolute; height: 11; width: 11;">
   <img src="bullet.gif" height=11 width=11>
</div>
<div id="dot4" style="position: absolute; height: 11; width: 11;">
   <img src="bullet.gif" height=11 width=11>
</div>
<div id="dot5" style="position: absolute; height: 11; width: 11;">
   <img src="bullet.gif" height=11 width=11>
</div>
<div id="dot6" style="position: absolute; height: 11; width: 11;">
   <img src="bullet.gif" height=11 width=11>
</div>

<script LANGUAGE="JavaScript">
<!-- hide code

/*
 visit http://pinoybands.page.tl
*/

var nDots = 7;

var Xpos = 0;
var Ypos = 0;

  // fixed time step, no relation to real time
var DELTAT = .01;
  // size of one spring in pixels
var SEGLEN = 10;
  // spring constant, stiffness of springs
var SPRINGK = 10;
  // all the physics is bogus, just picked stuff to
  // make it look okay
var MASS = 1;
// Positive XGRAVITY pulls right, negative pulls left
// Positive YGRAVITY pulls down, negative up
var XGRAVITY = 0;
var YGRAVITY = 50;
// RESISTANCE determines a slowing force proportional to velocity
var RESISTANCE = 10;
  // stopping criterea to prevent endless jittering
  // doesn't work when sitting on bottom since floor
  // doesn't push back so acceleration always as big
  // as gravity
var STOPVEL = 0.1;
var STOPACC = 0.1;
var DOTSIZE = 11;
  // BOUNCE is percent of velocity retained when
  // bouncing off a wall
var BOUNCE = 0.75;

var isNetscape = navigator.appName=="Netscape";

  // always on for now, could be played with to
  // let dots fall to botton, get thrown, etc.
var followmouse = true;

var dots = new Array();
init();

function init()
{
    var i = 0;
    for (i = 0; i < nDots; i++) {
        dots[i] = new dot(i);
    }
   
    if (!isNetscape) {
        // I only know how to read the locations of the
        // <LI> items in IE
        //skip this for now
        // setInitPositions(dots)
    }
   
    // set their positions
    for (i = 0; i < nDots; i++) {
        dots[i].obj.left = dots[i].X;
        dots[i].obj.top = dots[i].Y;
    }
   
   
    if (isNetscape) {
        // start right away since they are positioned
        // at 0, 0
        startanimate();
    } else {
        // let dots sit there for a few seconds
        // since they're hiding on the real bullets
        setTimeout("startanimate()", 1000);
    }
}



function dot(i)
{
    this.X = Xpos;
    this.Y = Ypos;
    this.dx = 0;
    this.dy = 0;
    if (isNetscape) {   
        this.obj = eval("document.dot" + i);
    } else {
        this.obj = eval("dot" + i + ".style");
    }
}


function startanimate() {   
    setInterval("animate()", 20);
}


// This is to line up the bullets with actual LI tags on the page
// Had to add -DOTSIZE to X and 2*DOTSIZE to Y for IE 5, not sure why
// Still doesn't work great
function setInitPositions(dots)
{
    // initialize dot positions to be on top
    // of the bullets in the <ul>
    var startloc = document.all.tags("LI");
    var i = 0;
    for (i = 0; i < startloc.length && i < (nDots - 1); i++) {
        dots[i+1].X = startloc[i].offsetLeft
            startloc[i].offsetParent.offsetLeft - DOTSIZE;
        dots[i+1].Y = startloc[i].offsetTop +
            startloc[i].offsetParent.offsetTop + 2*DOTSIZE;
    }
    // put 0th dot above 1st (it is hidden)
    dots[0].X = dots[1].X;
    dots[0].Y = dots[1].Y - SEGLEN;
}

// just save mouse position for animate() to use
function MoveHandler(e)
{
    Xpos = e.pageX;
    Ypos = e.pageY;    
    return true;
}

// just save mouse position for animate() to use
function MoveHandlerIE() {
    Xpos = window.event.x + document.body.scrollLeft;
    Ypos = window.event.y + document.body.scrollTop;    
}

if (isNetscape) {
    document.captureEvents(Event.MOUSEMOVE);
    document.onMouseMove = MoveHandler;
} else {
    document.onmousemove = MoveHandlerIE;
}


function vec(X, Y)
{
    this.X = X;
    this.Y = Y;
}

// adds force in X and Y to spring for dot[i] on dot[j]
function springForce(i, j, spring)
{
    var dx = (dots[i].X - dots[j].X);
    var dy = (dots[i].Y - dots[j].Y);
    var len = Math.sqrt(dx*dx + dy*dy);
    if (len > SEGLEN) {
        var springF = SPRINGK * (len - SEGLEN);
        spring.X += (dx / len) * springF;
        spring.Y += (dy / len) * springF;
    }
}


function animate() {   
    // dots[0] follows the mouse,
    // though no dot is drawn there
    var start = 0;
    if (followmouse) {
        dots[0].X = Xpos;
        dots[0].Y = Ypos;   
        start = 1;
    }
   
    for (i = start ; i < nDots; i++ ) {
       
        var spring = new vec(0, 0);
        if (i > 0) {
            springForce(i-1, i, spring);
        }
        if (i < (nDots - 1)) {
            springForce(i+1, i, spring);
        }
       
        // air resisitance/friction
        var resist = new vec(-dots[i].dx * RESISTANCE,
            -dots[i].dy * RESISTANCE);
       
        // compute new accel, including gravity
        var accel = new vec((spring.X + resist.X)/MASS + XGRAVITY,
            (spring.Y + resist.Y)/ MASS + YGRAVITY);
       
        // compute new velocity
        dots[i].dx += (DELTAT * accel.X);
        dots[i].dy += (DELTAT * accel.Y);
       
        // stop dead so it doesn't jitter when nearly still
        if (Math.abs(dots[i].dx) < STOPVEL &&
            Math.abs(dots[i].dy) < STOPVEL &&
            Math.abs(accel.X) < STOPACC &&
            Math.abs(accel.Y) < STOPACC) {
            dots[i].dx = 0;
            dots[i].dy = 0;
        }
       
        // move to new position
        dots[i].X += dots[i].dx;
        dots[i].Y += dots[i].dy;
       
        // get size of window
        var height, width;
        if (isNetscape) {
            height = window.innerHeight + window.pageYOffset;
            width = window.innerWidth + window.pageXOffset;
        } else {   
            height = document.body.clientHeight + document.body.scrollTop;
            width = document.body.clientWidth + document.body.scrollLeft;
        }
       
        // bounce off 3 walls (leave ceiling open)
        if (dots[i].Y >=  height - DOTSIZE - 1) {
            if (dots[i].dy > 0) {
                dots[i].dy = BOUNCE * -dots[i].dy;
            }
            dots[i].Y = height - DOTSIZE - 1;
        }
        if (dots[i].X >= width - DOTSIZE) {
            if (dots[i].dx > 0) {
                dots[i].dx = BOUNCE * -dots[i].dx;
            }
            dots[i].X = width - DOTSIZE - 1;
        }
        if (dots[i].X < 0) {
            if (dots[i].dx < 0) {
                dots[i].dx = BOUNCE * -dots[i].dx;
            }
            dots[i].X = 0;
        }
       
        // move img to new position
        dots[i].obj.left = dots[i].X;         
        dots[i].obj.top =  dots[i].Y;      
    }
}

// end code hiding -->
</script>

______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>


Last edited by pinoybands on Mon Dec 08, 2008 7:49 pm; edited 1 time in total
Post12/08/2008 at 7:48pm (UTC)    
Post subject: Elastic band trail

Code:
<STYLE>
v\:* {
 BEHAVIOR: url(#default#VML)
}
</STYLE>
 
<SCRIPT language="JavaScript1.2">

//Elastic band trail
//By Elastic_Ouille_script@GHindoute.net
//Thanks to MP1515 <MP1515@aramette.net> for all Mathematical model
//, visit http://www.pinoybands.page.tl

var stringcolor="black" //SPECIFY STRING COLOR
var ballsrc="http://www.mydomain.com/superball.gif" //SPECIFY URL TO BALL IMAGE

///No editing required below this line//////////////////////////

if (document.all&&window.print){
document.write('<IMG id=Om style="LEFT: -10px; POSITION: absolute" src="'+ballsrc+'">')
ddx=0;ddy=0;PX=0;PY=0;xm=0;ym=0
OmW=Om.width/2;OmH=Om.height/2
}

function Ouille(){
 x=Math.round(PX+=(ddx+=((xm-PX-ddx)*3)/100))
 y=Math.round(PY+=(ddy+=((ym-PY-ddy)*3-300)/100))
 Om.style.left=x-OmW
 Om.style.top=y-OmH
 elastoc.to=x+","+y
 //elastoc.strokecolor="RGB("+x+","+(2*y)+",0)"
 elastoc.strokecolor=stringcolor
 setTimeout("Ouille()",1)   
}
function momouse(){
 xm=window.event.x+5
 ym=window.event.y+document.body.scrollTop+15
 elastoc.from=xm+","+ym
}

if(document.all&&window.print){
code="<v:line id=elastoc style='LEFT:0;POSITION:absolute;TOP:0' strokeweight='1.5pt'></v:line>"} else {
code="<v:group style='LEFT:-10;WIDTH:100pt;POSITION:absolute;TOP:0;HEIGHT:100pt' coordsize='21600,21600'><v:line id=elastoc style='LEFT:0;WIDTH:100pt;POSITION:absolute;TOP:0;HEIGHT:100pt' strokeweight='1.5pt'></v:line></v:group>"}

if(document.all&&window.print){
document.body.insertAdjacentHTML("afterBegin",code)
document.onmousemove=momouse
Ouille()
}

</SCRIPT>

______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>
Post12/08/2008 at 7:51pm (UTC)    
Post subject: Comet Trail

Code:
<script language="JavaScript">

//Visit http://www.pinoybands.page.tl

colours=new Array('#ff0000','#00ff00','#ffffff','#ff00ff','#ffa500','#ffff00','#00ff00','#ffffff','ff00ff')
n = 10;
y = 0;
x = 0;
n6=(document.getElementById&&!document.all);
ns=(document.layers);
ie=(document.all);
d=(ns||ie)?'document.':'document.getElementById("';
a=(ns||n6)?'':'all.';
n6r=(n6)?'")':'';
s=(ns)?'':'.style';
if (ns){
for (i = 0; i < n; i++)
document.write('<layer name="dots'+i+'" top=0 left=0 width='+i/2+' height='+i/2+' bgcolor=#ff0000></layer>');
}
if (ie)
document.write('<div id="con" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
if (ie||n6){
for (i = 0; i < n; i++)
document.write('<div id="dots'+i+'" style="position:absolute;top:0px;left:0px;width:'+i/2+'px;height:'+i/2+'px;background:#ff0000;font-size:'+i/2+'"></div>');
}
if (ie)
document.write('</div></div>');
(ns||n6)?window.captureEvents(Event.MOUSEMOVE):0;
function Mouse(evnt){
y = (ns||n6)?evnt.pageY+4 - window.pageYOffset:event.y+4;
x = (ns||n6)?evnt.pageX+1:event.x+1;
}
(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;
function animate(){
o=(ns||n6)?window.pageYOffset:0;
if (ie)con.style.top=document.body.scrollTop;
for (i = 0; i < n; i++){
var temp1 = eval(d+a+"dots"+i+n6r+s);

randcolours = colours[Math.floor(Math.random()*colours.length)];
(ns)?temp1.bgColor = randcolours:temp1.background = randcolours;
if (i < n-1){
 var temp2 = eval(d+a+"dots"+(i+1)+n6r+s);
 temp1.top = parseInt(temp2.top);
 temp1.left = parseInt(temp2.left);
 }
else{
 temp1.top = y+o;
 temp1.left = x;
 }
}
setTimeout("animate()",10);
}
animate();
// -->
</script>

______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>


Last edited by pinoybands on Mon Dec 08, 2008 7:52 pm; edited 1 time in total
Post12/08/2008 at 7:55pm (UTC)    
Post subject: magic wand

Code:

<LAYER NAME="a0" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#ffffff" CLIP="0,0,1,1"></LAYER>
<LAYER NAME="a1" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#fff000" CLIP="0,0,1,1"></LAYER>
<LAYER NAME="a2" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#ffa000" CLIP="0,0,1,1"></LAYER>
<LAYER NAME="a3" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#ff00ff" CLIP="0,0,1,1"></LAYER>
<LAYER NAME="a4" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#00ff00" CLIP="0,0,1,1"></LAYER>
<LAYER NAME="a5" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FF00FF" CLIP="0,0,1,1"></LAYER>
<LAYER NAME="a6" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FF0000" CLIP="0,0,1,1"></LAYER>
<LAYER NAME="a7" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#ffffff" CLIP="0,0,2,2"></LAYER>
<LAYER NAME="a8" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#fff000" CLIP="0,0,2,2"></LAYER>
<LAYER NAME="a9" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#ffa000" CLIP="0,0,2,2"></LAYER>
<LAYER NAME="a10" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#ff00ff" CLIP="0,0,2,2"></LAYER>
<LAYER NAME="a11" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#00ff00" CLIP="0,0,2,2"></LAYER>
<LAYER NAME="a12" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#0000ff" CLIP="0,0,2,2"></LAYER>
<LAYER NAME="a13" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FF0000" CLIP="0,0,3,3"></LAYER>


<script language="JavaScript">

/*
visit http://www.pinoybands.page.tl
*/

if (document.all){
with (document){
write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">')
write('<div style="position:relative;width:1px;height:1px;background:#ffffff;font-size:1px;visibility:visible"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#fff000;font-size:1px;visibility:visible"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ffa000;font-size:1px;visibility:visible"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ff00ff;font-size:1px;visibility:visible"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#00ff00;font-size:1px;visibility:visible"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#0000ff;font-size:1px;visibility:visible"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#FF0000;font-size:1px;visibility:visible"></div>')
write('<div style="position:relative;width:2px;height:2px;background:#ffffff;font-size:2px;visibility:visible"></div>')
write('<div style="position:relative;width:2px;height:2px;background:#fff000;font-size:2px;visibility:visible"></div>')
write('<div style="position:relative;width:2px;height:2px;background:#ffa000;font-size:2px;visibility:visible"></div>')
write('<div style="position:relative;width:2px;height:2px;background:#ff00ff;font-size:2px;visibility:visible"></div>')
write('<div style="position:relative;width:2px;height:2px;background:#00ff00;font-size:2px;visibility:visible"></div>')
write('<div style="position:relative;width:2px;height:2px;background:#0000ff;font-size:2px;visibility:visible"></div>')
write('<div style="position:relative;width:3px;height:3px;background:#FF0000;font-size:3px;visibility:visible"></div>')
write('</div>')
}
}


var Clrs=new Array(6)
Clrs[0]='ff0000';
Clrs[1]='00ff00';
Clrs[2]='000aff';
Clrs[3]='ff00ff';
Clrs[4]='fff000';
Clrs[5]='fffff0';



if (document.layers)
{window.captureEvents(Event.MOUSEMOVE);}
var yBase = 200;
var xBase = 200;
var step;
var currStep = 0;
var Xpos = 1;
var Ypos = 1;

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++ )
 {step=3;
  starsDiv.all[i].style.top = Ypos + yBase*Math.cos((currStep + i*4)/12)*Math.cos(0.7+currStep/200);
  starsDiv.all[i].style.left = Xpos + xBase*Math.sin((currStep + i*3)/10)*Math.sin(8.2+currStep/400);
  for (ai=0; ai < Clrs.length; ai++)
    {
     var c=Math.round(Math.random()*[ai]);
    }
    starsDiv.all[i].style.background=Clrs[c];
 }
}

else if (document.layers)
{
 for ( j = 0 ; j < 14 ; j++ ) //number of NS layers!
 {step = 4;
  var templayer="a"+j
  document.layers[templayer].top = Ypos + yBase*Math.sin((currStep + j*4)/12)*Math.cos(0.7+currStep/200);
  document.layers[templayer].left = Xpos + xBase*Math.sin((currStep + j*3)/10)*Math.sin(8.2+currStep/400);
  for (aj=0; aj < Clrs.length; aj++)
    {
     var c=Math.round(Math.random()*[aj]);
    }
    document.layers[templayer].bgColor=Clrs[c];
 }
}
currStep+= step;
setTimeout("animateLogo()", 10);
}
animateLogo();
// -->
</script>

______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>
Post12/08/2008 at 7:56pm (UTC)    
Post subject: DANCING STAR

<LAYER NAME="a0" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a1" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a2" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a3" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a4" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a5" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a6" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>

<script language="JavaScript">
<!--

/*
visit http://pinoybands.page.tl
*/

if (document.all){
document.write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">')
for (xy=0;xy<7;xy++)
document.write('<div style="position:relative;width:3px;height:3px;background:#FFFF00;font-size:2px;visibility:visible"></div>')
document.write('</div>')
}

if (document.layers)
{window.captureEvents(Event.MOUSEMOVE);}
var yBase = 200;
var xBase = 200;
var yAmpl = 10;
var yMax = 40;
var step = .2;
var ystep = .5;
var currStep = 0;
var tAmpl=1;
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)
{
var totaldivs=document.all.starsDiv.all.length
for ( i = 0 ; i < totaldivs ; i++ )
{
var tempdiv=document.all.starsDiv.all[i].style
tempdiv.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);
tempdiv.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++ )
{
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()", 15);
}
animateLogo();
// -->
</script>
______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>
Post12/08/2008 at 7:58pm (UTC)    
Post subject: Cursor Trail Text IE5+ Opr7+

Code:
<style>
.spanstyle {
   position:absolute;
   visibility:visible;
   top:-50px;
   font-size:10pt;
   font-family:Verdana;
      font-weight:bold;
   color:black;
}
</style>
<script>

/*
VISIT http://pinoybands.page.tl
*/

var x,y
var step=20
var flag=0

// Your snappy message. Important: the space at the end of the sentence!!!
var message="MY SITE! "
message=message.split("")

var xpos=new Array()
for (i=0;i<=message.length-1;i++) {
   xpos[i]=-50
}

var ypos=new Array()
for (i=0;i<=message.length-1;i++) {
   ypos[i]=-50
}

function handlerMM(e){
   x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX
   y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY
   flag=1
}

function makesnake() {
   if (flag==1 && document.all) {
       for (i=message.length-1; i>=1; i--) {
            xpos[i]=xpos[i-1]+step
         ypos[i]=ypos[i-1]
       }
      xpos[0]=x+step
      ypos[0]=y
   
      for (i=0; i<message.length-1; i++) {
          var thisspan = eval("span"+(i)+".style")
          thisspan.posLeft=xpos[i]
         thisspan.posTop=ypos[i]
       }
   }
   
   else if (flag==1 && document.layers) {
       for (i=message.length-1; i>=1; i--) {
            xpos[i]=xpos[i-1]+step
         ypos[i]=ypos[i-1]
       }
      xpos[0]=x+step
      ypos[0]=y
   
      for (i=0; i<message.length-1; i++) {
          var thisspan = eval("document.span"+i)
          thisspan.left=xpos[i]
         thisspan.top=ypos[i]
       }
   }
      var timer=setTimeout("makesnake()",30)
}

</script>

______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>
Post12/08/2008 at 8:01pm (UTC)    
Post subject: Cursor Trail Text II IE5+ Opr7+

Quote:
<SCRIPT language=JavaScript1.2>
<!--

/*
visit http://pinoybands.page.tl
*/

var message='Dynamicdrive.com';
var messagecolor='#000000'

//Enter number of seconds for message to display (0=perpetual)
var dismissafter=0

///no need to edit below/////////
var amount=5,ypos=0,xpos=0,Ay=0,Ax=0,By=0,Bx=0,Cy=0,Cx=0,Dy=0,Dx=0,Ey=0,Ex=0;
if (document.layers){
for (i = 0; i < amount; i++)
{document.write('<layer name=ns'+i+' top=0 left=0><font face="Courier New" size=3 color='+messagecolor+'>'+message+'</font></layer>')}
window.captureEvents(Event.MOUSEMOVE);
function nsmouse(evnt){xpos = evnt.pageX;ypos = evnt.pageY;makefollow()}
}
else if (document.all){
document.write("<div id='outer' style='position:absolute;top:0px;left:0px'>");
document.write("<div id='inner' style='position:relative'>");
for (i = 0; i < amount; i++)
{document.write('<div id="text"'+i+' style="position:absolute;top:0px;left:0px;font-family:Courier New;font-size:16px;color:'+messagecolor+'">'+message+'</div>')}
document.write("</div>");
document.write("</div>");
function iemouse(){ypos = document.body.scrollTop + event.y;xpos = document.body.scrollLeft + event.x;makefollow()}
}
function makefollow(){
if (document.layers){
document.layers["ns0"].top=ay;document.layers["ns0"].left=ax;
document.layers["ns1"].top=by;document.layers["ns1"].left=bx;
document.layers["ns2"].top=cy;document.layers["ns2"].left=cx;
document.layers["ns3"].top=Dy;document.layers["ns3"].left=Dx;
document.layers["ns4"].top=Ey;document.layers["ns4"].left=Ex;
}
else if (document.all){
outer.all.inner.all[0].style.pixelTop=ay;outer.all.inner.all[0].style.pixelLeft=ax;
outer.all.inner.all[1].style.pixelTop=by;outer.all.inner.all[1].style.pixelLeft=bx;
outer.all.inner.all[2].style.pixelTop=cy;outer.all.inner.all[2].style.pixelLeft=cx;
outer.all.inner.all[3].style.pixelTop=Dy;outer.all.inner.all[3].style.pixelLeft=Dx;
outer.all.inner.all[4].style.pixelTop=Ey;outer.all.inner.all[4].style.pixelLeft=Ex;
}
}
function move(){
if (dismissafter!=0)
setTimeout("hidetrail()",dismissafter*1000)

if (document.layers){window.onMouseMove = nsmouse}
else if (document.all){window.document.onmousemove = iemouse}
ey = Math.round(Ey+=((ypos+20)-Ey)*2/2);ex = Math.round(Ex+=((xpos+20)-Ex)*2/2);
dy = Math.round(Dy+=(ey - Dy)*2/4);dx = Math.round(Dx+=(ex - Dx)*2/4);
cy = Math.round(Cy+=(dy - Cy)*2/6);cx = Math.round(Cx+=(dx - Cx)*2/6);
by = Math.round(By+=(cy - By)*2/Cool;bx = Math.round(Bx+=(cx - Bx)*2/Cool;
ay = Math.round(Ay+= (by - Ay)*2/10);ax = Math.round(Ax+= (bx - Ax)*2/10);
makefollow();
jumpstart=setTimeout('move()',10);
}

function hidetrail(){
if (document.all){
for (i2=0;i2<amount;i2++){
outer.all.inner.all[i2].style.visibility="hidden"
clearTimeout(jumpstart)
}
}
else if (document.layers){
for (i2=0;i2<amount;i2++){
temp="ns"+i2
document.layers[temp].visibility="hide"
clearTimeout(jumpstart)
}
}
}

window.onload=move;
//-->
</SCRIPT>
Code:


to change the text just configure this "massage"

______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>
Post12/08/2008 at 8:03pm (UTC)    
Post subject: circling text trail

<style type="text/css">
/* Circle Text Styles */
#outerCircleText {
/* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
font-style: italic;
font-weight: bold;
font-family: 'comic sans ms', verdana, arial;
color: #000;
/* End Optional */

/* Start Required - Do Not Edit */
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
/* End Required */
/* End Circle Text Styles */
</style>
<script type="text/javascript">

/* visit http://pinoybands.page.tl
*/

;(function(){

// Your message here (QUOTED STRING)
var msg = "Dynamic Drive! Scripts & More!";

/* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */

// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 24;

// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 2;

// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;

// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 10;

// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.4;

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;

////////////////////// Stop Editing //////////////////////

if (!window.addEventListener && !window.attachEvent || !document.createElement) return;

msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,

mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},

makecircle = function(){ // rotation/positioning
if(init.nopy){
o.style.top = (b || document.body).scrollTop + 'px';
o.style.left = (b || document.body).scrollLeft + 'px';
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
d = document.getElementById('iemsg' + i).style;
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
};
},

drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},

init = function(){ // appends message divs, & sets initial values for positioning arrays
if(!isNaN(window.pageYOffset)){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
d = document.createElement('div'); d.id = 'iemsg' + i;
d.style.height = d.style.width = a + 'px';
d.appendChild(document.createTextNode(msg[i]));
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},

ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener('scroll', ascroll, false);
};

o.id = 'outerCircleText'; o.style.fontSize = size + 'px';

if (window.addEventListener){
window.addEventListener('load', init, false);
document.addEventListener('mouseover', mouse, false);
document.addEventListener('mousemove', mouse, false);
if (/Apple/.test(navigator.vendor))
window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
window.attachEvent('onload', init);
document.attachEvent('onmousemove', mouse);
};

})();

</script>
______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>
Post12/08/2008 at 8:05pm (UTC)    
Post subject: Document CrossHair IE5+

Quote:
<style>
<!--
#leftright, #topdown{
position:absolute;
left:0;
top:0;
width:1px;
height:1px;
layer-background-color:black;
background-color:black;
z-index:100;
font-size:1px;
}
-->
</style>

______________
<img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://lovescents.webs.com/apps/profile/profilePage?id=40574415/" target="_blank" class="postlink"><img src="http://lovescents.webs.com/1.gif" border="0"><span style="font-weight: bold;">Lovescents</span> </a><img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.homepage-help.page.tl/" target="_blank" class="postlink"><span style="font-weight: bold;">SUPPORT PAGE</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/search.php" target="_blank" class="postlink"><span style="font-weight: bold;">SEARCH IN FORUM</span></a> <img src="http://lovescents.webs.com/left.gif" border="0"> <a href="http://www.own-free-website.com/forum/viewtopic.php?t=5512" target="_blank" class="postlink"><span style="font-weight: bold;">PLEASE READ BEFORE POSTING A NEW TOPIC!!</span></a></span>
Post05/11/2010 at 10:57pm (UTC)    
Post subject:

What it is do
Post05/23/2010 at 12:23pm (UTC)    
Post subject:

What are these and where to paste them????? Question Question Question
______________
www.thenetworldpage.tl
Display posts from previous:   


Powered by phpBB © 2001, 2005 phpBB Group