Forum'da ara:
Ara


Yazar Mesaj
Mesaj11.04.2009, 08:20 (UTC)    
Mesaj konusu: full java scriptleri sitene ekle

[code:1:b8227013d0]<p>
<table class="edit_rechts_tabelle" cellspacing="0" cellpadding="0" width="568" border="0">
<tbody>
<tr>
<td class="edit_content_top" background="http://img.webme.com/designs/iceblue/images/cont_top.gif" height="38">
<table cellspacing="0" cellpadding="0" width="568" border="0">
<tbody>
<tr>
<td class="headline2">java scriptleri</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="edit_content" valign="top" align="left" background="http://img.webme.com/designs/iceblue/images/cont2_bg.gif" height="100">
<table cellspacing="0" cellpadding="0" width="100%" border="0">
<tbody>
<tr>
<td class="edit_content_container">
<table cellspacing="0" cellpadding="0" width="100%" border="0">
<tbody>
<tr>
<td class="edit_content_left_spacer" width="3%">&nbsp;</td>
<td class="edit_content_main" width="94%">
<div style="overflow: auto">
<p><br />
<table height="800" cellspacing="5" cellpadding="5" width="600" border="1">
<tbody>
<tr>
<td><textarea>&lt;script&gt;
&lt;!-- hide this script from non-JavaScript browsers
// All code in this script is Copyright(C) 1996, Justin Boyan, jab+j( at )cs.cmu.edu
// For documentation and more info, see: http://www.cs.cmu.edu/~jab/snark/
// This is SNARK Version 1.0, 18 May 1996
var MAX_ENGINES = 30;
var SNARK_STRING = &quot;hunting+the+snark&quot;;
function MakeArray(n) {
for (var i = 1; i &lt;= n; i++) {
this[i] = 0;
}
this.maxlen = n;
this.len = 0;
return this;
}
var engs = new MakeArray(MAX_ENGINES);
function find_substring(needle, haystack) {
var i, needlen = needle.length, haylen = haystack.length;
for (i=0; i&lt;=haylen-needlen; i++) {
if (needle == haystack.substring(i,i+needlen))
return i;
}
return false;
}
function Engine(name, opts, home, search) {
var snark = find_substring(SNARK_STRING, search);
this.name = name;
this.opts = opts;
this.home = home;
this.pre_snark = search.substring(0,snark);
this.post_snark= search.substring(snark+SNARK_STRING.length, search.length);
}
function Add(name, opts, home, search) {
engs.len++;
if (engs.len &lt;= engs.maxlen) {
engs[engs.len] = new Engine(name, opts, home, search)
}
else {
alert(&quot;Better increase MAX_ENGINES: &quot; + engs.len + &quot;&gt;&quot; + engs.maxlen)
}
}
// ADD YOUR OWN SEARCH ENGINES BELOW. (See http://www.cs.cmu.edu/~jab/snark/ )
Add(&quot;Netnews: AltaVista&quot;, &quot;&quot;,
&quot;http://altavista.digital.com/&quot;,
&quot;http://altavista.digital.com/cgi-bin/query?pg=q&amp;what=news&amp;fmt=d&amp;q=hunting+the+snark&quot; );
Add(&quot;Shareware/Windows&quot;, &quot;&quot;,
&quot;http://vsl.cnet.com/&quot;,
&quot;http://vsl.cnet.com/cgi-bin/vsl-master/Find?category=MS-Windows%28all%29&amp;search=hunting+the+snark&amp;logop=and&amp;and=&amp;orfile=++&amp;hits=200&quot; );
Add(&quot;Shareware/Unix&quot;, &quot;&quot;,
&quot;http://vsl.cnet.com/&quot;,
&quot;http://vsl.cnet.com/cgi-bin/vsl-master/Find?category=UNIX&amp;search=hunting+the+snark&amp;logop=and&amp;and=&amp;orfile=++&amp;hits=200&quot; );
Add(&quot;the Web: AltaVista&quot;, &quot;SELECTED&quot;,
&quot;http://altavista.digital.com/&quot;,
&quot;http://altavista.digital.com/cgi-bin/query?pg=q&amp;what=web&amp;fmt=d&amp;q=hunting+the+snark&quot; );
Add(&quot;the Web: Lycos&quot;, &quot;&quot;,
&quot;http://www.lycos.com/&quot;,
&quot;http://twelve.srv.lycos.com/cgi-bin/pursuit?query=hunting+the+snark&quot; );
Add(&quot;the Web: Yahoo!&quot;, &quot;&quot;,
&quot;http://www.yahoo.com/&quot;,
&quot;http://search.yahoo.com/bin/search?p=hunting+the+snark&quot; );
Add(&quot;Weather (City, ST)&quot;, &quot;&quot;,
&quot;http://www.nnic.noaa.gov/cgi-bin/page?pg=netcast&quot;,
&quot;http://www.nnic.noaa.gov/cgi-bin/netcast.do-it?state=hunting+the+snark&amp;area=Local+Forecast&amp;html=yes&amp;match=strong&quot;);
// ADD YOUR OWN SEARCH ENGINES ABOVE. (See http://www.cs.cmu.edu/~jab/snark/ )
function HandleForm(form) {
form.submit(); // This fixes a mysterious Netscape bug. Without this line,
// you can't use &lt;enter&gt; to start the search the first time.
var i, oldq=form.query.value, newq=&quot;&quot;;
for (i=0; i&lt;oldq.length; i++) { // compress [ ]+ into +
var thischar = oldq.charAt(i);
if (thischar != ' ')
newq += thischar;
else if (lastchar != ' ')
newq += '+';
lastchar = thischar;
}
var eng = engs[1+form.service.selectedIndex];
location.href = newq ? eng.pre_snark + newq + eng.post_snark : eng.home;
}
function DisplayForm() {
document.writeln('&lt;CENTER&gt;&lt;FORM OnSubmit=&quot;HandleForm(this); return false&quot;&gt;');
document.writeln('Search &lt;SELECT name=&quot;service&quot;&gt;');
for (i=1; i &lt;= engs.len; i++) {
document.writeln(&quot;&lt;OPTION &quot; + engs[i].opts + &quot;&gt; &quot; + engs[i].name);
}
document.writeln('&lt;/SELECT&gt; for &lt;INPUT size=26 name=&quot;query&quot;&gt;');
document.writeln('&lt;input type=submit value=&quot; ARA&quot;&gt;');
document.writeln('&lt;/FORM&gt; &lt;/CENTER&gt;');
}
DisplayForm();
// done hiding from old browsers --&gt;
&lt;/script&gt;
</textarea><br />
<br />
sade arama motoru</td>
<td><textarea>&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
//
// Script by Jari Aarniala [www.mbnet.fi/~foo -- foo( at )mbnet.fi]
//
function startSearch(){
searchString = document.searchForm.searchText.value;
if(searchString != &quot;&quot;){
searchEngine = document.searchForm.whichEngine.selectedIndex + 1;
finalSearchString = &quot;&quot;;
if(searchEngine == 1){
finalSearchString = &quot;http://www.altavista.digital.com/cgi-bin/query?pg=q&amp;what=web&amp;fmt=.&amp;q=&quot; + searchString;
}
if(searchEngine == 2){
finalSearchString = &quot;http://av.yahoo.com/bin/query?p=&quot; + searchString + &quot;&amp;hc=0&amp;hs=0&quot;;
}
if(searchEngine == 3){
finalSearchString = &quot;http://www.excite.com/search.gw?trace=a&amp;search=&quot; + searchString;
}
if(searchEngine == 4){
finalSearchString = &quot;http://www.hotbot.com/?SW=web&amp;SM=MC&amp;MT=&quot; + searchString + &quot;&amp;DC=10&amp;DE=2&amp;RG=NA&amp;_v=2&amp;act.search.x=89&amp;act.search.y=7&quot;;
}
if(searchEngine == 5){
finalSearchString = &quot;http://www.infoseek.com/Titles?qt=&quot; + searchString + &quot;&amp;col=WW&amp;sv=IS&amp;lk=noframes&amp;nh=10&quot;;
}
if(searchEngine == 6){
finalSearchString = &quot;http://www.lycos.com/cgi-bin/pursuit?adv=%26adv%3B&amp;cat=lycos&amp;matchmode=and&amp;query=&quot; + searchString + &quot;&amp;x=45&amp;y=11&quot;;
}
if(searchEngine == 7){
finalSearchString = &quot;http://netfind.aol.com/search.gw?search=&quot; + searchString + &quot;&amp;c=web&amp;lk=excite_netfind_us&amp;src=1&quot;;
}
location.href = finalSearchString;
}
}
// --&gt;
&lt;/script&gt;
&lt;basefont face=&quot;Verdana, Arial, sans-serif&quot;&gt;&lt;/base&gt;
&lt;form name=&quot;searchForm&quot;&gt;
&lt;table width=320 border cellpadding=3 cellspacing=2 bgcolor=444444&gt;
&lt;tr&gt;
&lt;td bgcolor=lightblue&gt;&lt;font size=1 face=&quot;Verdana, Arial, sans-serif&quot;&gt;Aranacak kelime:&lt;br&gt;
&lt;td bgcolor=lightblue&gt;&lt;font size=1 face=&quot;Verdana, Arial, sans-serif&quot;&gt;Aranacak site:
&lt;td bgcolor=lightblue&gt;
&lt;tr&gt;
&lt;td bgcolor=navajowhite&gt;&lt;input style=&quot;background: dddddd&quot; name=&quot;searchText&quot; type=&quot;text&quot;&gt;
&lt;td bgcolor=navajowhite&gt;
&lt;select style=&quot;background: dddddd&quot; name=&quot;whichEngine&quot;&gt;
&lt;option selected&gt;Altavista
&lt;option&gt;Yahoo!
&lt;option&gt;Excite
&lt;option&gt;Hotbot
&lt;option&gt;Infoseek
&lt;option&gt;Lycos
&lt;option&gt;AOL Netfind
&lt;/select&gt;
&lt;td bgcolor=navajowhite&gt;&lt;input type=&quot;button&quot; value=&quot;ARA&quot; onClick_fckprotectedatt=&quot; onClick=&quot;startSearch()&quot;&quot;&gt;
&lt;/select&gt;
&lt;/table&gt;
&lt;/form&gt;</textarea>tablosu renkli arama motoru</td>
<td><textarea>&lt;b&gt;JavaScript Arama Motoru&lt;/b&gt;&lt;p&gt;
Bu script ile bir defada en fazla &lt;br&gt;
4 sitede arama yaptırabilirsiniz.
&lt;form name=&quot;choose4&quot; action=&quot;javascript:numChecked(document.choose4) //&quot;&gt;&lt;p&gt;
&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Directories&lt;/b&gt;&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;Yahoo&quot;
onClick=&quot;choose4.check1.value='Yahoo'&quot;&gt;Yahoo&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;Magellan&quot;
onClick=&quot;choose4.check1.value='Magellan'&quot;&gt;Magellan&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;Point&quot;
onClick=&quot;choose4.check1.value='Point'&quot;&gt;Point&lt;br&gt;&lt;br&gt;&lt;/td&gt;
&lt;td width=&quot;15&quot;&gt;&lt;/td&gt;
&lt;td&gt;&lt;b&gt;Search Engines&lt;/b&gt;&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;Alta&quot;
onClick=&quot;choose4.check1.value='Alta'&quot;&gt;Alta Vista&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;Open&quot;
onClick=&quot;choose4.check1.value='Open'&quot;&gt;Open Text&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;Lycos&quot;
onClick=&quot;choose4.check1.value='Lycos'&quot;&gt;Lycos&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;Excite&quot;
onClick=&quot;choose4.check1.value='Excite'&quot;&gt;Excite&lt;br&gt;&lt;/td&gt;
&lt;td&gt;&lt;br&gt;&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;Crawler&quot;
onClick=&quot;choose4.check1.value='Crawler'&quot;&gt;Webcrawler&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;InfoSeek&quot;
onClick=&quot;choose4.check1.value='InfoSeek'&quot;&gt;InfoSeek&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;DejaNews&quot;
onClick=&quot;choose4.check1.value='DejaNews'&quot;&gt;DejaNews&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;Inktomi&quot;
onClick=&quot;choose4.check1.value='Inktomi'&quot;&gt;Inktomi&lt;br&gt; &lt;/td&gt;
&lt;td width=&quot;15&quot;&gt;&lt;/td&gt;
&lt;td&gt;&lt;b&gt;Meta Searches&lt;/b&gt;&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;MetaCrawler&quot;
onClick=&quot;choose4.check1.value='MetaCrawler'&quot;&gt;MetaCrawler&lt;br&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;check1&quot; value=&quot;SavySearch&quot;
onClick=&quot;choose4.check1.value='SavySearch'&quot;&gt;SavySearch&lt;BR&gt;&lt;br&gt;&lt;br&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;P&gt;
&lt;B&gt;Aranacak kelimeyi girin&lt;/B&gt;:&lt;BR&gt;
&lt;input type=&quot;text&quot; name=&quot;text&quot; size=30&gt;
&lt;input type=&quot;submit&quot; name=&quot;send&quot; value=&quot;Ara&quot;&gt;
&lt;/form&gt;</textarea>buda baska arama motoru kutularda nerde arayacagini tikliyorsun o ariyor</td>
</tr>
<tr>
<td><textarea>&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot;&gt;&lt;b&gt;Bulunulan sayfa i&ccedil;inde arama
&lt;script language=&quot;JavaScript&quot;&gt;
var NS4 = (document.layers); // hangi browser?
var IE4 = (document.all);
var win = window;
var n = 0;
function findInPage(str) {
var txt, i, found;
if (str == &quot;e&quot;)
return false;
if (NS4) {
if (!win.find(str))
while(win.find(str, false, true))
n++;
else
n++;
if (n == 0)
alert(&quot;Aradığınız kelime sayfada bulunamadı.&quot;);
}
if (IE4) {
txt = win.document.body.createTextRange();
for (i = 0; i &lt;= n &amp;&amp; (found = txt.findText(str)) != false; i++) {
txt.moveStart(&quot;character&quot;, 1);
txt.moveEnd(&quot;textedit&quot;);
}
if (found) {
txt.moveStart(&quot;character&quot;, -1);
txt.findText(str);
txt.select();
txt.scrollIntoView();
n++;
}
else {
if (n &gt; 0) {
n = 0;
findInPage(str);
}
else
alert(&quot;Aradığınız kelime sayfada bulunamadı.&quot;);
}
}
return false;
}
&lt;/script&gt;
&lt;/b&gt;&lt;/font&gt;
&lt;form name=&quot;search&quot; onSubmit_fckprotectedatt=&quot; onSubmit=&quot;return findInPage(this.string.value);&quot;&quot;&gt;
&lt;font size=3&gt;&lt;input name=&quot;string&quot; type=&quot;text&quot; size=15 onChange_fckprotectedatt=&quot; onChange=&quot;n = 0;&quot;&quot;&gt;&lt;/font&gt;
&lt;input type=&quot;submit&quot; value=&quot; Ara &quot;&gt;
&lt;/form&gt;
&lt;strong&gt;ŞAİRLER&lt;/strong&gt; &lt;br&gt;
Ne g&ouml;rd&uuml;kse iyi k&ouml;t&uuml;&lt;br&gt;
&Ouml;m&uuml;r biter biz h&acirc;l&acirc;&lt;br&gt;
S&ouml;yleriz.&lt;br&gt;
&lt;br&gt;
Ne varsa şu d&uuml;nyada&lt;br&gt;
T&uuml;rl&uuml; g&ouml;r&uuml;nt&uuml;ler&lt;br&gt;
Gelsek de sonuna&lt;br&gt;
S&ouml;yleriz.&lt;br&gt;
&lt;br&gt;
Bazan boş g&uuml;nler&lt;br&gt;
Ge&ccedil;er birden dolunca&lt;br&gt;
S&ouml;yleriz.&lt;br&gt;
&lt;br&gt;
Ne biter&lt;br&gt;
Ne kalır ge&ccedil;miş kitaplarda&lt;br&gt;
&Ouml;l&uuml;mden sonra da&lt;br&gt;
S&ouml;yleriz.&lt;br&gt;
&lt;strong&gt;Beh&ccedil;et Necatigil &lt;/strong&gt;</textarea>sayfa ici arama motoru</td>
<td><textarea>&lt;form method=get action=&quot;javascript:void(0)&quot; onsubmit_fckprotectedatt=&quot; onsubmit=&quot;search(this); return false;&quot;&quot;&gt;
&lt;tr&gt;&lt;td&gt;&lt;input type=text name=srchval value=&quot;&quot;&gt;&lt;input type=submit value=&quot;Ara&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/form&gt;</textarea>site ici arama motoru</td>
<td><textarea>&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!-- Space Variation by kurt.grigg( at )virgin.net
if (document.all){
xL=5;
xH=0;
xW=0;
xR=0;
xE=0;
xMY=0;
xMX=0;
xWd=0;
xHd=0;
xF=new Array();
xY=new Array();
xX=new Array();
xS=new Array();
xA=new Array();
xB=new Array();
ini=new Array();
cl=new Array('#fff000','#0000FF','#ff0000','#00ff00','#ff00ff','#ffa500')
document.write('&lt;div id=&quot;xouter&quot; style=&quot;position:absolute;top:0px;left:0px&quot;&gt;&lt;div style=&quot;position:relative&quot;&gt;');
for (i=0; i &lt; xL; i++){
document.write('&lt;div id=&quot;xie&quot; style=&quot;position:absolute;top:0;left:0;width:10px;height:10px;'
+'font-family:Courier New;font-size:50px;color:#ffffff&quot;&gt;.&lt;/div&gt;');
}
document.write('&lt;/div&gt;&lt;/div&gt;');
//Initial Placement!
function Set(){
for (i=0; i &lt; xL; i++){
xH=window.document.body.offsetHeight;
xW=window.document.body.offsetWidth;
xA[i]=Math.round(Math.random()*xH);
xB[i]=Math.round(Math.random()*xW);
xS[i]=Math.random()*0.07+0.05;
xR=Math.round(Math.random()*3);
xE=Math.round(Math.random()*2500+50)
if (xR == 3) xB[i]=-xE;
if (xR == 2) xB[i]=xW+xE;
if (xR == 1) xA[i]=-xE;
if (xR == 0) xA[i]=xH;
xF[i]=xW/14;
}
}
Set();
function Assign(){
xouter.style.top=document.body.scrollTop;
for (i=0; i &lt; xL; i++){
xF[i]-=xS[i]*25;
if (xF[i] &lt; 4) xF[i]=3;
xie[i].style.top =xY[i];
xie[i].style.left=xX[i];
xie[i].style.fontSize=xF[i];
xie[i].style.filter='glow(color='+ini[i]+', strength='+xF[i]/3+')';
}
}
function fly(){
var N=Math.floor(Math.random()*cl.length)
xMY=window.document.body.clientHeight/2;
xMX=window.document.body.clientWidth/2;
xWd=Math.round(Math.random()*40+5);
xHd=Math.round(Math.random()*30+5);
for (i=0; i &lt; xL; i++)
{
xY[i]=xA[i]+=(xMY-xA[i])*(xS[i]);
xX[i]=xB[i]+=(xMX-xB[i])*(xS[i]);
if ((xX[i] &gt; xMX-xWd) &amp;&amp; (xX[i] &lt; xMX+xWd) &amp;&amp; (xY[i] &gt; xMY-xHd) &amp;&amp; (xY[i] &lt; xMY+xHd)){
xH=window.document.body.offsetHeight;
xW=window.document.body.offsetWidth;
xA[i]=Math.round(Math.random()*xH);
xB[i]=Math.round(Math.random()*xW);
xS[i]=Math.random()*0.05+0.05;
xR=Math.round(Math.random()*3);
xE=Math.round(Math.random()*50+50)
if (xR == 3) xB[i]=-xE;
if (xR == 2) xB[i]=xW+xE;
if (xR == 1) xA[i]=-xE;
if (xR == 0) xA[i]=xH+xE;
}
if ((xX[i] &lt; 0) || (xX[i] &gt; xW) || (xY[i] &lt; 0) || (xY[i] &gt; xH))
{
xF[i]=xW/14;
ini[i]=cl[N];
}
}
Assign();
setTimeout('fly()',10);
}
fly();
}
// --&gt;
&lt;/script&gt;
</textarea>akadran ucusarak toplar sitenin ortasina gitsin</td>
</tr>
<tr>
<td><textarea>&lt;select name=&quot;schemesel&quot; onChange_fckprotectedatt=&quot; onChange=&quot;document.bgColor =
this.options[selectedIndex].value&quot;&quot; size=&quot;1&quot; style=&quot;background-color: rgb(57,57,57); color: rgb(255,255,255)&quot;&gt;
&lt;option value=&quot;000000&quot; selected&gt;SİYAH &lt;/option&gt;
&lt;option value=&quot;0000FF&quot;&gt;MAVİ &lt;/option&gt;
&lt;option value=&quot;A0A0A0&quot;&gt;GRİ &lt;/option&gt;
&lt;option value=&quot;E9E900&quot;&gt;SARI &lt;/option&gt;
&lt;option value=&quot;A0A0FF&quot;&gt;ŞAFAK MAVİSİ &lt;/option&gt;
&lt;option value=&quot;C70000&quot;&gt;KIRMIZI &lt;/option&gt;
&lt;option value=&quot;FFFFA0&quot;&gt;A&Ccedil;IK SARI &lt;/option&gt;
&lt;option value=&quot;F0F0FA&quot;&gt;İNCİ BEYAZI&lt;/option&gt;
&lt;option value=&quot;FF00FF&quot;&gt;MOR &lt;/option&gt;
&lt;option value=&quot;00FFFF&quot;&gt;TURKUAZ &lt;/option&gt;
&lt;/select&gt; </textarea>men&uuml;den renk sec arka plan renk degistirsin</td>
<td><textarea>&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!-- Original: Charles Foster (wcms_sf( at )msn.com) --&gt;
&lt;!-- Begin
var speed = 50;
var cycledelay = 2000;
var maxsize = 48;
var x = 0;
var y = 0;
var themessage, size;
var esize = &quot;&lt;/font&gt;&quot;;
function initArray() {
this.length = initArray.arguments.length;
for (var i = 0; i &lt; this.length; i++) {
this[i] = initArray.arguments[i];
}
}
var themessage2 = new initArray(
&quot;Javascript Bankas&amp;#305;&quot;,
&quot;Mesajlar&amp;#305;n&amp;#305;z b&ouml;yle g&ouml;r&uuml;necek&quot;,
&quot;http://javascriptbankasi.com.tr.tc&quot;,
&quot;JAVASCRIPT BANKASI&quot;
);
if(navigator.appName == &quot;Netscape&quot;)
document.write('&lt;layer id=&quot;wds&quot;&gt;&lt;/layer&gt;&lt;br&gt;');
if (navigator.appVersion.indexOf(&quot;MSIE&quot;) != -1)
document.write('&lt;span id=&quot;wds&quot;&gt;&lt;/span&gt;&lt;br&gt;');
function upwords(){
themessage = themessage2[y];
if (x &lt; maxsize) {
x++;
setTimeout(&quot;upwords()&quot;,speed);
}
else setTimeout(&quot;downwords()&quot;,cycledelay);
if(navigator.appName == &quot;Netscape&quot;) {
size = &quot;&lt;font point-size='&quot;+x+&quot;pt'&gt;&quot;;
document.wds.document.write(size+&quot;&lt;center&gt;&quot;+themessage+&quot;&lt;/center&gt;&quot;+esize);
document.wds.document.close();
}
if (navigator.appVersion.indexOf(&quot;MSIE&quot;) != -1){
wds.innerHTML = &quot;&lt;center&gt;&quot;+themessage+&quot;&lt;/center&gt;&quot;;
wds.style.fontSize=x+'px'
}
}
function downwords(){
if (x &gt; 1) {
x--;
setTimeout(&quot;downwords()&quot;,speed);
}
else {
setTimeout(&quot;upwords()&quot;,cycledelay);
y++;
if (y &gt; themessage2.length - 1) y = 0;
}
if(navigator.appName == &quot;Netscape&quot;) {
size = &quot;&lt;font point-size='&quot;+x+&quot;pt'&gt;&quot;;
document.wds.document.write(size+&quot;&lt;center&gt;&quot;+themessage+&quot;&lt;/center&gt;&quot;+esize);
document.wds.document.close();
}
if (navigator.appVersion.indexOf(&quot;MSIE&quot;) != -1){
wds.innerHTML = &quot;&lt;center&gt;&quot;+themessage+&quot;&lt;/center&gt;&quot;;
wds.style.fontSize=x+'px'
}
}
setTimeout(&quot;upwords()&quot;,speed);
// End --&gt;
&lt;/script&gt;
</textarea>arka plandan mesaj ver ziyaretcilerine</td>
<td><textarea>&lt;CENTER&gt;
&lt;FORM&gt;
&lt;INPUT TYPE=&quot;button&quot; VALUE=&quot;Buraya İstediğiniz Metni Yazabilirsiniz.&quot; onClick_fckprotectedatt=&quot; onClick='alert(&quot;Burayada Yazın Ne Olcak Sanki , Bir hata oluştu bilgisayarınıza format atmak zorunda kaldık:))))&quot;)'&quot;&gt;
&lt;/FORM&gt;
&lt;/CENTER&gt;
</textarea>Butona tiklayinca size uyari veriyor</td>
</tr>
<tr>
<td><textarea>&lt;SCRIPT LANGUAGE=&quot;JavaScript&quot;&gt;
&lt;!-- Original: Premshree Pillai (premshree( at )hotmail.com ) --&gt;
&lt;!-- Begin
count=0;
var inv_button_flag=0;
if (navigator.appName==&quot;Microsoft Internet Explorer&quot; || (navigator.appName==&quot;Netscape&quot; &amp;&amp; navigator.appVersion &gt;= &quot;5&quot;))
{
document.write('&lt;form name=&quot;qiksearch_ticker&quot;&gt;&lt;input type=&quot;button&quot; name=&quot;qiksearch_ticker&quot; onclick=&quot;goURL();&quot; style=&quot;background:#FFFFFF; width:377; height:22; border-width:1; border-color:#000000; cursor:hand&quot; onmouseover=&quot;this.style.background='#BDDCFF';return true&quot; onmouseout=&quot;this.style.background='#FFFFFF';return true&quot; onmousedown=&quot;this.style.background='#FFD543';return true&quot;&gt;&lt;input type=&quot;button&quot; value=&quot;5&quot; onclick=&quot;javascript:inv_button();inv_msg();inv_URL();&quot; style=&quot;width:22; height:22; font-family:webdings; background:#FFFFFF; border-left-width:0; border-right-width:1px; border-top-width:1px; border-bottom-width:1px; border-color:#000000; cursor:hand&quot; name=&quot;inv_but&quot; title=&quot;Yukar&amp;#305; &Ccedil;evirmek i&ccedil;in T&amp;#305;kla&quot;&gt;&lt;/form&gt;');
}
else
{
document.write('&lt;form name=&quot;qiksearch_ticker&quot;&gt;&lt;input type=&quot;button&quot; name=&quot;qiksearch_ticker&quot; onclick=&quot;goURL();&quot; width=&quot;349&quot; border=&quot;0&quot;&gt;&lt;input type=&quot;button&quot; width=&quot;50&quot; value=&quot;up&quot; onclick=&quot;javascript:inv_button();inv_msg();inv_URL();&quot; name=&quot;inv_but&quot;&gt;&lt;/form&gt;');
}
var ticker_speed=1;
// Ticker messages
var ticker_msg = new Array(
&quot;www.javascriptbankasi.com.tr.tc sitesine ho&amp;#351;geldiniz.&quot;,
&quot;Javascript Bankas&amp;#305; program&amp;#305;n&amp;#305;&quot;,
&quot;Be&amp;#287;endiniz mi?&quot;,
&quot;Bize javascript g&ouml;ndermek i&ccedil;in&quot;,
&quot;Sitemize U&amp;#287;ray&amp;#305;n&quot; ); // No comma after last ticker msg
// Ticker URLs
var ticker_url = new Array(
&quot;http://www.javascriptbankasi.com.tr.tc&quot;,
&quot;http://www.javascriptbankasi.com.tr.tc&quot;,
&quot;http://www.javascriptbankasi.com.tr.tc&quot;,
&quot;http://www.javascriptbankasi.com.tr.tc&quot;,
&quot;http://www.javascriptbankasi.com.tr.tc&quot; ); // No comma after last ticker url
function tick()
{
if(count&lt;ticker_msg.length)
{
this.document.qiksearch_ticker.qiksearch_ticker.value=ticker_msg[count];
count++;
if(count==ticker_msg.length)
{
count=0;
}
setTimeout(&quot;tick();&quot;,ticker_speed*1000);
}
}
function goURL()
{
if(this.document.qiksearch_ticker.qiksearch_ticker.value==ticker_msg[ticker_msg.length-1])
{
location.href=ticker_url[ticker_msg.length-1];
}
else
{
location.href=ticker_url[count-1];
}
}
function inv_button()
{
if (navigator.appName==&quot;Microsoft Internet Explorer&quot; || (navigator.appName==&quot;Netscape&quot; &amp;&amp; navigator.appVersion &gt;= &quot;5&quot;))
{
if (inv_button_flag==0)
{
this.document.qiksearch_ticker.inv_but.value=&quot;6&quot;;
this.document.qiksearch_ticker.inv_but.title=&quot;A&amp;#351;&amp;#351;a&amp;#287;&amp;#305; &Ccedil;evirmek i&ccedil;in T&amp;#305;kla&quot;;
inv_button_flag=1;
}
else
{
this.document.qiksearch_ticker.inv_but.value=&quot;5&quot;;
this.document.qiksearch_ticker.inv_but.title=&quot;Yukar&amp;#305; &Ccedil;evirmek i&ccedil;in T&amp;#305;kla&quot;;
inv_button_flag=0;
}
}
else
{
if (inv_button_flag==0)
{
this.document.qiksearch_ticker.inv_but.value=&quot;Down&quot;;
inv_button_flag=1;
}
else
{
this.document.qiksearch_ticker.inv_but.value=&quot;Up&quot;;
inv_button_flag=0;
}
}
}
function inv_msg()
{
for(var i=0;i&lt;Math.floor(ticker_msg.length/2);i++)
{
var temp=ticker_msg[i];
ticker_msg[i]=ticker_msg[ticker_msg.length-1-i];
ticker_msg[ticker_msg.length-1-i]=temp;
}
}
function inv_URL()
{
for(var i=0;i&lt;Math.floor(ticker_msg.length/2);i++)
{
var temp=ticker_url[i];
ticker_url[i]=ticker_url[ticker_msg.length-1-i];
ticker_url[ticker_msg.length-1-i]=temp;
}
}
tick();
// End --&gt;
&lt;/script&gt;</textarea>&uuml;zerindeki yazi degisiyor s&uuml;per bir buton</td>
<td><textarea>&lt;SCRIPT LANGUAGE=&quot;JavaScript&quot;&gt;
&lt;!-- Original: Happy Smart --&gt;
&lt;!-- Begin
var message=&quot; Javascript Bankas&amp;#305; &quot;;//Put Your Message Here
function ButtonURL(){
window.location=&quot;test.html&quot;
}
function scroll()
{
message = message.substring(1,message.length) + message.substring(0,1);
document.bs.bs.value = message;
setTimeout(&quot;scroll()&quot;,140);
}
window.onload=scroll
document.write('&lt;style type=&quot;text/css&quot;&gt;')
document.write('.select{background: blue;border-color:&quot;yellow&quot;;color:&quot;white&quot;;font-family:Arial,Helvetica,Verdana;font-size:10pt;font-weight: bold;}')
document.write('&lt;/STYLE&gt;')
document.write('&lt;form name=bs&gt;&lt;INPUT class=&quot;select&quot; TYPE=&quot;button&quot; NAME=&quot;bs&quot; value=&quot;&quot; onclick=&quot;ButtonURL()&quot;&gt;&lt;/FORM&gt;') // End --&gt;
&lt;/script&gt;</textarea>mavi rankli butonda yazi sola kayiyor</td>
<td><textarea>&lt;script language=&quot;Javascript&quot;&gt;
&lt;!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var speed = 100
var message = &quot; &lt;&lt;&lt;JAVASCRIPT BANKASI&gt;&gt;&gt; &quot;
var s = 0
var l = message.length
document.write(&quot;&lt;form name='btn'&gt;&lt;input type='button' &quot;
+&quot;name='sc' value='&quot;+ message +&quot;'&gt;&lt;/form&gt;&quot;)
function btnsc() {
document.btn.sc.value = message.substring(s,l) + message.substring(0,s)
s++
if (s &gt;= l) {
s = 0
}
setTimeout(&quot;btnsc()&quot;,speed)
}
btnsc();
//--&gt;
&lt;/script&gt;</textarea>gri renkli butonda yazi sola kayiyor</td>
</tr>
</tbody>
</table>
</p>
<table height="400" cellspacing="5" cellpadding="5" width="600" align="center" border="1">
<tbody>
<tr>
<td><textarea>&lt;SCRIPT language=JavaScript&gt;&lt;!--
function thetext(txt) {
document.theform.thetext.value = txt
return true;
}
// --&gt;&lt;/SCRIPT&gt;
&lt;SCRIPT language=JavaScript&gt;&lt;!--
function atext(txt) {
document.aform.atext.value = txt
return true;
&
______________
Mesaj11.04.2009, 08:34 (UTC)    
Mesaj konusu:

1: kodları http://www.bedava-sitem.com/forum/viewtopic.php?t=25700 burdan paylaşın

2: Kod sanırsam eksik.

3: ne işe yaradıgını açıkla
______________
Özel mesajlara bakmıyorum bile...
Mesaj11.04.2009, 08:36 (UTC)    
Mesaj konusu:

Cod yazarken lütfen
Kod:
[code]Buraya kodunuzu yazınız![/code]

______________

Arrow Ethical Hacker Arrow Professional Web Designer
Mesaj11.04.2009, 22:16 (UTC)    
Mesaj konusu:

Lütfen Konu Açarken Detaylı Ve Emek Vermiş Bir Şekilde Aç

Code Açarken Kodu

Kod:
Buranın İçine Aç

______________
Mesaj11.04.2009, 22:23 (UTC)    
Mesaj konusu:

Kod:
[code]Code[/code]


code acarken böyle ac
______________
CIM BOM BOM'UM BENIM BIRICIK SEVGILIM, SOYLE SENDEN BASKA KIMIM VAR BENIM, SENINLE AGLARIM SENINLE GULERIM, SOYLE SENDEN BASKA KIMIM VAR BENIM???
Mesaj13.04.2009, 06:41 (UTC)    
Mesaj konusu: Buraya kodunuzu yazınız!

paylasim61 yazmış:
Cod yazarken lütfen
Kod:
[code]Buraya kodunuzu yazınız![/code]

______________
medikal işleri güzel dir ve kimyasal cam mazemeleri
Mesaj13.04.2009, 06:41 (UTC)    
Mesaj konusu: code acarken böyle ac[/quote]

habbsunn yazmış:
Kod:
[code]Code[/code]


code acarken böyle ac

______________
medikal işleri güzel dir ve kimyasal cam mazemeleri
Önceki mesajları göster:   


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