| | Create free blog ( Türkçe , Deutsch , Español )

Html Kodları

Sitenize Html Kodları

html kodları html kodu html arşivi html indir kodlayıcı kodlar java script kodları kod indir sitene kodlar tema

html kodları html kodu html arşivi html indir kodlayıcı kodlar java script kodları kod indir sitene kodlar tema blog tema

hareketli ve değişen buton html kodu

<!-- Kaynak = www.scriptci.bloggum.com -->
<SCRIPT language=JavaScript>
<!--
var timerID = null
var timerRunning = false
var charNo = 0
var charMax = 0
var lineNo = 0
var lineMax = 2                                    
var lineArr = new Array(lineMax)
var urlArr = new Array(lineMax)
lineArr[1] = "www.scriptci.bloggum.com"                 
urlArr[1] = "http://www.scriptci.bloggum.com"
lineArr[2] = "Bloğumuza SİZDE KATILIN"                 
urlArr[2] = "http://www.scriptci.bloggum.com"

var lineText = lineArr[1]

function StartShow() {
 StopShow()
 ShowLine()
 timerRunning = true
}

function FillSpaces() {
 for (var i = 1; i <= lineWidth; i++) {
  spaces += " "
}
}

function StopShow() {
 if (timerRunning) {
  clearTimeout(timerID)
  timerRunning = false
}
}

function ShowLine() {
 if (charNo == 0) { // Next line
  if (lineNo < lineMax)  {
   lineNo++
}
  else {
   lineNo = 1
}
  lineText = lineArr[lineNo]
  charMax = lineText.length
}
 if (charNo <= charMax) {  // Next char
  document.formDisplay.buttonFace.value = lineText.substring(0, charNo)
  charNo++
  timerID = setTimeout("ShowLine()", 100)
}
 else {
  charNo = 0
  timerID = setTimeout("ShowLine()", 3000)
}
}

function GotoUrl(url)
{
 top.location.href = url
}
//-->
</SCRIPT>

<SCRIPT language=JavaScript>
<!--
document.write("<FORM NAME=\"formDisplay\">";
document.write("<INPUT TYPE=\"BUTTON\" STYLE=\"color: #f0ffcc; font-family: Verdana; text-align: Center; background-color: #004080; font-size: 7pt; border: 2px outset #ffffcc\" NAME=\"buttonFace\" VALUE=\"&{lineText}\" SIZE=\"18\" onClick=\"GotoUrl(urlArr[lineNo])\">";
document.write("</FORM>";
StartShow();
//-->
</SCRIPT>
<!-- Kaynak = www.scriptci.bloggum.com -->

buton üzerinde kayan yazı kodu

<!-- Kaynak = www.scriptci.bloggum.com -->
<FORM name=form2>
<INPUT name=bnner onclick="window.location.href = 'http://www.gezginler.net'" type=button value=Hosgeldiniz>
</FORM>
<SCRIPT language=JavaScript1.1>

var id,pause=0,position=0;

function bnner()
{

var i,k,msg="ø¸.°¯¤.@.¤¯°.¸ <<<< Scriptci.bloggum.com / Html Kodları - Java Scriptler  <<<<";

k=(60/msg.length)+1;

for(i=0;i<=k;i++) msg+=" "+msg;

document.form2.bnner.value=msg.substring(position,position+60);

if(position++==msg.length) position=0;

id=setTimeout("bnner()",150);
}

bnner();

</SCRIPT>
<!-- Kaynak = www.scriptci.bloggum.com -->

uzay arkaplan kodu 3

<!-- Kaynak = www.scriptci.bloggum.com -->
<BODY bgColor=#000000>
<script language="JavaScript">
if (document.all){
L=20;
H=0;
W=0;
R=0;
E=0;
MY=0;
MX=0;
Wd=0;
Hd=0;
F=new Array();
Y=new Array();
X=new Array();
S=new Array();
A=new Array();
B=new Array();

document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < L; i++)
document.write('<div id="ie" style="position:absolute;top:0;left:0;width:10px;height:10px;'
+'font-family:Courier New;font-size:50px;color:#ffffff">.</div>');
document.write('</div></div>');

//Initial Placement!
function Set(){
for (i=0; i < L; i++){
H=window.document.body.offsetHeight;
W=window.document.body.offsetWidth;
A[i]=Math.round(Math.random()*H);
B[i]=Math.round(Math.random()*W);
S[i]=Math.random()*0.07+0.05;
R=Math.round(Math.random()*3);
E=Math.round(Math.random()*2500+50)
if (R == 3) B[i]=-E;
if (R == 2) B[i]=W+E;
if (R == 1) A[i]=-E;
if (R == 0) A[i]=H;
F[i]=W/14;
}
}
Set();

function Assign(){
outer.style.top=document.body.scrollTop;
for (i=0; i < L; i++){
F[i]-=S[i]*35;
if (F[i] < 4) F[i]=3;
ie[i].style.top =Y[i];
ie[i].style.left=X[i];
ie[i].style.fontSize=F[i];
}
}
function fly(){
MY=window.document.body.clientHeight/2;
MX=window.document.body.clientWidth/2;
Wd=Math.round(Math.random()*40+5);
Hd=Math.round(Math.random()*30+5);
for (i=0; i < L; i++)
{
Y[i]=A[i]+=(MY-A[i])*(S[i]);             
X[i]=B[i]+=(MX-B[i])*(S[i]); 
if ((X[i] > MX-Wd) && (X[i] < MX+Wd) && (Y[i] > MY-Hd) && (Y[i] < MY+Hd)){
 H=window.document.body.offsetHeight;
 W=window.document.body.offsetWidth;
 A[i]=Math.round(Math.random()*H);
 B[i]=Math.round(Math.random()*W);
 S[i]=Math.random()*0.05+0.05;
 R=Math.round(Math.random()*3);
 E=Math.round(Math.random()*50+50)
 if (R == 3) B[i]=-E;
 if (R == 2) B[i]=W+E;
 if (R == 1) A[i]=-E;
 if (R == 0) A[i]=H+E;
}
if ((X[i] < 0) || (X[i] > W) || (Y[i] < 0) || (Y[i] > H))
F[i]=W/14;
}
Assign();
setTimeout('fly()',20);
}
window.onload=fly;
}
</script>
<!-- Kaynak = www.scriptci.bloggum.com -->

uzay arkaplan kodu 2

<!-- Kaynak = www.scriptci.bloggum.com -->
<body bgcolor=#000000 onLoad="fly()">
<script language="JavaScript">
SmallStars = 30;
LargeStars = 10;

SmallYpos = new Array();
SmallXpos = new Array();
LargeYpos = new Array();
LargeXpos = new Array();
Smallspeed= new Array();
Largespeed= new Array();
ns=(document.layers)?1:0;
if (ns){
for (i = 0; i < SmallStars; i++)
{document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFF0' CLIP='0,0,1,1'></LAYER>"}
for (i = 0; i < LargeStars; i++)
{document.write("<LAYER NAME='ln"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFFF' CLIP='0,0,2,2'></LAYER>"}
}
else{
document.write('<div style="position:absolute;top:0px;left:0px">');
document.write('<div style="position:relative">');
for (i = 0; i < SmallStars; i++)
{document.write('<div id="si" style="position:absolute;top:0;left:0;width:1px;height:1px;background:#fffff0;font-size:1px"></div>')}
document.write('</div>');
document.write('</div>');
document.write('<div style="position:absolute;top:0px;left:0px">');
document.write('<div style="position:relative">');
for (i = 0; i < LargeStars; i++)
{document.write('<div id="li" style="position:absolute;top:0;left:0;width:2px;height:2px;background:#ffffff;font-size:2px"></div>')}
document.write('</div>');
document.write('</div>');
}
WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
//Inital placement!
for (i=0; i < SmallStars; i++)
 {                                                               
 SmallYpos[i] = Math.round(Math.random()*WinHeight);
 SmallXpos[i] = Math.round(Math.random()*WinWidth);
 Smallspeed[i]= Math.random()*5+1;
}
for (i=0; i < LargeStars; i++)
 {                                                               
 LargeYpos[i] = Math.round(Math.random()*WinHeight);
 LargeXpos[i] = Math.round(Math.random()*WinWidth);
 Largespeed[i]= Math.random()*10+5;
}
function fly(){
var WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
var WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
var hscrll=(document.layers)?window.pageYOffset:document.body.scrollTop;
var wscrll=(document.layers)?window.pageXOffset:document.body.scrollLeft;

for (i=0; i < LargeStars; i++)
{
 LargeXpos[i]-=Largespeed[i];
 if (LargeXpos[i] < -10)
  {
  LargeXpos[i]=WinWidth;
  LargeYpos[i]=Math.round(Math.random()*WinHeight);
  Largespeed[i]=Math.random()*10+5;
  }
 if (ns){
 document.layers['ln'+i].left=LargeXpos[i];
 document.layers['ln'+i].top=LargeYpos[i]+hscrll;
 }
 else{
 li[i].style.pixelLeft=LargeXpos[i];
 li[i].style.pixelTop=LargeYpos[i]+hscrll;
 }
}

for (i=0; i < SmallStars; i++)
{
 SmallXpos[i]-=Smallspeed[i];
 if (SmallXpos[i] < -10)
  {
  SmallXpos[i]=WinWidth;
  SmallYpos[i]=Math.round(Math.random()*WinHeight);
  Smallspeed[i]=Math.random()*5+1;
  }
 if (ns){
 document.layers['sn'+i].left=SmallXpos[i];
 document.layers['sn'+i].top=SmallYpos[i]+hscrll;
 }
 else{
 si[i].style.pixelLeft=SmallXpos[i];
 si[i].style.pixelTop=SmallYpos[i]+hscrll;
 }
}
setTimeout('fly()',10);
}
//-->
</script>
<!-- Kaynak = www.scriptci.bloggum.com -->

uzay arkaplan html kodu

<!-- Kaynak = www.scriptci.bloggum.com -->
<body bgcolor="#000000">
<div style="position:relative">
<script language="JavaScript">
Nstars=15;
Y=new Array();
X=new Array();
Sstars=new Array();
Dstars=new Array();
Brwsr=(document.layers)?1:0;
iH=(document.layers)?window.innerHeight:window.document.body.clientHeight;
iW=(document.layers)?window.innerWidth:window.document.body.clientWidth;
offvis=(document.layers)?'hide':'hidden';
onvis=(document.layers)?'show':'visible';
for (i=0; i < Nstars;i++)
 {                                                               
 Y[i]=iH/2;
 X[i]=iW/2;
 Dstars[i]=Math.round(Math.random()*360);
 Sstars[i]=Math.round(Math.random()*5+2);
 }
if (Brwsr){
for (i=0; i < Nstars;i++)
document.write("<LAYER NAME='nstar"+i+"' TOP=0 LEFT=0 BGCOLOR=#aaaaaa WIDTH=1 HEIGHT=1></LAYER>";
}
else{
document.write('<div id="Outer" style="position:absolute"><div style="position:relative">');
for (i=0; i < Nstars;i++)
{document.write('<div id="istar" style="position:absolute;width:1px;height:1px;background:#aaaaaa;font-size:1px"></div>')}
document.write('</div></div>');
}
function fly(){
H=(document.layers)?window.innerHeight:window.document.body.clientHeight;
W=(document.layers)?window.innerWidth:window.document.body.clientWidth;
hscrll=(document.layers)?window.pageYOffset:document.body.scrollTop;
wscrll=(document.layers)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Nstars;i++){
var layer=(document.layers)?document.layers["nstar"+i]:istar[i].style;  
Sstars[i]+=0.3;
Y[i]+=Math.round(Sstars[i]*Math.sin(Dstars[i]*Math.PI/180));
X[i]+=Math.round(Sstars[i]*Math.cos(Dstars[i]*Math.PI/180));
if ((Y[i] > H) || (Y[i] < 0 ) || (X[i] > W) || (X[i] < 0))
 {
 Y[i]=H/2;
 X[i]=W/2;
 Dstars[i]=Math.round(Math.random()*360);
 Sstars[i]=Math.round(Math.random()*5+2);
 }
layer.top=Y[i]+hscrll;
layer.left=X[i]+wscrll;
if ((X[i] < W/2-W/8) || (X[i] > W/2+W/8) || (Y[i] < H/2-H/8) || (Y[i] > H/2+H/8))
 {
 if (Brwsr) {layer.bgColor='cccccc';layer.clip.height=2;layer.clip.width=2}
 else {layer.background='cccccc';layer.height=2;layer.width=2;layer.fontSize=2}
 }
if ((X[i] < W/2-W/6) || (X[i] > W/2+W/6) || (Y[i] < H/2-H/6) || (Y[i] > H/2+H/6))
 {
 if (Brwsr) layer.bgColor='dddddd';
 else layer.background='dddddd';
 }
if ((X[i] < W/2-W/2.5) || (X[i] > W/2+W/2.5) || (Y[i] < H/2-H/2.5) || (Y[i] > H/2+H/2.5))
 {
 if (Brwsr){layer.bgColor='ffffff';layer.clip.height=3;layer.clip.width=3}
 else {layer.background='ffffff';layer.height=3;layer.width=3;layer.fontSize=3}
 }
if ((X[i] < (W/2)-10 ) || (X[i] > W-(W/2)+10 ) || (Y[i] < (H/2)-10) || (Y[i] > H-(H/2)+10))
layer.visibility=onvis;
else{
layer.visibility=offvis;
if (Brwsr){layer.bgColor='aaaaaa';layer.clip.height=1;layer.clip.width=1}
else {layer.background='aaaaaa';layer.height=1;layer.width=1;layer.fontSize=1}
}
}
setTimeout('fly()',10);
}
window.onload=fly;

</script></div>
<!-- Kaynak = www.scriptci.bloggum.com -->

Uçan Harfler Kodu

<!-- Kaynak = www.scriptci.bloggum.com -->
<body bgcolor="#000066">
<script language="JavaScript">
if (document.all){

yourLogo='etQ?*Wzwin!+€©ldr®@ hoxc$&7';
logoFont='Arial';
logoColor='115585';


yourLogo=yourLogo.split('');
L=yourLogo.length;
H=0;
W=0;
R=0;
E=0;
MY=0;
MX=0;
Wd=0;
Hd=0;
F=new Array();
Y=new Array();
X=new Array();
S=new Array();
A=new Array();
B=new Array();

document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < L; i++)
document.write('<div id="ie" style="position:absolute;top:0;left:0;width:10px;height:10px;'
+'font-family:'+logoFont+';font-size:50px;color:'+logoColor+'">'+yourLogo[i]+'</div>');
document.write('</div></div>');

function Set(){
for (i=0; i < L; i++){
H=window.document.body.offsetHeight;
W=window.document.body.offsetWidth;
A[i]=Math.round(Math.random()*H);
B[i]=Math.round(Math.random()*W);
S[i]=Math.random()*0.07+0.05;
R=Math.round(Math.random()*3);
E=Math.round(Math.random()*2500+50)
if (R == 3) B[i]=-E;
if (R == 2) B[i]=W+E;
if (R == 1) A[i]=-E;
if (R == 0) A[i]=H;
F[i]=W/10;
}
}
Set();

function Assign(){
outer.style.top=document.body.scrollTop;
for (i=0; i < L; i++){
F[i]-=S[i]*55;
if (F[i] < 2) F[i]=1;
ie[i].style.top =Y[i];
ie[i].style.left=X[i];
ie[i].style.fontSize=F[i];
}
}
function fly(){
MY=window.document.body.clientHeight/2;
MX=window.document.body.clientWidth/2;
Wd=Math.round(Math.random()*40+5);
Hd=Math.round(Math.random()*30+5);
for (i=0; i < L; i++)
{
Y[i]=A[i]+=(MY-A[i])*(S[i]);             
X[i]=B[i]+=(MX-B[i])*(S[i]); 
if ((X[i] > MX-Wd) && (X[i] < MX+Wd) && (Y[i] > MY-Hd) && (Y[i] < MY+Hd)){
 H=window.document.body.offsetHeight;
 W=window.document.body.offsetWidth;
 A[i]=Math.round(Math.random()*H);
 B[i]=Math.round(Math.random()*W);
 S[i]=Math.random()*0.05+0.05;
 R=Math.round(Math.random()*3);
 E=Math.round(Math.random()*50+50)
 if (R == 3) B[i]=-E;
 if (R == 2) B[i]=W+E;
 if (R == 1) A[i]=-E;
 if (R == 0) A[i]=H+E;
}
if ((X[i] < 0) || (X[i] > W) || (Y[i] < 0) || (Y[i] > H))
F[i]=W/10;
}
Assign();
setTimeout('fly()',20);
}
window.onload=fly;
}
</script>
<!-- Kaynak = www.scriptci.bloggum.com -->

siyah arkaplan ve havayi fişek

<!-- Kaynak = www.scriptci.bloggum.com -->
<body bgcolor="#000000">
<script language="JavaScript">
<!-- 
CL=new Array('#ff0000','#00ff00','#ffffff','#ff00ff','#ffa500','#ffff00','#00ff00','#ffffff','#ff00ff')
CL2=new Array('#ffa500','#00ff00','#FFAAFF','#fff000','#fffffF')
Xpos=130;
Ypos=130;
I='#00ff00';
C=0;
S=5;
H=null;
W=null;
Y=null;
NS4=(document.layers);
NS6=(document.getElementById&&!document.all);
IE4=(document.all);
A=14;
E=120;
L=null;
if (NS4){
for (i=0; i < A; i++)
document.write('<LAYER NAME="nsstars'+i+'" TOP=0 LEFT=0 BGCOLOR='+I+' CLIP="0,0,2,2"></LAYER>');
}
if (NS6){
window.document.body.style.overflow='hidden';
for (i=0; i < A; i++)
document.write('<div id="ns6stars'+i+'" style="position:absolute;top:0px;left:0px;height:2px;width:2px;font-size:2px;background:'+I+'"></div>');
}
if (IE4){
document.write('<div id="ie" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < A; i++)
document.write('<div id="iestars" style="position:absolute;top:0;left:0;width:2px;height:2px;background:'+I+';font-size:2px"></div>');
document.write('</div></div>');
}
function Fireworks(){
H=(NS4||NS6)?window.innerHeight:window.document.body.clientHeight;
W=(NS4||NS6)?window.innerWidth:window.document.body.clientWidth;
Y=(NS4||NS6)?window.pageYOffset:window.document.body.scrollTop;
for (i=0; i < A; i++){
if (IE4)L=iestars[i].style;
if (NS4)L=document.layers["nsstars"+i];
if (NS6)L=document.getElementById("ns6stars"+i).style;
var F=Math.floor(Math.random()*CL.length);
var RS=Math.round(Math.random()*2);
L.top = Ypos + E*Math.sin((C+i*5)/3)*Math.sin(C/100)
L.left= Xpos + E*Math.cos((C+i*5)/3)*Math.sin(C/100)
if (C < 110){
 if (NS4){L.bgColor=I;L.clip.width=1;L.clip.height=1}
 if (IE4||document.getElementById)
 {L.background=I;L.width=1;L.height=1;L.fontSize=1}
 }
else{
 if (NS4){L.bgColor=CL[F];L.clip.width=RS;L.clip.height=RS}
 if (IE4||document.getElementById){L.background=CL[F];L.width=RS;L.height=RS;L.fontSize=RS}
 }
}
if (C > 220){
 C=0;
 var NC=Math.floor(Math.random()*CL2.length);
 I=CL2[NC];
 E=Math.round(100+Math.random()*50);
 Ypos = E+Math.round(Math.random()*(H-(E*2.2)))+Y;
 Xpos = E+Math.round(Math.random()*(W-(E*2.2)));
}
C+=S;
setTimeout("Fireworks()",10);
}
Fireworks();
// -->
</script>
<!-- Kaynak = www.scriptci.bloggum.com -->

sayfayı her yenilendiğinde arkaplan değişsin

<!-- Kaynak = www.scriptci.bloggum.com -->
<script>
/*Random background color- by javascriptkit.com*/
//Enter list of bgcolors: / arkaplan renklerini buradan değiştireceksiniz
var bgcolorlist=new Array("#DFDFFF", "#FFFFBF", "#80FF80", "#EAEAFF", "#C9FFA8", "#F7F7F7", "#FFFFFF", "#DDDD00"
document.bgColor=bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)]
</script>
<!-- Kaynak = www.scriptci.bloggum.com -->

sitene değişik kar yağdır

<!-- Kaynak = www.scriptci.bloggum.com -->
<body bgcolor=#000000 onLoad="snow()">
<script language="JavaScript">
N = 40;
Y = new Array();
X = new Array();
S = new Array();
A = new Array();
B = new Array();
M = new Array();
V = (document.layers)?1:0;

iH=(document.layers)?window.innerHeight:window.document.body.clientHeight;
iW=(document.layers)?window.innerWidth:window.document.body.clientWidth;
for (i=0; i < N; i++){                                                               
 Y[i]=Math.round(Math.random()*iH);
 X[i]=Math.round(Math.random()*iW);
 S[i]=Math.round(Math.random()*5+2);
 A[i]=0;
 B[i]=Math.random()*0.1+0.1;
 M[i]=Math.round(Math.random()*1+1);
}
if (V){
for (i = 0; i < N; i++)
{document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFF0' CLIP='0,0,"+M[i]+","+M[i]+"'></LAYER>"}
}
else{
document.write('<div style="position:absolute;top:0px;left:0px">');
document.write('<div style="position:relative">');
for (i = 0; i < N; i++)
{document.write('<div id="si" style="position:absolute;top:0;left:0;width:'+M[i]+';height:'+M[i]+';background:#fffff0;font-size:'+M[i]+'"></div>')}
document.write('</div></div>');
}
function snow(){
var H=(document.layers)?window.innerHeight:window.document.body.clientHeight;
var W=(document.layers)?window.innerWidth:window.document.body.clientWidth;
var T=(document.layers)?window.pageYOffset:document.body.scrollTop;
var L=(document.layers)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < N; i++){
sy=S[i]*Math.sin(90*Math.PI/180);
sx=S[i]*Math.cos(A[i]);
Y[i]+=sy;
X[i]+=sx;
if (Y[i] > H){
Y[i]=-10;
X[i]=Math.round(Math.random()*W);
M[i]=Math.round(Math.random()*1+1);
S[i]=Math.round(Math.random()*5+2);
}
if (V){document.layers['sn'+i].left=X[i];document.layers['sn'+i].top=Y[i]+T}
else{si[i].style.pixelLeft=X[i];si[i].style.pixelTop=Y[i]+T}
A[i]+=B[i];
}
setTimeout('snow()',10);
}
</script>
<!-- Kaynak = www.scriptci.bloggum.com -->

Beyendiğiniz Html Kodlarını Burada Deneyebilirsiniz


  

Xat - Chat - Sohbet - Arkadaş Bulma

chat sohbet

Müzik Dinle

WEB SİTE YÖNETİCİSİ

BURAK ÖNER

(мєкαηѕιz)

Copyright © 2007-2008 Burak Ôner

Osmaniye/Düziçi

Düziçi Düziçili Düziçinden

Mekansız Burak Öner

www.devrandeniz.net

Web Sitesi Tarafından Tasarlanmıştır