| Yazar |
Mesaj |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
05.09.2008, 17:00 (UTC) Mesaj konusu: |
|
|
Gittikce renkleri degisen kayan yazi örnegi
Gittikce renkleri degisen kayan yazi örnegi. kodlari aynen web sitenizde uygulayabilirsiniz. metni istediginiz gibi degistirin.
Kod: <script>
var text="<marquee>HazırKod Aranan ve Paylaşılan Herşey!</marquee>"
var speed=80
if (document.all||document.getElementById){
document.write('<span id="highlight">' + text + '</span>')
var storetext=document.getElementById? document.getElementById("highlight") : document.all.highlight
}
else
document.write(text)
var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0")
var r=1
var g=1
var b=1
var seq=1
function changetext(){
rainbow="#"+hex[r]+hex[g]+hex[b]
storetext.style.color=rainbow
}
function change(){
if (seq==6){
b--
if (b==0)
seq=1
}
if (seq==5){
r++
if (r==12)
seq=6
}
if (seq==4){
g--
if (g==0)
seq=5
}
if (seq==3){
b++
if (b==12)
seq=4
}
if (seq==2){
r--
if (r==0)
seq=3
}
if (seq==1){
g++
if (g==12)
seq=2
}
changetext()
}
function starteffect(){
if (document.all||document.getElementById)
flash=setInterval("change()",speed)
}
starteffect()
</script>
|
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
06.09.2008, 09:31 (UTC) Mesaj konusu: |
|
|
Sitenize supriz - Siteye renkli giris
Ziyaretçileriniz sitenize girerken onlara süpriz yapin
Kod: <body><SCRIPT>
var width=document.body.clientWidth;
var height=document.body.clientHeight;
function doClickText(who,type,step,timeOut) {
document.getElementById(who).style.display="none";
if(type==0) {
reveal('revealDiv1',step,timeOut,0);
reveal('revealDiv2',step,timeOut,1);}
if(type==1) {
reveal('revealDiv1',step,timeOut,2);
reveal('revealDiv2',step,timeOut,3);}}
function reveal(who,step,timeOut,type) {
if(type==0)
var where="top";
if(type==1)
var where="bottom";
if(type==2)
var where="left";
if(type==3)
var where="right";
eval('var temp=document.getElementById(who).style.'+where);
temp=parseInt(temp);
if(type==0||type==1)
var checkWith=height/2;
if(type==2||type==3)
var checkWith=width/2;
if(-temp<checkWith) {
temp-=step;
eval('document.getElementById(who).style.'+where+'=temp;');
setTimeout("reveal('"+who+"',"+step+",'"+timeOut+"',"+type+")", timeOut);}
else {
document.getElementById(who).style.display="none";
document.body.scroll="yes";}}
function initReveal(type,div1bg,div2bg,div1bw,div2bw,div1bc,div2bc,step,timeOut,click) {
if(type==0) {
var bWhere1="border-bottom";
var bWhere2="border-top";
var putZero1="top:0px; left:0px";
var putZero2="bottom:0px; left:0px";
document.write('<div id="revealDiv1" style="z-index:100; display:block; position:absolute; '+putZero1+'; background:'+div1bg+' ; width:'+(width)+'; height:'+(height/2)+'; '+bWhere1+':'+div1bc+' solid '+div1bw+'px"></div>');
document.write('<div id="revealDiv2" style="z-index:100; display:block; position:absolute; '+putZero2+'; background:'+div2bg+' ; width:'+(width)+'; height:'+(height/2)+'; '+bWhere2+':'+div2bc+' solid '+div2bw+'px"></div>');
if(!click) {
reveal('revealDiv1',step,timeOut,0);
reveal('revealDiv2',step,timeOut,1);}
else {
clickText(type,step,timeOut);}}
if(type==1) {
var bWhere1="border-right";
var bWhere2="border-left";
var putZero1="top:0px; left:0px";
var putZero2="top:0px; right:0px";
document.write('<div id="revealDiv1" style="z-index:100; display:block; position:absolute; '+putZero1+'; background:'+div1bg+' ; width:'+(width/2)+'; height:'+(height)+'; '+bWhere1+':'+div1bc+' solid '+div1bw+'px"></div>');
document.write('<div id="revealDiv2" style="z-index:100; display:block; position:absolute; '+putZero2+'; background:'+div2bg+' ; width:'+(width/2)+'; height:'+(height)+'; '+bWhere2+':'+div2bc+' solid '+div2bw+'px"></div>');
if(!click) {
reveal('revealDiv1',step,timeOut,2);
reveal('revealDiv2',step,timeOut,3);}
else {
clickText(type,step,timeOut);}}
function clickText(type,step,timeOut) {
document.write('<div id="clickText" style="z-index:101; display:block; position:absolute; top:'+(height/2-clickh/2-clickb)+'; left:'+(width/2-clickw/2-clickb)+'"><table style="border:'+clickc+' solid '+clickb+'px; background:'+clickbg+' ;width:'+clickw+'px; height:'+clickh+'; '+clickFont+'; cursor:hand; cursor:pointer" onClick="doClickText(\'clickText\','+type+','+step+','+timeOut+')"><tr><td align="middle">'+clickt+'</td></tr></table></div>');}}
</SCRIPT>
<SCRIPT>
var clickw=170; // Width
var clickh=20; // Height
var clickb=2; // Border width
var clickc="#CCFFCC"; // Border color
var clickbg="#000000"; // Background color
var clickt="Siteye girmek icin tiklayin."; // Text to display
var clickFont="font-family:Tahoma,arial,helvetica; font-size:10pt; font-weight:bold; color:#FF0000"; // The font style of the text
new initReveal(0,'#CCFFCC','#CCFFCC',1,1,'#00FF00','#000000',3,10,true);
</SCRIPT><body>
|
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
06.09.2008, 15:02 (UTC) Mesaj konusu: |
|
|
Renkli cizgi
Kodu ekleyince yana bakın
Kod: <HTML><HEAD><TITLE>Gezginler Webmaster Resources / Web Design / Star Warp Effect</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
<style>
A:link {text-decoration: none; color: #000066}
A:visited {text-decoration: none; color: #000066}
A:active {text-decoration: none; color: #000066}
A:hover {text-decoration: none; color: #ceb464}
textarea {background-color: #ebe2d3; border-color: #ebe2d3; margin: #ebe2d3; scrollbar-3d-light-color: #ebe2d3; scrollbar-arrow-color: #000009; scrollbar-base-color: #ebe2d3; scrollbar-dark-shadow-color: #ebe2d3; scrollbar-face-color: #ebe2d3; scrollbar-highlight-color: #ebe2d3; scrollbar-shadow-color: #ebe2d3; zoom: #ebe2d3; word-wrap: #ebe2d3; word-break: #ebe2d3;}
BODY {
background-color:#EBE2D3;
scrollbar-arrow-color:#000066;
scrollbar-track-color:#EBE2D3;
scrollbar-shadow-color:#382820;
scrollbar-face-color:#EBE9D9;
scrollbar-highlight-color:#000066;
scrollbar-darkshadow-color:#EBE2D3;
scrollbar-3dlight-color:#EBE2D3;
}
</style>
<script LANGUAGE="JavaScript">
function CC_noErrors() {
return true;
}
window.onerror = CC_noErrors;
</script>
<!--- head --------------------------------------------------------------------------------------------------------------------->
<script type="text/javascript">
// <![CDATA[
var speed=33; // lower number for faster
var warp=3; // from 1 to 10
var stars=100; // number of stars
var colour="#000"; // colour of stars
var position=0; // set to '-1' for stars to appear behind text on page
/****************************
* Star Warp Effect *
* (c) 2005 mf2fm web-design *
* http://www.mf2fm.com/rv *
* DON'T EDIT BELOW THIS BOX *
****************************/
var i;
var strs=new Array();
var strx=new Array();
var stry=new Array();
var stdx=new Array();
var stdy=new Array();
var swide=800;
var shigh=600;
warp/=100;
window.onload=function() { if (document.getElementById) {
var b, s, temp;
set_width();
b=document.createElement("div");
s=b.style;
s.position="absolute";
b.setAttribute("id", "bod");
document.body.appendChild(b);
set_scroll();
for (i=0; i<stars; i++) {
strs[i]=document.createElement("div");
strs[i].style.backgroundColor=colour;
strs[i].style.overflow="hidden";
strs[i].style.position="absolute";
strs[i].style.zIndex=position;
stdy[i]=Math.random()*4-2;
stdx[i]=Math.random()*6-3;
temp=Math.random()*100;
strx[i]=swide/2+temp*stdx[i];
stry[i]=shigh/2+temp*stdy[i];
if (Math.abs(stdx[i])+Math.abs(stdy[i])>2.66) {
strs[i].style.width="2px";
strs[i].style.height="2px";
}
else {
strs[i].style.width="1px";
strs[i].style.height="1px";
}
b.appendChild(strs[i]);
}
setInterval("warp_drive()", speed);
}}
function warp_drive() {
for (i=0; i<stars; i++) {
stry[i]+=stdy[i];
strx[i]+=stdx[i];
stdx[i]*=1+warp;
stdy[i]*=1+warp;
if (stry[i]>0 && stry[i]<shigh-3 && strx[i]>0 && strx[i]<swide-3) {
strs[i].style.left=Math.floor(strx[i])+"px";
strs[i].style.top=Math.floor(stry[i])+"px"
}
else {
strx[i]=swide/2;
stry[i]=shigh/2;
stry[i]+=stdy[i]=Math.random()*4-2;
strx[i]+=stdx[i]=Math.random()*6-3;
if (Math.abs(stdx[i])+Math.abs(stdy[i])>2.66) {
strs[i].style.width="2px";
strs[i].style.height="2px";
}
else {
strs[i].style.width="1px";
strs[i].style.height="1px";
}
}
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
swide-=2;
shigh-=2;
}
window.onscroll=set_scroll;
function set_scroll() {
var sleft, sdown;
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
var s=document.getElementById("bod").style;
s.top=sdown+"px";
s.left=sleft+"px";
} |
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
07.09.2008, 05:50 (UTC) Mesaj konusu: |
|
|
Dil seçimi kodu
Kod: <html>
<script>
/*
By Richard Morris (Email: ram( at )ramorris.co.uk)
Featured on Website Abstraction (http://wsabstract.com)
For this and over 400+ free scripts, visit http://wsabstract.com
*/
var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage
//cut down to first 2 chars of country code
var lang = lang.substr(0,2)
// Ingilizce
if (lang == "en")
window.location.replace('ingilizce.html')
// Almanca
else if (lang == "de")
window.location.replace('turkce.html')
// Turkce
else if (lang == "tr")
window.location.replace('turkce.html')
// eger yazdiklarinizdan degilse nereye yonlenecek
else
window.location.replace('turk.html')
</script>
<html> |
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
07.09.2008, 06:13 (UTC) Mesaj konusu: |
|
|
Çözünürlüge göre yönlendirme.....
Kod: <html>
<head>
<script LANGUAGE="JavaScript">
<!-- Begin
function redirectPage() {
var url640x480 = "http://www.isim.com/640x480.html";
var url800x600 = "http://www.isim.com/800x600.html";
var url1024x768 ="http://www.isim.com/1024x768.html";
if ((screen.width == 640) && (screen.height == 480))
window.location.href= url640x480;
else if ((screen.width == 800) && (screen.height == 600))
window.location.href= url800x600;
else if ((screen.width == 1024) && (screen.height == 768))
window.location.href= url1024x768;
else window.location.href= url640x480;
}
// End -->
</script>
</head>
<body OnLoad="redirectPage()">
</body>
</html>
|
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
07.09.2008, 06:35 (UTC) Mesaj konusu: |
|
|
Dinamik takvim
Kod: <SCRIPT LANGUAGE="JavaScript">
var dDate = new Date();
var dCurMonth = dDate.getMonth();
var dCurDayOfMonth = dDate.getDate();
var dCurYear = dDate.getFullYear();
var objPrevElement = new Object();
function 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;
}
}
}
}
}
function 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;
}
}
}
function fGetDaysInMonth(iMonth, iYear) {
var dPrevDate = new Date(iYear, iMonth, 0);
return dPrevDate.getDate();
}
function 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;
}
function 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>")
}
function 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 -->
</script>
<script 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 -->
</script>
<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>
<script language="JavaScript">
var dCurDate = new Date();
fDrawCal(dCurDate.getFullYear(), dCurDate.getMonth()+1, 30, 30, "12px", "bold", 1);
</script>
</td>
</tr>
</table>
</form>
|
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
07.09.2008, 09:03 (UTC) Mesaj konusu: |
|
|
Dönen yazi
Siteye yansiyan dönen yazi
Kod: <SCRIPT>
// Edit the code below this line
// Set your messages. Add as many as you like
var text=new Array()
text[0]=" ...... Furkan dostweb sunar"
text[1]=" ...... Hazir kodlarla hizmetimiz devam ediyor"
text[2]=" ...... yeniliklerden haberimiz olsun diyorsaniz"
text[3]=" ...... Bana yazin"
text[4]=" ...... Sitenizi yenileyin basarilar diliyorum"
text[5]=" ...... Furkan dostweb sundu"
// Set the font
var textfont="Arial"
// Set the font-size
var textfontsize=32
// Set the font-color
var textfontcolor="#0000CC"
// Set the font-weight (values from 100 to 900)
var textweight="900"
// Do not edit the code below this line
var textitalic="0"
var message=new Array()
var x_textposition=0
var y_textposition=0
var i_segments=Math.round(360/text.length)
var i_grad=0
var grad=0
var colorrgbred
var colorrgbgreen
var colorrgbblue
var windowwidth
var windowheight
var ns4=document.layers?1:0
var ns6=document.getElementById&&!document.all?1:0
var ie=document.all?1:0
if (textweight=="bold") {textweight=900}
if (textweight=="normal") {textweight=100}
if (textitalic=="italic") {textitalic=1}
if (textitalic=="normal") {textitalic=0}
for (i=0;i<=text.length-1;i++) {message[i]=text[i].replace(/'/g,"`")}
translateintorgb()
function translateintorgb() {
var hexanewred=textfontcolor.substring(1,3)
var hexanewgreen=textfontcolor.substring(3,5)
var hexanewblue=textfontcolor.substring(5,7)
colorrgbred=parseInt("0x"+hexanewred)
colorrgbgreen=parseInt("0x"+hexanewgreen)
colorrgbblue=parseInt("0x"+hexanewblue)}
function initiate() {
windowheight=parseInt(document.body.clientHeight)/2
windowwidth=parseInt(document.body.clientWidth)-40
for (i=0;i<text.length;i++) {
var thisspan=eval("document.all.rotationstyle"+i)
thisspan.style.posLeft=20
thisspan.style.posTop=0}
settexts()}
function settexts() {
for (i=0;i<text.length;i++) {
var thisid="rotationobj"+i
var thisspan=eval("rotationstyle"+i)
thisspan.innerHTML=
'<OBJECT ID="'+thisid+'" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6" STYLE="position:relative;width:'+windowwidth+'px;height:'+2*windowheight+'px">'+
'<PARAM NAME="Line0001" VALUE="SetLineStyle(0)">'+
'<PARAM NAME="Line0002" VALUE="SetLineColor(0,0,0)">'+
'<PARAM NAME="Line0003" VALUE="SetFillColor('+colorrgbred+','+colorrgbgreen+','+colorrgbblue+')">'+
'<PARAM NAME="Line0004" VALUE="SetFont(\''+textfont+'\', '+textfontsize+', '+textweight+', '+textitalic+', 0, 0)">'+
'<PARAM NAME="Line0005" VALUE="Text(\''+message[i]+'\',0, 2, 0)">'+
'</OBJECT>'}
for (i=0;i<text.length;i++) {
var thisobj=eval("rotationobj"+i)
thisobj.Rotate(0,i_grad,0)
i_grad+=i_segments}
startscroll()}
function startscroll() {
for (i=0;i<text.length;i++) {
var thisobj=eval("rotationobj"+i)
thisobj.Rotate(1,2,0)}
timer=setTimeout("startscroll()",20)}
if (ie) {
for (i=0;i<text.length;i++) {
var thisid="rotationstyle"+i
var thisobjid="rotationobj"+i
document.write("<SPAN ID='"+thisid+"' STYLE='position:absolute'>")
document.write("<OBJECT ID='"+thisobjid+"' CLASSID='CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6'>")
document.write("</OBJECT>")
document.write("</SPAN>")
onload=initiate}}
</SCRIPT>
|
|
|
↑
|
|
 |
-

yovaliyiz
Acemi Üye
|
07.09.2008, 09:21 (UTC) Mesaj konusu: |
|
|
Hani nerde sağdan kıvrılan reklam kodu :S :SS:S |
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
07.09.2008, 09:24 (UTC) Mesaj konusu: |
|
|
Animasyonsuz ilerleme çubuğu
Kod: <HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1254">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY>
<P align=center>İşleminiz yapılıyor lütfen bekleyiniz. </P>
<TABLE align=center>
<TBODY>
<TR>
<TD>
<DIV
style="BORDER-RIGHT: black 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: black 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8pt; PADDING-BOTTOM: 2px; BORDER-LEFT: black 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: black 1px solid"><SPAN
id=progress1> </SPAN> <SPAN id=progress2> </SPAN>
<SPAN id=progress3> </SPAN> <SPAN id=progress4>
</SPAN> <SPAN id=progress5> </SPAN> <SPAN
id=progress6> </SPAN> <SPAN id=progress7> </SPAN>
<SPAN id=progress8> </SPAN> <SPAN id=progress9>
</SPAN> </DIV></TD></TR></TBODY></TABLE>
<SCRIPT language=javascript>
var progressEnd = 9; // set to number of progress <span>'s.
var progressColor = 'blue'; // set to progress bar color
var progressInterval = 1000; // set to time between updates (milli-seconds)
var progressAt = progressEnd;
var progressTimer;
function progress_clear() {
for (var i = 1; i <= progressEnd; i++) document.getElementById('progress'+i).style.backgroundColor = 'transparent';
progressAt = 0;
}
function progress_update() {
progressAt++;
if (progressAt > progressEnd) progress_clear();
else document.getElementById('progress'+progressAt).style.backgroundColor = progressColor;
progressTimer = setTimeout('progress_update()',progressInterval);
}
function progress_stop() {
clearTimeout(progressTimer);
progress_clear();
}
progress_update(); // start progress bar
</SCRIPT>
</BODY></HTML> |
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
07.09.2008, 14:04 (UTC) Mesaj konusu: |
|
|
Uyarisiz sag tus engeli
Kod: <SCRIPT language=JavaScript1.2>
if (window.Event) // Only Netscape will have the CAPITAL E.
document.captureEvents(Event.MOUSEUP); // catch the mouse up event
function nocontextmenu() // this function only applies to IE4, ignored otherwise.
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e) // This function is used by all others
{
if (window.Event) // again, IE or NAV?
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
</SCRIPT>
|
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
09.09.2008, 04:15 (UTC) Mesaj konusu: |
|
|
Sitenizde haber içerikli kullanabileceginiz güzel bir script
Kod: <style>
<!--
#tickertape{
position:relative;
layer-background-color:black;
width:400;
height:12;
}
#subtickertape{
background-color:black;
position:absolute;
border: 1px solid black;
width:400;
height:12;
}
.subtickertapefont{
font:bold 12px Verdana;
text-decoration:none;
color:white;
}
.subtickertapefont a{
color:white;
text-decoration:none;
}
-->
</style>
<title>HaiN</title>
</head>
<body onload="if (document.all||document.layers){regenerate2();update()}">
<table border="0" width="423" cellspacing="0" cellpadding="0">
<tr>
<td width="19"></td>
<td valign="top" align="left" width="404"><p align="left"><div id="tickertape">
<div id="subtickertape" class="subtickertapefont">Initializing...</div>
</div>
<script language="JavaScript1.2">
var speed=4000
var news=new Array()
news[0]="<a href='http://www.google.com'>* Google ( Ne ararsanız hepsi burada var)</a>"
news[1]="<a href='http://www.yahoo.com'>* Yahoo (Hem arayın hem de maillerinize bakın)</a>"
news[2]="<a href='http://www.hotmail.com'>* Hotmail (En mail bu mail, HoTmAiL)</a>"
//expand or shorten this list of messages as desired
i=0
if (document.all)
tickerobject=document.all.subtickertape.style
else
tickerobject=document.tickertape.document
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",450)
}
function update(){
BgFade(0xff,0xff,0xff, 0x00,0x00,0x00,10);
if (document.layers){
document.tickertape.document.subtickertape.document.write('<span class="subtickertapefont">'+news[i]+'</span>')
document.tickertape.document.subtickertape.document.close()
}
else
document.all.subtickertape.innerHTML=news[i]
if (i<news.length-1)
i++
else
i=0
setTimeout("update()",speed)
}
function BgFade(red1, grn1, blu1, red2,
grn2, blu2, steps) {
sred = red1; sgrn = grn1; sblu = blu1;
ered = red2; egrn = grn2; eblu = blu2;
inc = steps;
step = 0;
RunFader();
}
function RunFader() {
var epct = step/inc;
var spct = 1 - epct;
if (document.layers)
tickerobject.bgColor =
Math.floor(sred * spct + ered *
epct)*256*256 +
Math.floor(sgrn * spct + egrn * epct)*256 +
Math.floor(sblu * spct + eblu * epct);
else
tickerobject.backgroundColor=
Math.floor(sred * spct + ered *
epct)*256*256 +
Math.floor(sgrn * spct + egrn * epct)*256 +
Math.floor(sblu * spct + eblu * epct);
if ( step < inc ) {
setTimeout('RunFader()',50);
}
step++;
}
</script></p>
</table>
</body> |
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
10.09.2008, 05:19 (UTC) Mesaj konusu: |
|
|
web sitenize farklı bir takvim
Kod: <script language="JavaScript">
//This Java Script is free to the domain. All I ask is you send me an
//email to
//ddelong( at )csci.csusb.edu to let me know that you will be using it. This
//message must be included with the script if you copy it.
<!-- for sucky browsers
Months = new Array(12);
Months[0] = "January";
Months[1] = "February";
Months[2] = "March";
Months[3] = "April";
Months[4] = "May";
Months[5] = "June";
Months[6] = "July";
Months[7] = "August";
Months[8] = "September";
Months[9] = "October";
Months[10] = "November";
Months[11] = "December";
function PadSpaces(TheString)
{
var Spaces = " ";
len = Math.round((9 - TheString.length)/2);
return Spaces.substring(0,len) + TheString;
}
function NumLeapYears(StartYear, EndYear)
{
var LeapYears, i;
if (EndYear >= StartYear){
for(LeapYears = 0; StartYear <= EndYear; StartYear++)
if (IsLeapYear(StartYear)) LeapYears++;
}else{
for(LeapYears = 0; EndYear <= StartYear; EndYear++)
if (IsLeapYear(EndYear)) LeapYears++;
}
return LeapYears;
}
function IsLeapYear(Year)
{
if(Math.round(Year/4) == Year/4){
if(Math.round(Year/100) == Year/100){
if(Math.round(Year/400) == Year/400)
return true;
else return false;
}else return true;
}
return false;
}
function Trim(TheString)
{
var len;
len = TheString.length;
while(TheString.substring(0,1) == " "){ //trim left
TheString = TheString.substring(1, len);
len = TheString.length;
}
while(TheString.substring(len-1, len) == " "){ //trim right
TheString = TheString.substring(0, len-1);
len = TheString.length;
}
return TheString;
}
function DetermineMonthIdx()
{
var i, month, month_s, len;
month = Trim(document.calform.elements[4].value);
len = month.length;
for( i = 0; i <12; i++){
month_s = Months[i].substring(0,len);
if (month_s.toUpperCase() == month.toUpperCase())
return (i);
}
return -1;
}
function FindNewYearStartingDay(Year)
{
var LeapYears, Years, Day;
LeapYears = NumLeapYears(1995, Year);
if (Year >=1995)
Years = (Year -1995)+LeapYears;
else Years = (Year -1995)-LeapYears;
if (Year >=1995)
Day = Math.round(((Years/7 - Math.floor(Years/7))*7)+.1);
else Day = Math.round(((Years/7 - Math.ceil(Years/7))*7)-.1);
if (Year >=1995){
if(IsLeapYear(Year)) Day--;
}else Day += 7;
if(Day < 0) Day = 6;
if(Day > 6) Day = 0;
return Day;
}
function FindNumDaysInMonth(Year, Month)
{
if(Month == 1){
if(IsLeapYear(Year)) return 29;
else return 28;
}else{
if(Month >6) Month++;
if(Month/2 == Math.round(Month/2)) return 31;
}
return 30;
}
function FindMonthStartDay(NewYearDay, Year, Month)
{
var MonthStartDay;
AddArray = new Array(12);
AddArray[0]=0;AddArray[1]=3;AddArray[2]=3;AddArray[3]=6;
AddArray[4]=1;AddArray[5]=4;AddArray[6]=6;AddArray[7]=2;
AddArray[8]=5;AddArray[9]=0;AddArray[10]=3;AddArray[11]=5;
MonthStartDay = NewYearDay + AddArray[Month];
if(IsLeapYear(Year) && (Month ) > 1) MonthStartDay ++;
if (MonthStartDay > 6) MonthStartDay -= 7;
return MonthStartDay;
}
function FillCalendar()
{
var Year, Month, Midx, NewYearDay, MonthStartDay;
var NumDaysInMonth, i, t;
Year = parseFloat(document.calform.elements[1].value);
Month = document.calform.elements[4].value;
Midx = DetermineMonthIdx();
if (Midx == -1){
alert ("Can't recognize that month");
return;
}
NewYearDay = FindNewYearStartingDay(Year);
MonthStartDay = FindMonthStartDay(NewYearDay, Year, Midx);
NumDaysInMonth = FindNumDaysInMonth(Year, Midx);
for(i = 6; i < 43; i++){
t = i-5-MonthStartDay;
if ( t >= 1 && t <= NumDaysInMonth)
document.calform.elements[i].value =t;
else document.calform.elements[i].value = "";
}
}
function IncDecYear(val)
{
var valNum = parseInt(val);
var valNum2 = parseInt(document.calform.elements[1].value)
document.calform.elements[1].value = valNum2 + valNum;
FillCalendar()
}
function IncDecMonth(val)
{
var valNum = parseInt(val);
var Midx = DetermineMonthIdx();
Midx += valNum;
if(Midx > 11) Midx = 0;
if(Midx < 0) Midx = 11;
document.calform.elements[4].value = PadSpaces(Months[Midx]);
FillCalendar()
}
// -->
</script>
</HEAD><BODY><table border=1 bgcolor="#000000"><tr><td align=center>
<table border=0 cellspacing=0>
<form name="calform">
<tr><td align=center bgcolor="#000000"><input type=button value="<<" onClick="IncDecYear(-1)"></td>
<th bgcolor="#aaaaaa" colspan=5 align=center><input size=4 type=text value="1993"></th>
<td align=center bgcolor="#000000"><input type=button value=">>" onClick="IncDecYear(1)"></td></tr>
<tr><td align=center bgcolor="#000000"><input type=button value="<<" onClick="IncDecMonth(-1)"></td>
<th bgcolor="#aaaaaa" colspan=5 align=center><input size=9 type=text value=" January "></th>
<td align=center bgcolor="#000000"><input type=button value=">>" onClick="IncDecMonth(1)"></td></tr>
<tr><th bgcolor="#ffcccc">Sun</td>
<th bgcolor="#ccccff">Mon</td>
<th bgcolor="#ccccff">Tue</td>
<th bgcolor="#ccccff">Wed</td>
<th bgcolor="#ccccff">Thu</td>
<th bgcolor="#ccccff">Fri</td>
<th bgcolor="#ccccff">Sat</td></tr>
<tr><td bgcolor="#ffcccc"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td></tr>
<tr><td bgcolor="#ffcccc"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td></tr>
<tr><td bgcolor="#ffcccc"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td></tr>
<tr><td bgcolor="#ffcccc"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td></tr>
<tr><td bgcolor="#ffcccc"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#ccccff" ><input type=text size=2></td></tr>
<tr><td bgcolor="#ffcccc"><input type=text size=2></td>
<td bgcolor="#ccccff"><input type=text size=2></td>
<td bgcolor="#aaaaaa" colspan=5><input type=text></td></tr>
</form>
</table>
</td></tr></table>
<script language="JavaScript">
<!--
//include this script segment if you want to set the calendar to today's date.
//this MUST come after the tabled form which contains the calendar
//set calendar to today's date
myDate = new Date();
var Month = parseInt(myDate.getMonth());
document.calform.elements[1].value = 1900 + myDate.getYear();
document.calform.elements[4].value = PadSpaces(Months[Month]);
document.calform.elements[43].value = "Today is: " +
myDate.getDate() + " " + Months[Month].substring(0,3)
+ ", " + (1900 + myDate.getYear());
FillCalendar();
// -->
</script>
|
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
12.09.2008, 07:14 (UTC) Mesaj konusu: |
|
|
Bir sayfaya yeni boyut vermek
Kod: <html>
<head>
<script type="text/javascript">
function resizeWindow()
{
top.resizeTo(500,300)
}
</script>
</head>
<body>
<form>
<input type="button" onclick="resizeWindow()" value="Resize window">
</form>
<p><b>Note:</b> We have used the <b>top</b> element instead of the <b>window</b> element, to represent the top frame. If you do not use frames, use the <b>window</b> element instead.</p>
</body>
</html>
|
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
17.09.2008, 16:55 (UTC) Mesaj konusu: |
|
|
sayfanizda mp3 aramalarini 13 arama motorunda birden yaptirabilirsiniz
Kod: <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>[:: HoRoZz Atölye ::]-[www.horozz.net]</title>
</head>
<body bgcolor="#C0C0C0">
<table border="8" width="98%" bgcolor="#C0C0C0">
<tr>
<td width="100%">
<p align="center"><font face="Verdana" size="5" color="#808080"><b>.::
HoRoZz Atölye ::.</b></font></td>
</tr>
</table>
<font color="black">
<table bgColor="silver" border="3" cellPadding="3" cellSpacing="3" width="729" height="413">
<tbody>
<tr>
<td width="707" height="38"><font color="black">
<form action="http://128.83.114.221/search.exe" method="get">
<p><input name="MP3Name" size="40"> <input name="Submit" type="submit" value="MP3 site.com"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="23" valign="top"><font color="black">
<form action="http://www.mp3search.com/cgi-bin/search.pl" method="post">
<p><input name="code" type="hidden" value="877575.671"><input name="search" size="40"> <input name="Submit" type="submit" value="MP3-search.com"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="6" valign="top"><font color="black">
<form action="http://mp3.box.sk/cgi-bin/marek/robot/robot" method="get">
<p><input name="project" type="hidden" value="mp3"><input name="srch" size="40"> <input name="Submit" type="submit" value="MP3 Box Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="16" valign="top"><font color="black">
<form action="http://www.msaka.com/cgi-bin/ss/ss.cgi" method="post">
<p><input name="keyword" size="40"> <input name="Submit" type="submit" value="Msaka.com Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="14" valign="top"><font color="black">
<form action="http://www.mircx.com/cgi-bin/s" method="get">
<p><input name="d" type="hidden" value="m"><input name="q" size="40"> <input name="Submit" type="submit" value="CJB's MP3 Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="1" valign="top"><font color="black">
<form action="http://129.69.212.1/~hohlor/sql/search.cgi" method="post">
<p><input name="file" size="40"> <input name="Submit" type="submit" value="Chaos' MP3 Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="11" valign="top"><font color="black">
<form action="http://spam.cyberhighway.net/cgi-bin/search/search.pl" method="post">
<p><input name="searchstring" size="40"> <input name="Submit" type="submit" value="MP3 Search-a-rooni"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="24" valign="top"><font color="black">
<form action="http://www.veconsulting.com/cgi-local/search.cgi" method="post">
<p><input name="searchstring" size="40"> <input name="Submit" type="submit" value="Vyper's MP3 Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="21" valign="top"><font color="black">
<form action="http://ducttape.deeznuts.com/cgi-bin/mp3search.pl" method="get">
<p><input name="isindex" size="40"> <input name="Submit" type="submit" value="Search Ducttape"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="26" valign="top"><font color="black">
<form action="http://203.251.74.19/~puffy/mp3.cgi" method="post">
<p><input name="terms" size="40"> <input name="Submit" type="submit" value="Search Acid House"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="25" valign="top"><font color="black">
<form action="http://www.cqws.com/mp3/bin/search.cgi" method="post">
<p><input name="searchstring" size="40"> <input name="Submit" type="submit" value="Search CQWS' MP3"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="25" valign="top"><font color="black">
<form action="http://www.nei1.com/cgi-local/search.cgi" method="post">
<p><input name="searchstring" size="40"> <input name="Submit" type="submit" value="Zippy's MP3 Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="27" valign="middle"><font color="black">
<form action="http://comtech.dyn.ml.org/cgi-bin/search2.bat" method="get">
<p><input name="isindex" size="40"> <input name="Submit" type="submit" value="Search Crimes Music"></p>
</form>
</font></td>
</tr>
</tbody>
</table>
</font>
<form method="POST" action="--WEBBOT-SELF--">
<!--webbot bot="SaveResults" U-File="fpweb:///_private/form_results.txt"
S-Format="TEXT/CSV" S-Label-Fields="TRUE" -->
<p align="center"><textarea rows="5" name="S1" cols="44"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
</head>
<body>
<table border="8" width="98%" bgcolor="#C0C0C0">
<tr>
<td width="100%">
<p align="center"><font face="Verdana" size="5" color="#808080"><b>.::
HoRoZz Atölye ::.</b></font></td>
</tr>
</table>
<font color="black">
<table bgColor="silver" border="3" cellPadding="3" cellSpacing="3" width="729" height="1202">
<tbody>
<tr>
<td width="707" height="38"><font color="black">
<form action="http://128.83.114.221/search.exe" method="get">
<p><input name="MP3Name" size="40"> <input name="Submit" type="submit" value="MP3 site.com"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://www.mp3search.com/cgi-bin/search.pl" method="post">
<p><input name="code" type="hidden" value="877575.671"><input name="search" size="40"> <input name="Submit" type="submit" value="MP3-search.com"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://mp3.box.sk/cgi-bin/marek/robot/robot" method="get">
<p><input name="project" type="hidden" value="mp3"><input name="srch" size="40"> <input name="Submit" type="submit" value="MP3 Box Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://www.msaka.com/cgi-bin/ss/ss.cgi" method="post">
<p><input name="keyword" size="40"> <input name="Submit" type="submit" value="Msaka.com Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://www.mircx.com/cgi-bin/s" method="get">
<p><input name="d" type="hidden" value="m"><input name="q" size="40"> <input name="Submit" type="submit" value="CJB's MP3 Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://129.69.212.1/~hohlor/sql/search.cgi" method="post">
<p><input name="file" size="40"> <input name="Submit" type="submit" value="Chaos' MP3 Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://spam.cyberhighway.net/cgi-bin/search/search.pl" method="post">
<p><input name="searchstring" size="40"> <input name="Submit" type="submit" value="MP3 Search-a-rooni"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://www.veconsulting.com/cgi-local/search.cgi" method="post">
<p><input name="searchstring" size="40"> <input name="Submit" type="submit" value="Vyper's MP3 Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://ducttape.deeznuts.com/cgi-bin/mp3search.pl" method="get">
<p><input name="isindex" size="40"> <input name="Submit" type="submit" value="Search Ducttape"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://203.251.74.19/~puffy/mp3.cgi" method="post">
<p><input name="terms" size="40"> <input name="Submit" type="submit" value="Search Acid House"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://www.cqws.com/mp3/bin/search.cgi" method="post">
<p><input name="searchstring" size="40"> <input name="Submit" type="submit" value="Search CQWS' MP3"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://www.nei1.com/cgi-local/search.cgi" method="post">
<p><input name="searchstring" size="40"> <input name="Submit" type="submit" value="Zippy's MP3 Search"></p>
</form>
</font></td>
</tr>
<tr>
<td width="707" height="84"><font color="black">
<form action="http://comtech.dyn.ml.org/cgi-bin/search2.bat" method="get">
<p><input name="isindex" size="40"> <input name="Submit" type="submit" value="Search Crimes Music"></p>
</form>
</font></td>
</tr>
</tbody>
</table>
</font>
</body>
</html> |
|
|
↑
|
|
 |
-

marasultraslan
Uzman Üye
Konum: Ҳ●K.Maraş●Ҳ
|
18.09.2008, 05:45 (UTC) Mesaj konusu: |
|
|
Solda gizlenmis menu
Sol tarafa gizlenmis sadece ucu görünen üzerine gelindiginde görünen cekildiginde kaybolan menu
Kod: <HTML>
<HEAD>
<TITLE>Insert Your Title</TITLE>
<META name="Generator" content="Soft Lite ScriptWorx 4.0">
<style>
<!--
#slidemenubar, #slidemenubar2{
position:absolute;
left:-155px;
width:160px;
top:170px;
border:1.5px solid navy;
background-color:lightblue;
layer-background-color:lightblue;
font:bold 12px Verdana;
line-height:20px;
}
-->
</style>
</HEAD>
<BODY topmargin="0" leftmargin="0" link="#0000FF" vlink="#800080" alink="#FF0000">
<!-- Type your text here //-->
<script language="JavaScript1.2">
/*
Sliding Menu Bar Script-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/
if (document.all)
document.write('<div id="slidemenubar2" style="left:-150" onMouseover="pull()" onMouseout="draw()">')
</script>
<layer id="slidemenubar" onMouseover="pull()" onMouseout="draw()">
<script language="JavaScript1.2">
var sitems=new Array()
var sitemlinks=new Array()
//extend or shorten this list
sitems[0]="Home"
sitems[1]="Take our survey!"
sitems[2]="Menus And Navigation"
sitems[3]="Document Effects"
sitems[4]="Scrollers"
sitems[5]="Image Effects"
sitems[6]="Links And Buttons"
sitems[7]="Dynamic Clocks & Dates"
sitems[8]="Text Animations"
sitems[9]="Browser Window"
sitems[10]="User System Information"
sitems[11]="Cascading Style Sheets"
sitems[12]="Other"
//These are the links pertaining to the above text.
sitemlinks[0]="../test.htm"
sitemlinks[1]=".."
sitemlinks[2]="../dynamicindex1/index.html"
sitemlinks[3]="../dynamicindex3/index.html"
sitemlinks[4]="../dynamicindex2/index.html"
sitemlinks[5]="../dynamicindex4/index.html"
sitemlinks[6]="../dynamicindex5/index.html"
sitemlinks[7]="../dynamicindex6/index.html"
sitemlinks[8]="../dynamicindex10/index.html"
sitemlinks[9]="../dynamicindex8/index.html"
sitemlinks[10]="../dynamicindex9/index.html"
sitemlinks[11]="../dynamicindex7/index.html"
sitemlinks[12]="../dynamicindex11/index.html"
for (i=0;i<=sitems.length-1;i++)
document.write('<a href='+sitemlinks[i]+'>'+sitems[i]+'</a><br>')
</script>
</layer>
<script language="JavaScript1.2">
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",400)
}
window.onload=regenerate2
if (document.all){
document.write('</div>')
themenu=document.all.slidemenubar2.style
rightboundary=0
leftboundary=-150
}
else{
themenu=document.layers.slidemenubar
rightboundary=150
leftboundary=10
}
function pull(){
if (window.drawit)
clearInterval(drawit)
pullit=setInterval("pullengine()",50)
}
function draw(){
clearInterval(pullit)
drawit=setInterval("drawengine()",50)
}
function pullengine(){
if (document.all&&themenu.pixelLeft<rightboundary)
themenu.pixelLeft+=5
else if(document.layers&&themenu.left<rightboundary)
themenu.left+=5
else if (window.pullit)
clearInterval(pullit)
}
function drawengine(){
if (document.all&&themenu.pixelLeft>leftboundary)
themenu.pixelLeft-=5
else if(document.layers&&themenu.left>leftboundary)
themenu.left-=5
else if (window.drawit)
clearInterval(drawit)
}
</script>
</BODY>
</HTML>
|
|
|
↑
|
|
 |
|