FoRuMKaSıRGa | PaYLaSiMDa SoN NoKTa.!
Would you like to react to this message? Create an account in a few clicks or log in to continue.


REKLAM ,MODERATÖRLÜK ,ADMİNLİK İÇİN MSN ADRESİ : bykasirga@w.cn |
 
AnasayfaLatest imagesAramaKayıt OlGiriş yap

 

 BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )

Aşağa gitmek 
Sayfaya git : Önceki  1, 2, 3
YazarMesaj
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:22 pm

ÜZERİNDE RENK DEĞİŞTİREN BUTON

<style type="text/css"> .initial2{font-weight:bold;background-color:lime} </style> <script type="text/javascript"> <!-- /*********************************************** * Rollover background-color button script- © Dynamic Drive (www.dynamicdrive.com) * This notice must stay intact for use * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ //Specify optional button target: "_new" for new window, or name of FRAME target (ie "myframe") var buttontarget="" function change(e, color){ var el=window.event? event.srcElement: e.target if (el.tagName=="INPUT"&&el.type=="button") el.style.backgroundColor=color } function jumpto2(url){ if (buttontarget=="") window.location=url else if (buttontarget=="_new") window.open(url) else parent[buttontarget].location=url } //--> </script> <form onMouseover_fckprotectedatt=" onMouseover="change(event, 'yellow')"" onMouseout_fckprotectedatt=" onMouseout="change(event, 'lime')""> <input type="button" value="Yahoo" class="initial2" onClick_fckprotectedatt=" onClick="jumpto2('http://yahoo.com')""> <input type="button" value="Google" class="initial2" onClick_fckprotectedatt=" onClick="jumpto2('http://google.com')""> <input type="button" value="AlltheWeb" class="initial2" onClick_fckprotectedatt=" onClick="jumpto2('http://alltheweb.com')""> </form>
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:22 pm

ARKAPLANDA RESİM SLAYT

<style> body{ /*Remove below line to make bgimage NOT fixed*/ background-attachment:fixed; background-repeat: no-repeat; /*Use center center in place of 300 200 to center bg image*/ background-position: 300 200; } </style> <script language="Javascript1.2"> //Background Image Slideshow- © Dynamic Drive (www.dynamicdrive.com) //For full source code, 100's more DHTML scripts, and TOS, //visit http://www.dynamicdrive.com //Specify background images to slide var bgslides=new Array() bgslides[0]="bgslide.jpg" bgslides[1]="bgslide2.jpg" bgslides[2]="bgslide3.jpg" //Specify interval between slide (in miliseconds) var speed=3000 //preload images var processed=new Array() for (i=0;i<bgslides.length;i++){ processed[i]=new Image() processed[i].src=bgslides[i] } var inc=-1 function slideback(){ if (inc
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:22 pm

ALBÜM AÇILIŞLI SLAYT

<script type="text/javascript"> /*********************************************** * Book Flip slideshow script- © Ger Versluis 2003 * Permission granted to DynamicDrive.com to feature script * This notice must stay intact for use * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ /******************************************************** Create a div with transparent place holder in your html <div id="Book" style="position:relative"> <img src="placeholder.gif" width="144" height="227"> </div> width = 2*book image width +4 height = book image height+2 Insert onload in body tag <body onload="ImageBook()"> *********************************************************/ // 7 variables to control behavior var Book_Image_Width=140; var Book_Image_Height=225; var Book_Border=true; var Book_Border_Color="gray"; var Book_Speed=15; var Book_NextPage_Delay=1500; //1 second=1000 var Book_Vertical_Turn=0; // array to specify images and optional links. At least 4 // If Link is not needed keep it "" Book_Image_Sources=new Array( "photo1.jpg","http://www.dynamicdrive.com", "photo2.jpg","http://www.javascriptkit.com", "photo3.jpg","", //this slide isn't linked "photo4.jpg","http://www.codingforums.com" // NOTE No comma after last line ); /***************** DO NOT EDIT BELOW **********************************/ var B_LI,B_MI,B_RI,B_TI,B_Angle=0,B_CrImg=6,B_MaxW,B_Direction=1; var B_MSz,B_Stppd=false;B_Pre_Img=new Array(Book_Image_Sources.length); function ImageBook(){ if(document.getElementById){ for(i=0;i<Book_Image_Sources.length;i+=2){ B_Pre_Img[i]=new Image();B_Pre_Img[i].src=Book_Image_Sources[i]} Book_Div=document.getElementById("Book"); B_LI=document.createElement("img");Book_Div.appendChild(B_LI); B_RI=document.createElement("img");Book_Div.appendChild(B_RI); B_MI=document.createElement("img");Book_Div.appendChild(B_MI); B_LI.style.position=B_MI.style.position=B_RI.style.position="absolute"; B_LI.style.zIndex=B_RI.style.zIndex=0;B_MI.style.zIndex=1; B_LI.style.top=(Book_Vertical_Turn?Book_Image_Height+1:0)+"px"; B_LI.style.left=0+"px"; B_MI.style.top=0+"px"; B_MI.style.left=(Book_Vertical_Turn?0:Book_Image_Width+1)+"px"; B_RI.style.top=0+"px"; B_RI.style.left=(Book_Vertical_Turn?0:Book_Image_Width+1)+"px"; B_LI.style.height=Book_Image_Height+"px"; B_MI.style.height=Book_Image_Height+"px"; B_RI.style.height=Book_Image_Height+"px"; B_LI.style.width=Book_Image_Width+"px"; B_MI.style.width=Book_Image_Width+"px"; B_RI.style.width=Book_Image_Width+"px"; if(Book_Border){ B_LI.style.borderStyle=B_MI.style.borderStyle=B_RI.style.borderStyle="solid"; B_LI.style.borderWidth=1+"px"; B_MI.style.borderWidth=1+"px"; B_RI.style.borderWidth=1+"px"; B_LI.style.borderColor=B_MI.style.borderColor=B_RI.style.borderColor=Book_Border_Color} B_LI.src=B_Pre_Img[0].src; B_LI.lnk=Book_Image_Sources[1]; B_MI.src=B_Pre_Img[2].src; B_MI.lnk=Book_Image_Sources[3]; B_RI.src=B_Pre_Img[4].src; B_RI.lnk=Book_Image_Sources[5]; B_LI.onclick=B_MI.onclick=B_RI.onclick=B_LdLnk; B_LI.onmouseover=B_MI.onmouseover=B_RI.onmouseover=B_Stp; B_LI.onmouseout=B_MI.onmouseout=B_RI.onmouseout=B_Rstrt; BookImages()}} function BookImages(){ if(!B_Stppd){ if(Book_Vertical_Turn){ B_MSz=Math.abs(Math.round(Math.cos(B_Angle)*Book_Image_Height)); MidOffset=!B_Direction?Book_Image_Height+1:Book_Image_Height-B_MSz; B_MI.style.top=MidOffset+"px"; B_MI.style.height=B_MSz+"px"} else{ B_MSz=Math.abs(Math.round(Math.cos(B_Angle)*Book_Image_Width)); MidOffset=B_Direction?Book_Image_Width+1:Book_Image_Width-B_MSz; B_MI.style.left=MidOffset+"px"; B_MI.style.width=B_MSz+"px"} B_Angle+=Book_Speed/720*Math.PI; if(B_Angle>=Math.PI/2&&B_Direction){ B_Direction=0; if(B_CrImg==Book_Image_Sources.length)B_CrImg=0; B_MI.src=B_Pre_Img[B_CrImg].src; B_MI.lnk=Book_Image_Sources[B_CrImg+1]; B_CrImg+=2} if(B_Angle>=Math.PI){ B_Direction=1; B_TI=B_LI; B_LI=B_MI; B_MI=B_TI; if(Book_Vertical_Turn)B_MI.style.top=0+"px"; else B_MI.style.left=Book_Image_Width+1+"px"; B_MI.src=B_RI.src; B_MI.lnk=B_RI.lnk; setTimeout("Book_Next_Delay()",Book_NextPage_Delay)} else setTimeout("BookImages()",50)} else setTimeout("BookImages()",50)} function Book_Next_Delay(){ if(B_CrImg==Book_Image_Sources.length)B_CrImg=0; B_RI.src=B_Pre_Img[B_CrImg].src; B_RI.lnk=Book_Image_Sources[B_CrImg+1]; B_MI.style.zIndex=2; B_LI.style.zIndex=1; B_Angle=0; B_CrImg+=2; setTimeout("BookImages()",50)} function B_LdLnk(){if(this.lnk)window.location.href=this.lnk} function B_Stp(){B_Stppd=true;this.style.cursor=this.lnk?"pointer":"default"} function B_Rstrt(){B_Stppd=false} </script> <div id="Book" style="position:relative"> <img src="placeholder.gif" _fcksavedurl="placeholder.gif" width="144" height="227"> </div> <p><font face="Arial" size="-2">Free DHTML scripts provided by<br><a href="http://www.dynamicdrive.com" _fcksavedurl="http://www.dynamicdrive.com">Dynamic Drive</a></font></p>
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:22 pm

DAİRE ŞEKLİNDE SLAYT

<script type="text/javascript"> /*********************************************** * Carousel Slideshow script- © Ger Versluis 2003 * Permission granted to DynamicDrive.com to feature script * This notice must stay intact for legal use * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ /******************************************************** Create a div with transparent place holder in your html <div id="Carousel" style="position:relative"> <img src="placeholder.gif" width="404" height="202"> </div> placeholder width: 4 sided: 1.42 * carousel image width + 3 6 sided: 2 * carousel image width +4 8 sided: 2.62 * carousel image width + 5 12 sided: 3.87 * carousel image width + 7 placeholder height: carousel image height+2 Insert onload in body tag <body onload="Carousel()"> *********************************************************/ // 7 variables to control behavior var Car_Image_Width=140; var Car_Image_Height=225; var Car_Border=true; // true or false var Car_Border_Color="white"; var Car_Speed=4; var Car_Direction=true; // true or false var Car_NoOfSides=8; // must be 4, 6, 8 or 12 /* array to specify images and optional links. For 4 sided carousel specify at least 2 images For 6 sided carousel specify at least 3 For 8 sided carousel specify at least 4 For 12 sided carousel specify at least 6 If Link is not needed keep it "" */ Car_Image_Sources=new Array( "photo1.jpg","http://www.dynamicdrive.com", "photo2.jpg","http://www.javascriptkit.com", "photo3.jpg","", //this slide isn't linked "photo4.jpg","http://www.codingforums.com" // NOTE No comma after last line ); /***************** DO NOT EDIT BELOW **********************************/ CW_I=new Array(Car_NoOfSides/2+1);C_ClcW=new Array(Car_NoOfSides/2); C_Coef=new Array( 3*Math.PI/2,0,3*Math.PI/2,11*Math.PI/6,Math.PI/6,3*Math.PI/2,7*Math.PI/4, 0, Math.PI/4,3*Math.PI/2,5*Math.PI/3,11*Math.PI/6,0,Math.PI/6,Math.PI/3); var C_CoefOf=Car_NoOfSides==4?0:Car_NoOfSides==6?2:Car_NoOfSides==8?5:9; C_Pre_Img=new Array(Car_Image_Sources.length); var C_Angle=Car_Direction?Math.PI/(Car_NoOfSides/2):0,C_CrImg=Car_NoOfSides,C_MaxW,C_TotalW, C_Stppd=false,i,C_LeftOffset,C_HalfNo=Car_NoOfSides/2; function Carousel(){ if(document.getElementById){ for(i=0;i<Car_Image_Sources.length;i+=2){ C_Pre_Img[i]=new Image();C_Pre_Img[i].src=Car_Image_Sources[i]} C_MaxW=Car_Image_Width/Math.sin(Math.PI/Car_NoOfSides)+C_HalfNo+1; Car_Div=document.getElementById("Carousel"); for(i=0;i
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:23 pm

SOLDAN ÜST ÜSTE SLAYT

<script type="text/javascript"> /*********************************************** * Translucent Slideshow script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ var trans_width='140px' //slideshow width var trans_height='225px' //slideshow height var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds) var degree=10 //animation speed. Greater is faster. var slideshowcontent=new Array() //Define slideshow contents: [image URL, OPTIONAL LINK, OPTIONAL LINK TARGET] slideshowcontent[0]=["photo1.jpg", "http://www.cnn.com", "_new"] slideshowcontent[1]=["photo2.jpg", "", ""] slideshowcontent[2]=["photo3.jpg", "http://www.google.com", ""] ////NO need to edit beyond here///////////// var bgcolor='white' var imageholder=new Array() for (i=0;i<slideshowcontent.length;i++){ imageholder[i]=new Image() imageholder[i].src=slideshowcontent[i][0] } var ie4=document.all var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1 if (ie4||dom) document.write('
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:23 pm

İKİLİ ARAMA

<!--Example drop down menu 1--> <form name="form1"> <select name="select1" size="1" style="background-color:#FFFFD7" onChange_fckprotectedatt=" onChange="displaydesc(document.form1.select1, thetext1, 'textcontainer1')""> <option selected value="http://www.javascriptkit.com">Javascript Kit </option> <option value="http://freewarejava.com">Freewarejava.com</option> <option value="http://wired.com" target="newwin">Wired News</option> <option value="http://www.news.com">News.com</option> <option value="http://www.codingforums.com" target="newwin">Coding Forums</option> </select> <input type="button" value="Go" onClick="jumptolink(document.form1.select1)"><br> <span id="textcontainer1" align="left" style="font:italic 13px Arial"> </span> </form> <!--Example drop down menu 2--> <form name="form2"> <select name="select2" size="1" style="background-color:#E3FFDF" onChange_fckprotectedatt=" onChange="displaydesc(document.form2.select2, thetext2, 'textcontainer2')""> <option selected value="http://www.cnn.com">CNN</option> <option value="http://www.msnbc.com">MSNBC</option> <option value="http://news.bbc.co.uk">BBC News</option> <option value="http://www.theregister.com/">The Register</option> </select> <input type="button" value="Go" onClick="jumptolink(document.form2.select2)"><br> <span id="textcontainer2" align="left" style="font:italic 13px Arial"> </span> </form> <!--IMPORTANT: Below script should always follow all of your HTML codes above, and never proceed them--> <!--To be safe, just add below script at the end of your page--> <script type="text/javascript"> /*********************************************** * Drop down menu w/ description- © Dynamic Drive (www.dynamicdrive.com) * This notice must stay intact for use * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ //1) CUSTOMIZE TEXT DEscriptIONS FOR LINKS ABOVE var thetext1=new Array() thetext1[0]="Comprehensive Javascript tutorials and over 400+ free scripts" thetext1[1]="Direct link to hundreds of free Java applets online!" thetext1[2]="Up to date news on the technology front" thetext1[3]="News.com- The #1 technology News site." thetext1[4]="Web Coding and development forums" /// You may define additional text arrays if you have multiple drop downs: var thetext2=new Array() thetext2[0]="CNN- US and World News." thetext2[1]="MSNBC- NBC News online." thetext2[2]="BBC News- Updated every minute of every day." thetext2[3]="TheRegister- Daily IT news." // Now, see 2) below for final customization step function displaydesc(which, descriptionarray, container){ if (document.getElementById) document.getElementById(container).innerHTML=descriptionarray[which.selectedIndex] } function jumptolink(what){ var selectedopt=what.options[what.selectedIndex] if (document.getElementById && selectedopt.getAttribute("target")=="newwin") window.open(selectedopt.value) else window.location=selectedopt.value } //2) Call function displaydesc() for each drop down menu you have on the page // This function displays the initial description for the selected menu item // displaydesc(name of select menu, name of corresponding text array, ID of SPAN container tag): // Important: Remove the calls not in use (ie: 2nd line below if there's only 1 menu on your page) displaydesc(document.form1.select1, thetext1, 'textcontainer1') displaydesc(document.form2.select2, thetext2, 'textcontainer2') </script>
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:25 pm

SOLDAKİ YAZIYLA DEĞİŞEN RESİM

<table border="0"> <tr><td valign="top"> <form id="f1" name="f1"> <select id="resimler" name="resimler" size="1" onchange_fckprotectedatt=" onchange="javascript:resim_onizle();""> <option value="0" selected="selected">- HİÇBİRİ -</option> <option value="images/resim1.jpg">Resim 1</option> <option value="images/resim2.jpg">Resim 2</option> <option value="images/resim3.jpg">Resim 3</option> <option value="images/resim4.jpg">Resim 4</option> <option value="images/resim5.jpg">Resim 5</option> <option value="images/resim6.jpg">Resim 6</option> <option value="images/resim7.jpg">Resim 7</option> </select></form></td> <td><img id="resim_onizleme" name="resim_onizleme" border="0" height="70" width="70" src="images/resim_yok.jpg" _fcksavedurl="images/resim_yok.jpg" /></td></tr> </table> <script language="javascript" type="text/javascript"> <!-- function resim_onizle() { if (document.f1.resimler.options[document.f1.resimler.selectedIndex].value != 0) { document.getElementById("resim_onizleme").src = document.f1.resimler.options[document.f1.resimler.selectedIndex].value; }; }; //--> </script>
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:25 pm

SAĞDAKİ YAZIYLA DEĞİŞEN RESİM

<html> <head> <title>JS - Link Üzerine Gelindiğinde Resim Değişimi</title> <FCK:meta http-equiv="content-type" content="text/html; charset=windows-1254" /> <FCK:meta http-equiv="content-type" content="text/html; charset=iso-8859-9" /> <FCK:meta http-equiv="content-language" content="tr" /> </head> <body> <table align="center" border="1"> <tr><td align="center" width="400" height="300" valign="top"><img id="gelecek_resim" name="gelecek_resim" border="0" src="images/1.jpg" _fcksavedurl="images/1.jpg" width="400" height="300" /></td> <td valign="top" width="200"><a href="haberoku.asp?id=1" _fcksavedurl="haberoku.asp?id=1" onmouseout_fckprotectedatt=" onmouseout="javascript: document.getElementById('gelecek_resim').src = 'images/1.jpg';"" onmouseover_fckprotectedatt=" onmouseover="javascript: document.getElementById('gelecek_resim').src = 'images/1.jpg';"">Haber 1 Linki</a><br /> <a href="haberoku.asp?id=2" _fcksavedurl="haberoku.asp?id=2" onmouseout_fckprotectedatt=" onmouseout="javascript: document.getElementById('gelecek_resim').src = 'images/1.jpg';"" onmouseover_fckprotectedatt=" onmouseover="javascript: document.getElementById('gelecek_resim').src = 'images/2.jpg';"">Haber 2 Linki</a><br /> <a href="haberoku.asp?id=3" _fcksavedurl="haberoku.asp?id=3" onmouseout_fckprotectedatt=" onmouseout="javascript: document.getElementById('gelecek_resim').src = 'images/1.jpg';"" onmouseover_fckprotectedatt=" onmouseover="javascript: document.getElementById('gelecek_resim').src = 'images/3.jpg';"">Haber 3 Linki</a><br /> <a href="haberoku.asp?id=4" _fcksavedurl="haberoku.asp?id=4" onmouseout_fckprotectedatt=" onmouseout="javascript: document.getElementById('gelecek_resim').src = 'images/1.jpg';"" onmouseover_fckprotectedatt=" onmouseover="javascript: document.getElementById('gelecek_resim').src = 'images/4.jpg';"">Haber 4 Linki</a><br /> <a href="haberoku.asp?id=5" _fcksavedurl="haberoku.asp?id=5" onmouseout_fckprotectedatt=" onmouseout="javascript: document.getElementById('gelecek_resim').src = 'images/1.jpg';"" onmouseover_fckprotectedatt=" onmouseover="javascript: document.getElementById('gelecek_resim').src = 'images/5.jpg';"">Haber 5 Linki</a> </td></tr> </table> </body> </html>
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:25 pm

ADRES SATIRINA İKON EKLEME

<link REL="SHORTCUT ICON" HREF="sİTENE AİT İKONUN ADRESİ">
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:26 pm

SAYFAYI YAZDIR BUTONU

<script Language="Javascript"> /* This script is written by Eric (Webcrawl@usa.net) For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use, visit dynamicdrive.com */ function printit(){ if (window.print) { window.print() ; } else { var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>'; document.body.insertAdjacentHTML('beforeEnd', WebBrowser); WebBrowser1.ExecWB(6, 2);//Use a 1 vs. a 2 for a prompting dialog box WebBrowser1.outerHTML = ""; } } </script> <script Language="Javascript"> var NS = (navigator.appName == "Netscape"); var VERSION = parseInt(navigator.appVersion); if (VERSION > 3) { document.write('<form><input type=button value="Print this Page" name="Print" onClick="printit()"></form>'); } </script>
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:26 pm

GİZLENEN KATLANIR MENÜ

<html> <head> <FCK:meta http-equiv="Content-Type" content="text/html; charset=windows-1254" /> <title>Katlanır Menü</title> <style type="text/css"> #MenuTasiyici{ margin: 0; padding: 0; width: 320px; font-family: arial, tahoma sans-serif; } #MenuTasiyici .Baslik{ background-color: #245EDC; height: 22px; width: 320px; font-size: 12px; font-weight: bold; color: #E4EBFA; line-height: 22px; margin-bottom: 1px; } #MenuTasiyici .Baslik span{ padding-left: 8px; } #MenuTasiyici .OgeBaslik{ background-color: #ABC1F1; height: 20px; line-height: 20px; font-weight: bold; font-size: 11px; padding-left: 7px; cursor: pointer; border-bottom: solid 1px #245EDC; } #MenuTasiyici .OgeGrup{ width: 100%; color: #004E98; } #MenuTasiyici .Oge{ background-color: #F5F5F5; height: 20px; line-height: 20px; font-size: 11px; padding-left: 10px; border-bottom: solid 1px #D9DAD8; } </style> <script type="text/javascript"> function OgeAcKapa(oge) { if (document.getElementById(oge).style.display == 'none') { document.getElementById(oge).style.display = ''; } else { document.getElementById(oge).style.display = 'none'; } } </script> </head> <body> <div id="MenuTasiyici"> <div class="Baslik"><span>Katlanır Menü</span></div> <div class="OgeBaslik" onclick_fckprotectedatt=" onclick="OgeAcKapa('og1');""> Menu1 </div> <div id="og1" class="OgeGrup" style="display: none;"> <div class="Oge">1.1</div> <div class="Oge">1.2</div> <div class="Oge">1.3</div> </div> <div class="OgeBaslik" onclick_fckprotectedatt=" onclick="OgeAcKapa('og2');""> Menu2 </div> <div id="og2" class="OgeGrup" style="display: none;"> <div class="Oge">2.1</div> <div class="Oge">2.2</div> </div> <div class="OgeBaslik" onclick_fckprotectedatt=" onclick="OgeAcKapa('og3');""> Menu3 </div> <div id="og3" class="OgeGrup" style="display: none;"> <div class="Oge">3.1</div> <div class="Oge">3.2</div> <div class="Oge">3.3</div> </div> </div> </body> </html> <script type="text/javascript"> var menu_sayisi = 3; // Menü sayınızı buradan ayarlayınız, menü adlarının sonu ardışık artacak şekilde olmalıdır var s, alan; function OgeAcKapa(oge) { if (document.getElementById(oge).style.display == 'none') { document.getElementById(oge).style.display = ''; for (s = 1; s <= menu_sayisi; s++) { alan = "og" + s; if (oge != alan) { document.getElementById(alan).style.display = 'none'; }; }; } else { document.getElementById(oge).style.display = 'none'; } }
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:26 pm

RESİM DOSYA VİDEO UPLOAD

<a href="http://imageshack.us" _fcksavedurl="http://imageshack.us"><img src="https://2img.net/r/ihimizer/img136/7400/7abbf7d735ry9.gif" _fcksavedurl="https://2img.net/r/ihimizer/img136/7400/7abbf7d735ry9.gif" border="0" alt="www.mecon68.tr.gg"/></a><br/>
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:27 pm

SAYFAYA ŞİFRELİ GİRİŞ

<!-- TWO STEPS TO INSTALL MULTIPLE USERS: 1. Copy the first code into the HEAD of your HTML document 2. Put the last coding into the BODY of your HTML document --><!-- STEP ONE: Copy this code into the HEAD of your login HTML document --><script LANGUAGE="Javascript"> <!-- This script and many more are available free online at --> <!-- The Javascript Source!! http://javascript.internet.com --> <!-- Begin function Login(){ var done=0; var username=document.login.username.value; username=username.toLowerCase(); var password=document.login.password.value; password=password.toLowerCase(); if (username=="KULLANICI ADINI YAZIN" && password=="ŞİFREYİ YAZIN") { window.location="GİDİLECEK SAYFA ADRESİNİ YAZIN"; done=1; } if (username=="member2" && password=="password2") { window.location="page2.html"; done=1; } if (username=="member3" && password=="password3") { window.location="page3.html"; done=1; } if (done==0) { alert("Hatali kullanici adi veya sifre girdiniz. Lütfen dogru bilgileri tekrar girdikten sonra deneyin!"); } } // End --> </script><!-- STEP TWO: Paste this code into the BODY of your HTML document --><center> <form name="login"> <table cellpadding="3" width="225" border="1"> <tbody> <tr> <td colspan="2"><center><font size="+2"><strong>Şifrenizi girin</strong></font></center></td> </tr> <tr> <td>Kullanıcı:</td> <td><input name="username" type="text" /></td> </tr> <tr> <td>Parola:</td> <td><input name="password" type="text" /></td> </tr> <tr> <td align="center" colspan="2"><input type="button" onClick_fckprotectedatt=" onClick="Login()"" value="GİRİŞ" /></td> </tr> </tbody> </table> </form> </center> <p> </p> <center><!-- script Size: 1.60 KB --></center>
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
sahmeran35
Admin
Admin
sahmeran35


Mesaj Sayısı : 656
Yaş : 28
Nerden : izmir
Kayıt tarihi : 14/08/08

BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 Empty
MesajKonu: Geri: BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )   BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı ) - Sayfa 3 I_icon_minitimeCuma Kas. 07, 2008 7:27 pm

LİNK ALTINDAKİ ÇİZGİYİ KALDIRMA

<html> <head> <title>Ro©kHLL Çizgi Kaldır</title> </head> <body style="text-decoration:none"> <center> <br> <br> <br> <br> <br> <a href="http://rockhll.sitemynet.com" _fcksavedurl="http://rockhll.sitemynet.com" title="Ro©kHLL">www.Ro©kHLL.com</a> </body> </html>
Sayfa başına dön Aşağa gitmek
http://kasirga.eniyiforum.net
 
BÜYÜK HTML KOD ARŞİVİ ...! ( emeğe saygı )
Sayfa başına dön 
3 sayfadaki 3 sayfasıSayfaya git : Önceki  1, 2, 3
 Similar topics
-

Bu forumun müsaadesi var:Bu forumdaki mesajlara cevap veremezsiniz
FoRuMKaSıRGa | PaYLaSiMDa SoN NoKTa.! :: İSTEK KODLAR-
Buraya geçin: