Bi kaç HTML kodu!

Mous'u nereye götürürseniz yazı da arkasından geliyor!...

<style TYPE="text/css">
<!--
.spanstyle { COLOR: red; FONT-SIZE: 12pt; FONT-WEIGHT: bold; POSITION: absolute; TOP: -50px; VISIBILITY: visible}
-->
</style>


<script>
var x,y
var step=8
var flag=0
var message="* H A S A N!"
message=message.split("")
var xpos=new Array()
for (i=0;i<=message.length-1;i++) {
xpos=-50
}
var ypos=new Array()
for (i=0;i<=message.length-1;i++) {
ypos=-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 yaz() {
if (flag==1 && document.all) {
for (i=message.length-1; i>=1; i--) {
xpos=xpos[i-1]+step
ypos=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
thisspan.posTop=ypos
}
}

else if (flag==1 && document.layers) {
for (i=message.length-1; i>=1; i--) {
xpos=xpos[i-1]+step
ypos=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
thisspan.top=ypos
}
}
var timer=setTimeout("yaz()",10)
}
</script>





<body onload="yaz()" bgcolor="#CCCC99" text="#FFFFCC" link="#003366" vlink="#000033" alink="#FFFFCC"><!--mstheme--><font face="Verdana">

<!--mstheme--></font><table border="0" cellpadding="0" cellspacing="0" width="100">
<tr>
<td valign="top"><!--mstheme--><font face="Verdana"><!--mstheme--></font><table border="0" cellpadding="0" cellspacing="0" width="100">
<tr>
<td><!--mstheme--><font face="Verdana"><!--mstheme--></font><table border="0" cellpadding="0" cellspacing="0" width="100">
<tr>
<td><!--mstheme--><font face="Verdana"><!--mstheme--></font><table border="0" cellpadding="0" cellspacing="0" width="100"
<tr>


<script>
<!-- Beginning of JavaScript -
for (i=0;i<=message.length-1;i++) {
document.write("<span id='span"+i+"' class='spanstyle'>")
document.write(message)
document.write("</span>")
}
if (document.layers){
document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;
// - End of JavaScript - -->
</script>
 
Hareketli ve efekt dolu bir yazı için buraya tıklayın......

<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=windows-1254">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>JavaFILE</title>
<base target="leftframe">
<style>
</head>

<body onload="StartHeadliner()" onunload="StopHeadliner()">

<p></style> <script language="JavaScript">

<!-- start hide

// Delay in milliseconds for the growing headliner

growWait=90



// Delay in milliseconds for the expanding headliner

expandWait=120



// Delay in milliseconds for the scrolling headliner

scrollWait=100



// Number of characters in scrolling zone for the scrolling headliner

scrollWidth=40



// Number of lines, specify as much as you want to use

lineMax=4

lines=new Array(lineMax)



// Define the lines (Text to display, url, effect, time to wait)

lines[1]=new Line("Meraba Sayın Webmaster Arkadaşım Bu Birinci Mesaj Bitmedi Dur", "http://www.adresonline.gen.tr.tc", Expand, 2000)

lines[2]=new Line("FREE Banners! FREE 3D Logos! FREE Fonts İstiyorsan! Click Here! Yani Tikla", "http://www.adresonline.gen.tr.tc", Scroll, 1000)

lines[3]=new Line("Program in JavaScript!Ve Dahasını İstiyorsan Yine Click Here!", "http://www.adresonline.gen.tr.tc", Static, 2500)

lines[4]=new Line("Hadi Bana email atın...Nedersiniz Hoş Olmazmı!", "mailto:[email protected]?subject=The Headliner&[email protected]", Grow, 3000)



// Some other variables (just don't change)

lineText=""

timerID=null

timerRunning=false

spaces=""

charNo=0

charMax=0

charMiddle=0

lineNo=0

lineWait=0



// Define line object

function Line(text, url, type, wait) {

this.text=text

this.url=url

this.Display=type

this.wait=wait

}



// Fill a string with n chars c

function StringFill(c, n) {

s=""

while (--n >= 0) {

s+=c

}

return s

}



function Static() {

document.formDisplay.buttonFace.value=this.text

timerID=setTimeout("ShowNextLine()", this.wait)

}



function Grow() {

lineText=this.text

lineWait=this.wait

charMax=lineText.length

TextGrow()

}



function TextGrow() {

if (charNo <= charMax) {

document.formDisplay.buttonFace.value=lineText.substring(0, charNo)

charNo++

timerID=setTimeout("TextGrow()", growWait)

}

else {

charNo=0

timerID=setTimeout("ShowNextLine()", lineWait)

}

}



function Expand() {

lineText=this.text

charMax=lineText.length

charMiddle=Math.round(charMax / 2)

lineWait=this.wait

TextExpand()

}



function TextExpand() {

if (charNo <= charMiddle) {

document.formDisplay.buttonFace.value=lineText.substring(charMiddle - charNo, charMiddle + charNo)

charNo++

timerID=setTimeout("TextExpand()", expandWait)

}

else {

charNo=0

timerID=setTimeout("ShowNextLine()", lineWait)

}

}



function Scroll() {

spaces=StringFill(" ", scrollWidth)

lineText=spaces+this.text

charMax=lineText.length

lineText+=spaces

lineWait=this.wait

TextScroll()

}



function TextScroll() {

if (charNo <= charMax) {

document.formDisplay.buttonFace.value=lineText.substring(charNo, scrollWidth+charNo)

charNo++

timerID=setTimeout("TextScroll()", scrollWait)

}

else {

charNo=0

timerID=setTimeout("ShowNextLine()", lineWait)

}

}



function StartHeadliner() {

StopHeadliner()

timerID=setTimeout("ShowNextLine()", 1000)

timerRunning=true

}



function StopHeadliner() {

if (timerRunning) {

clearTimeout(timerID)

timerRunning=false

}

}



function ShowNextLine() {

(lineNo < lineMax) ? lineNo++ : lineNo=1

lines[lineNo].Display()

}



function GotoUrl(url)

{

top.location.href=url

}

// end hide -->

</script> </p>

<p align="center"><a href="http://www.adresonline.gen.tr.tc"><img
src="http://zevzek34.sitemynet.com/banner2.gif"
alt="Gençliğin Yeni Adres Portalı...!" border="0"></a> </p>

<form name="formDisplay">
<p align="center"><input type="button" name="buttonFace"
value="Unlimited - Limit Yok - Kaynak Çok"
class="stHeadLiner" onclick="GotoUrl(lines[lineNo].url)"> </p>
</form>

<p align="center"><a href="http://www.adresonline.gen.tr.tc">Download
the Script</a></p>

<p align="center"><a href="http://www.adresonline.gen.tr.tc"><font
color="#FF0000" size="2" face="Verdana"><strong>Adres</strong></font><font
color="#0000FF" size="2" face="Verdana"><strong>Online</strong></font></a></p>

<p align="center"><a href="http://www.adresonline.gen.tr.tc"><font
size="2" face="Verdana"><strong>İnternet Kaynakları</strong></font></a></p>
</body>
</html>
 
sağolasın dostum
 
güzel iş temiz iş
 
emeğin için sağol
 
walla ellerın dert gormesın. guzel seyler koymussun
 
teşşekkürler maxsoft eline sağlık
 
ellerine sağlık kardeş senden bir istegim olcak ben siteme küçük bir chat sayfası koymak istiyorum sende html kodu varmı?
 
iiikide bikac tane qoymusun :D paslasim icin saol
 
yönlendirme kodu bilen varsa yazabilirmi arkadaslar
 
kardesim süpersin yaa cok işime yaradı ellerine saalık ;)
 
ellerine sağlık kurban bunlar çok güzel htmll ler
 
nerede olursa olsun alıp burayakoymuşsun ya ellerine sağlık kardeşim..
 
Geri
Üst