Forum'da ara:
Ara


Yazar Mesaj
Mesaj21.06.2008, 00:08 (UTC)    
Mesaj konusu:

otomatik link açıcı

Kod:
<a href="" onmouseover="parent.location='http://www.djkresimli.tr.gg/'">Mouse imlecini, bu link üzerine getiriniz...</A>

______________


Mesaj21.06.2008, 00:08 (UTC)    
Mesaj konusu:

otomatik link açıcı

Kod:
<a href="" onmouseover="parent.location='http://www.djkresimli.tr.gg/'">Mouse imlecini, bu link üzerine getiriniz...</A>

______________


Mesaj21.06.2008, 00:10 (UTC)    
Mesaj konusu:

butonlu takvim uygulaması

Kod:
<html>
<head> <meta http-equiv="Content-Type" content="text/html;
charset=windows-1254"> <meta name="GENERATOR" content="Arslan
?ahin - Tr.Pandela.Org"> <title></title> </head>
<body bgcolor="#FFFFFF"> <center> <font size="7"
face="arial" color="Red"><b></b></font><br>
<head> <****** LANGUAGE="JavaScript"> var dDate = new
Date(); var dCurMonth = dDate.getMonth(); var dCurDayOfMonth =
dDate.getDate(); var dCurYear = dDate.getFullYear(); var objPrevElement
= new Object(); ******** fToggleColor(myElement) { var toggleColor =
"#ff0000"; if (myElement.id == "calDateText") { if (myElement.color ==
toggleColor) { myElement.color = ""; } else { myElement.color =
toggleColor; } } else if (myElement.id == "calCell") { for (var i in
myElement.children) { if (myElement.children[i].id == "calDateText") {
if (myElement.children[i].color == toggleColor) {
myElement.children[i].color = ""; } else { myElement.children[i].color
= toggleColor; } } } } } ******** fSetSelectedDay(myElement){ if
(myElement.id == "calCell") { if
(!isNaN(parseInt(myElement.children["calDateText"].innerText))) {
myElement.bgColor = "#c0c0c0"; objPrevElement.bgColor = "";
document.all.calSelectedDate.value =
parseInt(myElement.children["calDateText"].innerText); objPrevElement =
myElement; } } } ******** fGetDaysInMonth(iMonth, iYear) { var
dPrevDate = new Date(iYear, iMonth, 0); return dPrevDate.getDate(); }
******** fBuildCal(iYear, iMonth, iDayStyle) { var aMonth = new
Array(); aMonth[0] = new Array(7); aMonth[1] = new Array(7); aMonth[2]
= new Array(7); aMonth[3] = new Array(7); aMonth[4] = new Array(7);
aMonth[5] = new Array(7); aMonth[6] = new Array(7); var dCalDate = new
Date(iYear, iMonth-1, 1); var iDayOfFirst = dCalDate.getDay(); var
iDaysInMonth = fGetDaysInMonth(iMonth, iYear); var iVarDate = 1; var i,
d, w; if (iDayStyle == 2) { aMonth[0][0] = "Pazar"; aMonth[0][1] =
"Pazartesi"; aMonth[0][2] = "Sali"; aMonth[0][3] = "Çarsamba";
aMonth[0][4] = "Persembe"; aMonth[0][5] = "Cuma"; aMonth[0][6] =
"Cumartesi"; } else if (iDayStyle == 1) { aMonth[0][0] = "Paz";
aMonth[0][1] = "Pzt"; aMonth[0][2] = "Sal"; aMonth[0][3] = "Çar";
aMonth[0][4] = "Per"; aMonth[0][5] = "Cum"; aMonth[0][6] = "Cmt"; }
else { aMonth[0][0] = "Pz"; aMonth[0][1] = "Pt"; aMonth[0][2] = "Sl";
aMonth[0][3] = "Çr"; aMonth[0][4] = "Pr"; aMonth[0][5] = "Cm";
aMonth[0][6] = "Ct"; } for (d = iDayOfFirst; d < 7; d++) {
aMonth[1][d] = iVarDate; iVarDate++; } for (w = 2; w < 7; w++) { for
(d = 0; d < 7; d++) { if (iVarDate <= iDaysInMonth) {
aMonth[w][d] = iVarDate; iVarDate++; } } } return aMonth; } ********
fDrawCal(iYear, iMonth, iCellWidth, iCellHeight, sDateTextSize,
sDateTextWeight, iDayStyle) { var myMonth; myMonth = fBuildCal(iYear,
iMonth, iDayStyle); document.write("<table border='1'>")
document.write("<tr>"); document.write("<td align='center'
style='FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT: bold'>" +
myMonth[0][0] + "</td>"); document.write("<td align='center'
style='FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT: bold'>" +
myMonth[0][1] + "</td>"); document.write("<td align='center'
style='FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT: bold'>" +
myMonth[0][2] + "</td>"); document.write("<td align='center'
style='FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT: bold'>" +
myMonth[0][3] + "</td>"); document.write("<td align='center'
style='FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT: bold'>" +
myMonth[0][4] + "</td>"); document.write("<td align='center'
style='FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT: bold'>" +
myMonth[0][5] + "</td>"); document.write("<td align='center'
style='FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT: bold'>" +
myMonth[0][6] + "</td>"); document.write("</tr>"); for (w =
1; w < 7; w++) { document.write("<tr>") for (d = 0; d < 7;
d++) { document.write("<td align='left' valign='top' width='" +
iCellWidth + "' height='" + iCellHeight + "' id=calCell
style='CURSOR:Hand' onMouseOver='fToggleColor(this)'
onMouseOut='fToggleColor(this)' onclick=fSetSelectedDay(this)>"); if
(!isNaN(myMonth[w][d])) { document.write("<font id=calDateText
onMouseOver='fToggleColor(this)'
style='CURSOR:Hand;FONT-FAMILY:Arial;FONT-SIZE:" + sDateTextSize +
";FONT-WEIGHT:" + sDateTextWeight + "' onMouseOut='fToggleColor(this)'
onclick=fSetSelectedDay(this)>" + myMonth[w][d] + "</font>");
} else { document.write("<font id=calDateText
onMouseOver='fToggleColor(this)'
style='CURSOR:Hand;FONT-FAMILY:Arial;FONT-SIZE:" + sDateTextSize +
";FONT-WEIGHT:" + sDateTextWeight + "' onMouseOut='fToggleColor(this)'
onclick=fSetSelectedDay(this)> </font>"); }
document.write("</td>") } document.write("</tr>"); }
document.write("</table>") } ******** fUpdateCal(iYear, iMonth) {
myMonth = fBuildCal(iYear, iMonth); objPrevElement.bgColor = "";
document.all.calSelectedDate.value = ""; for (w = 1; w < 7; w++) {
for (d = 0; d < 7; d++) { if (!isNaN(myMonth[w][d])) {
calDateText[((7*w)+d)-7].innerText = myMonth[w][d]; } else {
calDateText[((7*w)+d)-7].innerText = " "; } } } } // End -->
</******> </head> <body> <******
language="JavaScript" for=window event=onload> <!-- Begin var
dCurDate = new Date();
frmCalendarSample.tbSelMonth.options[dCurDate.getMonth()].selected =
true; for (i = 0; i < frmCalendarSample.tbSelYear.length; i++) if
(frmCalendarSample.tbSelYear.options[i].value ==
dCurDate.getFullYear()) frmCalendarSample.tbSelYear.options[i].selected
= true; // End --> </******> <form name="frmCalendarSample"
method="post" action=""> <input type="hidden"
name="calSelectedDate" value=""> <table border="1"> <tr>
<td> <select name="tbSelMonth"
onchange='fUpdateCal(frmCalendarSample.tbSelYear.value,
frmCalendarSample.tbSelMonth.value)'> <option
value="1">Ocak</option> <option
value="2">Subat</option> <option
value="3">Mart</option> <option
value="4">Nisan</option> <option
value="5">Mayis</option> <option
value="6">Haziran</option> <option
value="7">Temmuz</option> <option
value="8">Agustos</option> <option
value="9">Eylül</option> <option
value="10">Ekim</option> <option
value="11">Kasim</option> <option
value="12">Aralik</option> </select> <select
name="tbSelYear"
onchange='fUpdateCal(frmCalendarSample.tbSelYear.value,
frmCalendarSample.tbSelMonth.value)'> <option
value="1998">1998</option> <option
value="1999">1999</option> <option
value="2000">2000</option> <option
value="2001">2001</option> <option
value="2002">2002</option> <option
value="2003">2003</option> <option
value="2004">2004</option> </select> </td>
</tr> <tr> <td> <****** language="JavaScript">
var dCurDate = new Date(); fDrawCal(dCurDate.getFullYear(),
dCurDate.getMonth()+1, 30, 30, "12px", "bold", 1); </******>
</td> </tr> </table> </form> </body>
</body> </html>

______________


Mesaj21.06.2008, 00:10 (UTC)    
Mesaj konusu:

Türkçe Dil Kurumu

Kod:
<html>
<head> <title> </title> <style> body,td {
scrollbar-face-color: #dee3ef; scrollbar-higlight-color: white;
scrollbar-shadow-color: #66db0f; scrollbar-3dlight-color: #b5c7dd;
scrollbar-arrow-color: #999999; scrollbar-track-color: #b5c7dd;
scrollbar-darkshadow-color: #b5c7dd; font-family:Tahoma,Verdana;
font-size:11px; background-color: #ffffff; } a:link { color:
midnightblue; text-decoration: none } a:visited { color: darkblue;
text-decoration: none } a:hover { color: red; text-decoration:
underline } a:active { color: blue; text-decoration: none } input {
text-indent: 1px; background-color: #ffffff; color: #400080; border:
1px solid #2d4488; font-size: 11PX; font-weight: none; font-family:
verdana,tahoma,arial } .border{ border: 1px solid #000000; }
</style> </head> <body> <table align="center">
<FORM ACTION = "http://tdk.gov.tr/TDKSOZLUK/sozbul.asp"
target="_blank"" name=KELBUL> <tr><td><b>Türkçe
Kelime</b></td><td> <INPUT style="WIDTH: 250px;
HEIGHT: 18px" size=34 name=KELIME> <INPUT type=submit value=" Ara
" name=YENIARAMA> </td></tr> <tr><td
colspan="2" align="center">Türk Dil Kurumu Tabanl? Arama
Yap?lmaktad?r.</td></tr> </form> </body>
</html>

______________


Mesaj21.06.2008, 00:11 (UTC)    
Mesaj konusu:

ne kadar zamandır yaşıyorsun ekle

Kod:
<html>
<head> <meta http-equiv="Content-Type" content="text/html;
charset=windows-1254"> <meta name="GENERATOR" content="Microsoft
FrontPage Express 2.0"> <title>Team Giga</title>
</head> <body bgcolor="#E8E6D0"> <******
language="JavaScript"
src="Ya??n?%20Hesapla_dosyalar/otobar.js"></******>
<p><br> </p> <p align="center"><font
color="#000000" size="3" face="verdana"><strong><u>Ya?am
Süreni Hesapla</u></strong></font></p> <div
align="center"><center> <table border="2" cellspacing="1"
width="100%" bgcolor="#E8E6D0"> <TBODY> <tr> <td
align="center" width="100%"><table border="0" cellpadding="0"
cellspacing="0" width="665"> <TBODY> <tr> <td
align="middle" colspan="8" width="761"><font size="2"
face="verdana">A?a??daki Kutulara Bilebildiginiz Kadar? ile Do?um
Senesi , Ay ,Günü , Saati , Dakikas? , Sn nizi yaz?n?z ve Start
Butonuna Basarak Detayl? Ya??n?z? Ö?renin. Otomati?i Secti?iniz
Takdirde Zaman i?lemeye devam edecektir.</font></td>
</tr> </TBODY> </table> </td> </tr>
<tr> <td align="center" width="100%"><p
align="center"><****** language="JavaScript"> <!-- var
acc=0 var show_time=false; var timerID=null; var blank=":"; ********
stopit() { if (show_time) clearTimeout(timerID); show_time=false; }
******** startit(form) { var today=new Date(); var
curyear=today.getYear() if (curyear < 1000) curyear+=1900 var
acc1=acc; var display_value =" Time: " + curyear if (today.getMinutes()
< 10) { display_value+=":0" + today.getMinutes(); } else {
display_value+=":" + today.getMinutes(); } if (today.getSeconds() <
10){ display_value+=":0" + today.getSeconds(); } else {
display_value+=":" + today.getSeconds(); } if (today.getHours()>=12)
{ display_value+=" P.M. " } else { display_value+=" A.M. " }
display_value += " Date: " + (today.getMonth()+1) + "/" +
today.getDate() + "/" + curyear; window.status=display_value;
writeyourAge(acc1) timerID=setTimeout("startit()",100); show_time=true;
} ******** writeyourAge(onval) { if (onval == 0) { normal() } else {
accurate() } } ******** normal() { TheDate = new Date(); Month =
TheDate.getMonth(); Day = TheDate.getDate(); Year = TheDate.getYear();
if (Year< 1000) Year+=1900 Hour = TheDate.getHours(); Minute =
TheDate.getMinutes(); Second = TheDate.getSeconds(); by =
(document.my_age.birthy.value); bm = (document.my_age.birthm.value); bd
= (document.my_age.birthd.value); bh = (document.my_age.birthh.value);
bmn = (document.my_age.birthmin.value); bs =
(document.my_age.births.value); BDate = Date.UTC(by,bm,bd,bh,bmn,bs);
if (Year<2000) { CDate =
Date.UTC(Year,Month,Day,Hour,Minute,Second); } else { CDate =
Date.UTC(Year,Month,Day,Hour,Minute,Second); } Age = CDate-BDate +
(1000*60*60*24*30); document.my_age.yrs.value =
parseInt(((((Age/1000)/60)/60)/24)/365.25,10);
document.my_age.dys.value = parseInt((((Age/1000)/60)/60)/24,10);
document.my_age.hrs.value = parseInt(((Age/1000)/60)/60,10);
document.my_age.mins.value = parseInt((Age/1000)/60,10);
document.my_age.secs.value = parseInt(Age/1000,10); } ********
accurate() { TheDate = new Date(); Month = TheDate.getMonth(); Day =
TheDate.getDate(); Year = TheDate.getYear(); if (Year< 1000)
Year+=1900 Hour = TheDate.getHours(); Minute = TheDate.getMinutes();
Second = TheDate.getSeconds(); by = (document.my_age.birthy.value); bm
= (document.my_age.birthm.value); bd = (document.my_age.birthd.value);
bh = (document.my_age.birthh.value); bmn =
(document.my_age.birthmin.value); bs = (document.my_age.births.value);
BDate = Date.UTC(by,bm,bd,bh,bmn,bs); if (Year<2000) { CDate =
Date.UTC(Year,Month,Day,Hour,Minute,Second); } else { CDate =
Date.UTC(Year,Month,Day,Hour,Minute,Second); } Age = CDate-BDate +
(1000*60*60*24*30); document.my_age.yrs.value =
((((Age/1000)/60)/60)/24)/365.25; document.my_age.dys.value =
(((Age/1000)/60)/60)/24; document.my_age.hrs.value =
((Age/1000)/60)/60; document.my_age.mins.value = (Age/1000)/60;
document.my_age.secs.value = Age/1000; } //--> </******>
</p> <form name="my_age"> <table border="0"
cellpadding="2" cellspacing="0" width="460"> <TBODY>
<tr> <td colspan="5">Sene <input type="text" size="4"
name="birthy"> Ay<input type="text" size="2" name="birthm">
Gün<input type="text" size="2" name="birthd"> Saat<input
type="text" size="2" name="birthh"> Dakika<input type="text"
size="2" name="birthmin"> Saniye<input type="text" size="2"
name="births"> </td> </tr> <tr> <td
colspan="5">Otomatik<input type="radio" name="accurate"
value="ON" onclick="if (this.checked) {acc=1}"> Normal<input
type="radio" checked name="accurate" value="OFF" onclick="if
(this.checked) {acc=0}"> <input type="button" name="norm" value="
Start " onclick="startit()"> <input type="button" name="norm"
value=" Stop " onclick="stopit()"> </td> </tr>
<tr> <td width="10"> </td> <td width="50">
</td> <td width="300"><input type="text" size="20"
name="yrs"></td> <td width="100">Sene</td>
</tr> <tr> <td> </td> <td> </td>
<td><input type="text" size="20" name="dys"></td>
<td>Gün</td> </tr> <tr> <td> </td>
<td> </td> <td><input type="text" size="20"
name="hrs"></td> <td>Saat</td> </tr>
<tr> <td> </td> <td> </td>
<td><input type="text" size="20" name="mins"></td>
<td>Dakika</td> </tr> <tr> <td><font
color="#FFFFFF">.</font></td> <td> </td>
<td><input type="text" size="20" name="secs"></td>
<td>Saniye</td> </tr> </TBODY> </table>
</form> </td> </tr> </TBODY></table>
</center></div> </body> </html>

______________


Mesaj21.06.2008, 00:11 (UTC)    
Mesaj konusu:

sitende bilgi göster

Kod:
<html>
<head> <style type="text/css"> #hintbox{ /*CSS for pop up
hint box */ position:absolute; top: 0; background-color: lightyellow;
width: 150px; /*Default width of hint.*/ padding: 3px; border:1px solid
black; font:normal 11px Verdana; line-height:18px; z-index:100;
border-right: 3px solid black; border-bottom: 3px solid black;
visibility: hidden; } .hintanchor{ /*CSS for link that shows hint
onmouseover*/ font-weight: bold; color: navy; margin: 3px 8px; }
</style> <****** type="text/**********"> var
horizontal_offset="9px" //horizontal offset of hint box from anchor
link /////No further editting needed var vertical_offset="0"
//horizontal offset of hint box from anchor link. No need to change.
var ie=document.all var
ns6=document.getElementById&&!document.all ********
getposOffset(what, offsettype){ var totaloffset=(offsettype=="left")?
what.offsetLeft : what.offsetTop; var parentEl=what.offsetParent; while
(parentEl!=null){ totaloffset=(offsettype=="left")?
totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent; } return totaloffset; } ********
iecompattest(){ return (document.compatMode &&
document.compatMode!="BackCompat")? document.documentElement :
document.body } ******** clearbrowseredge(obj, whichedge){ var
edgeoffset=(whichedge=="rightedge")? parseInt(horizontal_offset)*-1 :
parseInt(vertical_offset)*-1 if (whichedge=="rightedge"){ var
windowedge=ie && !window.opera?
iecompattest().scrollLeft+iecompattest().clientWidth-30 :
window.pageXOffset+window.innerWidth-40
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth if
(windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure+obj.offsetWidth+parseInt(horizontal_offset)
} else{ var windowedge=ie && !window.opera?
iecompattest().scrollTop+iecompattest().clientHeight-15 :
window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight if
(windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetHeight } return
edgeoffset } ******** showhint(menucontents, obj, e, tipwidth){ if
((ie||ns6) && document.getElementById("hintbox")){
dropmenuobj=document.getElementById("hintbox")
dropmenuobj.innerHTML=menucontents
dropmenuobj.style.left=dropmenuobj.style.top=-500 if (tipwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=tipwidth } dropmenuobj.x=getposOffset(obj,
"left") dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj,
"rightedge")+obj.offsetWidth+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj,
"bottomedge")+"px" dropmenuobj.style.visibility="visible"
obj.onmouseout=hidetip } } ******** hidetip(e){
dropmenuobj.style.visibility="hidden" dropmenuobj.style.left="-500px" }
******** createhintbox(){ var divblock=document.createElement("div")
divblock.setAttribute("id", "hintbox")
document.body.appendChild(divblock) } if (window.addEventListener)
window.addEventListener("load", createhintbox, false) else if
(window.attachEvent) window.attachEvent("onload", createhintbox) else
if (document.getElementById) window.onload=createhintbox
</******> </head> <body> <form>
<b>Username:</b> <input type="text" class="test" />
<a href="#" _fcksavedurl="#" _fcksavedurl="#" _fcksavedurl="#"
class="hintanchor" onMouseover="showhint('Please choose a username.
Should consist of alphanumeric characters only.', this, event,
'150px')">[?]</a><br /> <b>Password:</b>
<input type="text" class="test" /> <a href="#"
_fcksavedurl="#" _fcksavedurl="#" _fcksavedurl="#" class="hintanchor"
onMouseover="showhint('Enter the desired password.
<b>Must</b> be 8 characters or longer.', this, event,
'200px')">[?]</a><br /> </form> </body>
</html>

______________


Mesaj21.06.2008, 00:12 (UTC)    
Mesaj konusu:

site giriş çıkış efekti

Kod:
<meta
http-equiv="Page-Exit" content="blendTrans(Duration=5.0)"> - blend
<meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=0)"> - box in <meta
http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=1)"> - box out <meta
http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=2)"> - circle in
<meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=3)"> - circle out
<meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=4)"> - wipe up <meta
http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=5)"> - wipe down
<meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=6)"> - wipe right
<meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=7)"> - wipe left
<meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=8)"> - vertical blinds
<meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=9)"> - horizontal
blinds <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=10)"> - checkboard
across <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=11)"> - checkboard
across <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=12)"> - randome
dissolve <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=13)"> - split vertical
in <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=14)"> - split vertical
out <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=15)"> - split
horizontal in <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=16)"> - split
horizontal out <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=17)"> - strips left
down <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=18)"> - strips left up
<meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=19)"> - strips right
down <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=20)"> - strips right up
<meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=21)"> - random bars
horizontal <meta http-equiv="Page-Exit"
content="revealTrans(Duration=5.0,Transition=22)"> - random bars
vertical <META HTTP-EQUIV="Site-Enter"
content="revealTrans(Duration=1.0,Transition=23)"> <META
HTTP-EQUIV="Site-Exit"
content="revealTrans(Duration=1.0,Transition=23)">

______________


Mesaj21.06.2008, 00:13 (UTC)    
Mesaj konusu:

Status barda değişen yazı

Kod:
<script language="JavaScript">
            <!--
            // please keep these lines on when you copy the source
            // made by: Eren ORTAKCI www.erenet.net
            var currentmsg = 0
            var MsgTime = 2000
            var MsgEndTime = 4000
            function initArray(n) {
            this.length = n;
            for (var i =1; i <= n; i++) {
            this[i] = ' '
            }
            }
            msg = new initArray(4)
            msg[0]="This is Message 1"
            msg[1]="Now it is Message 2"
            msg[2]="No, do not say I have to do 3 messages"
            msg[3]="Yeah, this message, 4, is the last"
            function msgrotator() {
            window.status = msg[currentmsg]
            if (currentmsg > msg.length - 1) {
            currentmsg = 0
            setTimeout("msgrotator()", MsgEndTime)
            }
            else {
            currentmsg = currentmsg + 1
            setTimeout("msgrotator()", MsgTime)
            }
            }
            msgrotator();
            //-->
            </script>
           

______________


Mesaj21.06.2008, 00:13 (UTC)    
Mesaj konusu:

site çözünürlük ayarları

Kod:
<script language="JavaScript">
            //This Script is Copyright Eren ORTAKCI© 2000
            //If you are going to use this code, you MUST leave these
            //lines of script UNEDITED!
            if ((screen.width == 1024) && (screen.height == 768))
            {
            alert('Your resolution is set at the recommended size that is required for this page to be viewed correctly.')
            }
            else
            if ((screen.width == 800) && (screen.height == 600))
            {
            alert('Ekran çözünürlüğün 1024x768 olmalıydı!')
            }
            else
            if ((screen.width == 640) && (screen.height == 480))
            {
            alert('Your resolution is too low to view this page correctly, please change it!')
            }
            document.write('Ekran çözünürlüğün - '  + screen.width + ' x ' +  screen.height)
            </script>

______________


Mesaj21.06.2008, 23:27 (UTC)    
Mesaj konusu:

Buton şeklinde Mail gönder

Kod:
<FORM>
<INPUT TYPE="button" VALUE="Mail Gönder" onClick="parent.location='mailto:sen( at )mailadresin.com?subject=Merhaba &cc=kendi( at )seninmail.com'">
</FORM>

______________


Mesaj21.06.2008, 23:29 (UTC)    
Mesaj konusu:

Belirttiğiniz süre ile aktif olan buton uygulaması bu uygulama ile flood yapılmasını engelleyebilirsiniz. En üst satırda secs yazan yerde kaç saniye sora aktif olacağını belirtiniz artık gerisi size kalmış.
Kod:

<form name="myform"> <input name="submitbtn" type="button" value="Kayıt et"> </form> <script type="text/javascript"> <!-- var secs = 120; var wait = secs * 1000; document.myform.submitbtn.disabled=true; for(i=1;i<=secs;i++) { window.setTimeout("update(" + i + ")", i * 1000); } window.setTimeout("timer()", wait); function update(num) { if(num == (wait/1000)) { document.myform.submitbtn.value = "Kayıt ET"; } else { printnr = (wait/1000)-num; document.myform.submitbtn.value = "Lütfen (" + printnr + ") saniye bekleyin !"; } } function timer() { document.myform.submitbtn.disabled=false; } //--> </script>

______________


Mesaj21.06.2008, 23:32 (UTC)    
Mesaj konusu:

Hareketli buton yazıya göre şekil almakta

Kod:
<!--- KAYNAK: http://www.djkresimli.tr.gg --->
<BODY onload=StartHeadliner() onunload=StopHeadliner()>
<SCRIPT language=JavaScript>

growWait=90
expandWait=120
scrollWait=100
scrollWidth=40
lineMax=4
lines=new Array(lineMax)

lines[1]=new Line("kerimdj hizmetidir", "http://www.djkresimli.tr.gg", Expand, 2000)
lines[2]=new Line("HİZMETLERİMİZDEN YARARLANABİLMEK İÇİN,", "http://www.djkresimli.tr.gg", Scroll, 1000)
lines[3]=new Line("Üye olmanıza gerek yoktur...", "http://www.djkresimli.tr.gg", Static, 2500)
lines[4]=new Line("@İstek öneri ve şikayetleriniz için", "mailto:djkresimli( at )kerimdj.net.com", Grow, 3000)

lineText=""
timerID=null
timerRunning=false
spaces=""
charNo=0
charMax=0
charMiddle=0
lineNo=0
lineWait=0

function Line(text, url, type, wait) {
   this.text=text
   this.url=url
   this.Display=type
   this.wait=wait

}

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>

<FORM name=formDisplay>
<DIV align=center>
<CENTER>
<P><INPUT class=stHeadLiner name=buttonFace onclick=GotoUrl(lines[lineNo].url) type=button value=" WWW."></P></CENTER></DIV></FORM>
<!--- KAYNAK: http://www.djkresimli.tr.gg --->

______________


Mesaj21.06.2008, 23:32 (UTC)    
Mesaj konusu:

butonun üstüne geldiginizde ikinci yazı çıkıyor

Kod:
<input type="submit" value="Click here" onmouseover="this.value='== Just click once! =='"  onmouseout="this.value='Click here!'">

______________


Mesaj21.06.2008, 23:33 (UTC)    
Mesaj konusu:

bir yazıya yada her hangi bir yere yönlendirme

Kod:
<button onclick="window.navigate('http://www.kerimdj.tr.gg')">Buton1</button>  <br><br>
<label onclick="window.navigate('http://www.kerimdj.tr.gg')">Yazı 1</label>

______________


Mesaj21.06.2008, 23:35 (UTC)    
Mesaj konusu:

Browserınızdaki ileri geri elementlerini web sayfanızda olmasını saglar

Kod:
<!-- ONE STEP TO INSTALL BACKWARD-FORWARD:



  1.  Copy the coding into the BODY of your HTML document  -->



<!-- STEP ONE: Paste this code into the BODY of your HTML document  -->



<BODY>



<div align="center">

<!--  This script and many more are available free online at

  The JavaScript Source!! http://javascript.internet.com

  Created by: Lee Underwood  -->

<form>

<input type="button" value="Back" onclick="history.back()">

<input type="button" value="Forward" onclick="history.forward()">

</form>

</div>



<p><center>

<font face="arial, helvetica" size"-2">Free JavaScripts provided<br>

by <a href="http://djkresimli.tr.gg">The JavaScript arcihve</a></font>

</center><p>



<!-- Script Size:  0.60 KB -->

______________


Önceki mesajları göster:   


Powered by phpBB © 2001, 2005 phpBB Group
Türkçe Çeviri: phpBB Türkiye & Erdem Çorapçıoğlu