Forum'da ara:
Ara


Yazar Mesaj
Mesaj27.11.2011, 19:44 (UTC)    
Mesaj konusu: JavaScript kod paylaşımları sadece buraya..!

Javascript Kod Paylaşımlarını Bu Başlık Altında Paylaşabilirsiniz..
Bu başlığı kullanmayan kullanıcılar cezalandırılır. Ve açılan başlıklar kilitlenir.



Not :
Arrow Kod Paylaşımı Yaparken Code Butonuna Basmayı Unutmayınız..
Arrow Paylaşılan kodu bir daha Paylaşmamaya Dikkat ediniz..


Eski Javascript Paylaşımlarını görmek için ;
Arrow http://www.bedava-sitem.com/forum/viewtopic.php?t=25700&sid=caa3fbaa24da27f6030b276033d91071

http://www.bedava-sitem.com/forum/viewtopic.php?t=159066
______________
Dalga geçerim ama kırmam. Ciddiye alırım ama takmam. Çevremde birçok arkadaşım olabilir ama hepsini dostum yapmam, Biz ışıklı cɑddelerin züppe çocuklɑrı değil! Biz ıssız sokɑklɑrın delikɑnlı yürekleriyiz!!! CW
Mesaj28.11.2011, 20:58 (UTC)    
Mesaj konusu:

Kod:
<html>
 
<body>
 
<script type="text/javascript">
 
/***********************************************
* Fading Scroller- © 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 delay = 2000; //set delay between message change (in miliseconds)
var maxsteps=30; // number of steps to take to change from start color to endcolor
var stepdelay=40; // time in miliseconds of a single step
//**Note: maxsteps*stepdelay will be total time in miliseconds of fading effect
var startcolor= new Array(255,255,255); // start color (red, green, blue)
var endcolor=new Array(0,0,0); // end color (red, green, blue)
 
var fcontent=new Array();
begintag='<div style="font: normal 14px Arial; padding: 5px;">'; //set opening tag, such as font declarations
fcontent[0]="Yazı 1"
fcontent[1]="Yazı 2"
fcontent[2]="Yazı 3"
fcontent[3]="Yazı 4"
fcontent[5]="Yazı 6"
fcontent[6]="Yazı 7"
fcontent[8]="Yazı 9"
fcontent[9]="Yazı 10"
closetag='</div>';
 
var fwidth='150px'; //set scroller width
var fheight='150px'; //set scroller height
 
var fadelinks=1; //should links inside scroller content also fade like text? 0 for no, 1 for yes.
 
///No need to edit below this line/////////////////
 
 
var ie4=document.all&&!document.getElementById;
var DOM2=document.getElementById;
var faderdelay=0;
var index=0;
 
 
/*Rafael Raposo edited function*/
//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color="rgb("+startcolor[0]+", "+startcolor[1]+", "+startcolor[2]+")"
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
if (fadelinks)
linkcolorchange(1);
colorfade(1, 15);
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag;
index++
}
 
// colorfade() partially by Marcio Galli for Netscape Communications. ////////////
// Modified by Dynamicdrive.com
 
function linkcolorchange(step){
var obj=document.getElementById("fscroller").getElementsByTagName("A");
if (obj.length>0){
for (i=0;i<obj.length;i++)
obj[i].style.color=getstepcolor(step);
}
}
 
/*Rafael Raposo edited function*/
var fadecounter;
function colorfade(step) {
if(step<=maxsteps) {
document.getElementById("fscroller").style.color=getstepcolor(step);
if (fadelinks)
linkcolorchange(step);
step++;
fadecounter=setTimeout("colorfade("+step+")",stepdelay);
}else{
clearTimeout(fadecounter);
document.getElementById("fscroller").style.color="rgb("+endcolor[0]+", "+endcolor[1]+", "+endcolor[2]+")";
setTimeout("changecontent()", delay);
 
}
}
 
/*Rafael Raposo's new function*/
function getstepcolor(step) {
var diff
var newcolor=new Array(3);
for(var i=0;i<3;i++) {
diff = (startcolor[i]-endcolor[i]);
if(diff > 0) {
newcolor[i] = startcolor[i]-(Math.round((diff/maxsteps))*step);
} else {
newcolor[i] = startcolor[i]+(Math.round((Math.abs(diff)/maxsteps))*step);
}
}
return ("rgb(" + newcolor[0] + ", " + newcolor[1] + ", " + newcolor[2] + ")");
}
 
if (ie4||DOM2)
document.write('<div id="fscroller" style="border:1px solid black;width:'+fwidth+';height:'+fheight+'"></div>');
 
if (window.addEventListener)
window.addEventListener("load", changecontent, false)
else if (window.attachEvent)
window.attachEvent("onload", changecontent)
else if (document.getElementById)
window.onload=changecontent
 
</script>
 
</body>

______________
Mesaj29.11.2011, 22:43 (UTC)    
Mesaj konusu:

:: "The Matrix" Text effect
Kod:
<style type="text/css">
.matrix { font-family:Lucida Console, Courier, Monotype; font-size:10pt; text-align:center; width:10px; padding:0px; margin:0px;}
</style>

<script type="text/javascript" language="JavaScript">

<!--
var rows=11; // must be an odd number
var speed=50; // lower is faster
var reveal=2; // between 0 and 2 only. The higher, the faster the word appears
var effectalign="default" //enter "center" to center it.

/***********************************************
* The Matrix Text Effect- by Richard Womersley (http://www.mf2fm.co.uk/rv)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

var w3c=document.getElementById && !window.opera;;
var ie45=document.all && !window.opera;
var ma_tab, matemp, ma_bod, ma_row, x, y, columns, ma_txt, ma_cho;
var m_coch=new Array();
var m_copo=new Array();
window.onload=function() {
   if (!w3c && !ie45) return
  var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"];
  ma_txt=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML;
  ma_txt=" "+ma_txt+" ";
  columns=ma_txt.length;
  if (w3c) {
    while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]);
    ma_tab=document.createElement("table");
    ma_tab.setAttribute("border", 0);
    ma_tab.setAttribute("align", effectalign);
    ma_tab.style.backgroundColor="#000000";
    ma_bod=document.createElement("tbody");
    for (x=0; x<rows; x++) {
      ma_row=document.createElement("tr");
      for (y=0; y<columns; y++) {
        matemp=document.createElement("td");
        matemp.setAttribute("id", "Mx"+x+"y"+y);
        matemp.className="matrix";
        matemp.appendChild(document.createTextNode(String.fromCharCode(160)));
        ma_row.appendChild(matemp);
      }
      ma_bod.appendChild(ma_row);
    }
    ma_tab.appendChild(ma_bod);
    matrix.appendChild(ma_tab);
  } else {
    ma_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">';
    for (var x=0; x<rows; x++) {
      ma_tab+='<t'+'r>';
      for (var y=0; y<columns; y++) {
        ma_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'">&nbsp;</'+'td>';
      }
      ma_tab+='</'+'tr>';
    }
    ma_tab+='</'+'table>';
    matrix.innerHTML=ma_tab;
  }
  ma_cho=ma_txt;
  for (x=0; x<columns; x++) {
    ma_cho+=String.fromCharCode(32+Math.floor(Math.random()*94));
    m_copo[x]=0;
  }
  ma_bod=setInterval("mytricks()", speed);
}

function mytricks() {
  x=0;
  for (y=0; y<columns; y++) {
    x=x+(m_copo[y]==100);
    ma_row=m_copo[y]%100;
    if (ma_row && m_copo[y]<100) {
      if (ma_row<rows+1) {
        if (w3c) {
          matemp=document.getElementById("Mx"+(ma_row-1)+"y"+y);
          matemp.firstChild.nodeValue=m_coch[y];
        }
        else {
          matemp=document.all["Mx"+(ma_row-1)+"y"+y];
          matemp.innerHTML=m_coch[y];
        }
        matemp.style.color="#33ff66";
        matemp.style.fontWeight="bold";
      }
      if (ma_row>1 && ma_row<rows+2) {
        matemp=(w3c)?document.getElementById("Mx"+(ma_row-2)+"y"+y):document.all["Mx"+(ma_row-2)+"y"+y];
        matemp.style.fontWeight="normal";
        matemp.style.color="#00ff00";
      }
      if (ma_row>2) {
          matemp=(w3c)?document.getElementById("Mx"+(ma_row-3)+"y"+y):document.all["Mx"+(ma_row-3)+"y"+y];
        matemp.style.color="#009900";
      }
      if (ma_row<Math.floor(rows/2)+1) m_copo[y]++;
      else if (ma_row==Math.floor(rows/2)+1 && m_coch[y]==ma_txt.charAt(y)) zoomer(y);
      else if (ma_row<rows+2) m_copo[y]++;
      else if (m_copo[y]<100) m_copo[y]=0;
    }
    else if (Math.random()>0.9 && m_copo[y]<100) {
      m_coch[y]=ma_cho.charAt(Math.floor(Math.random()*ma_cho.length));
      m_copo[y]++;
    }
  }
  if (x==columns) clearInterval(ma_bod);
}

function zoomer(ycol) {
  var mtmp, mtem, ytmp;
  if (m_copo[ycol]==Math.floor(rows/2)+1) {
    for (ytmp=0; ytmp<rows; ytmp++) {
      if (w3c) {
        mtmp=document.getElementById("Mx"+ytmp+"y"+ycol);
        mtmp.firstChild.nodeValue=m_coch[ycol];
      }
      else {
        mtmp=document.all["Mx"+ytmp+"y"+ycol];
        mtmp.innerHTML=m_coch[ycol];
      }
      mtmp.style.color="#33ff66";
      mtmp.style.fontWeight="bold";
    }
    if (Math.random()<reveal) {
      mtmp=ma_cho.indexOf(ma_txt.charAt(ycol));
      ma_cho=ma_cho.substring(0, mtmp)+ma_cho.substring(mtmp+1, ma_cho.length);
    }
    if (Math.random()<reveal-1) ma_cho=ma_cho.substring(0, ma_cho.length-1);
    m_copo[ycol]+=199;
    setTimeout("zoomer("+ycol+")", speed);
  }
  else if (m_copo[ycol]>200) {
    if (w3c) {
      mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol);
      mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol);
    }
    else {
      mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol];
      mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol];
    }
    mtmp.style.fontWeight="normal";
    mtem.style.fontWeight="normal";
    setTimeout("zoomer("+ycol+")", speed);
  }
  else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2);
  if (m_copo[ycol]>100 && m_copo[ycol]<200) {
    if (w3c) {
      mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol);
      mtmp.firstChild.nodeValue=String.fromCharCode(160);
      mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol);
      mtem.firstChild.nodeValue=String.fromCharCode(160);
    }
    else {
      mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol];
      mtmp.innerHTML=String.fromCharCode(160);
      mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol];
      mtem.innerHTML=String.fromCharCode(160);
    }
    setTimeout("zoomer("+ycol+")", speed);
  }
}
// -->
</script><div id="matrix">Buraya Yazınız </div>

______________
Mesaj29.11.2011, 22:51 (UTC)    
Mesaj konusu:

:: Dropping Text Script
Kod:
<body onload="dynAnimation8()"><script LANGUAGE="JavaScript" FPTYPE="dynamicanimation8">
<!--
 
  dynamicanimAttr = "dynamicanimation8"
  animateElements = new Array()
  currentElement = 0
  speed = 0
  stepsZoom = 8
  stepsWord = 8
  stepsFly = 12
  stepsSpiral = 16
  steps = stepsZoom
  step = 0
  outString = ""
  function dynAnimation8()
  {
    var ms = navigator.appVersion.indexOf("MSIE")
    ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+6)) >= 4)
    if(!ie4)
    {
      if((navigator.appName == "Netscape") &&
         (parseInt(navigator.appVersion.substring(0, 1)) >= 4))
      {
        for (index=document.layers.length-1; index >= 0; index--)
        {
            layer=document.layers[index]
            if (layer.left==10000)
                layer.left=0
        }
      }
      return
    }
    for (index=document.all.length-1; index >= document.body.sourceIndex; index--)
    {
      el = document.all[index]
      animation = el.getAttribute(dynamicanimAttr, false)
      if(null != animation)
      {
        if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
        {
          ih = el.innerHTML
          outString = ""
          i1 = 0
          iend = ih.length
          while(true)
          {
            i2 = startWord(ih, i1)
            if(i2 == -1)
              i2 = iend
            outWord(ih, i1, i2, false, "")
            if(i2 == iend)
              break
            i1 = i2
            i2 = endWord(ih, i1)
            if(i2 == -1)
              i2 = iend
            outWord(ih, i1, i2, true, animation)
            if(i2 == iend)
              break
            i1 = i2
          }
          document.all[index].innerHTML = outString
          document.all[index].style.posLeft = 0
          document.all[index].setAttribute(dynamicanimAttr, null)
        }
        if(animation == "zoomIn" || animation == "zoomOut")
        {
          ih = el.innerHTML
          outString = "<SPAN " + dynamicanimAttr + "=\"" + animation + "\" style=\"position: relative; left: 10000;\">"
          outString += ih
          outString += "</SPAN>"
          document.all[index].innerHTML = outString
          document.all[index].style.posLeft = 0
          document.all[index].setAttribute(dynamicanimAttr, null)
        }
      }
    }
    i = 0
    for (index=document.body.sourceIndex; index < document.all.length; index++)
    {
      el = document.all[index]
      animation = el.getAttribute(dynamicanimAttr, false)
      if (null != animation)
      {
        if(animation == "flyLeft")
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = 0
        }
        else if(animation == "flyRight")
        {
          el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
          el.style.posTop = 0
        }
        else if(animation == "flyTop" || animation == "dropWord")
        {
          el.style.posLeft = 0
          el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
        }
        else if(animation == "flyBottom")
        {
          el.style.posLeft = 0
          el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
        }
        else if(animation == "flyTopLeft")
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
        }
        else if(animation == "flyTopRight" || animation == "flyTopRightWord")
        {
          el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
        }
        else if(animation == "flyBottomLeft")
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
        }
        else if(animation == "flyBottomRight" || animation == "flyBottomRightWord")
        {
          el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
        }
        else if(animation == "spiral")
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
        }
        else if(animation == "zoomIn")
        {
          el.style.posLeft = 10000
          el.style.posTop = 0
        }
        else if(animation == "zoomOut")
        {
          el.style.posLeft = 10000
          el.style.posTop = 0
        }
        else
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = 0
        }
        el.initLeft = el.style.posLeft
        el.initTop = el.style.posTop
        animateElements[i++] = el
      }
    }
    window.setTimeout("animate();", speed)
  }
  function offsetLeft(el)
  {
    x = el.offsetLeft
    for (e = el.offsetParent; e; e = e.offsetParent)
      x += e.offsetLeft;
    return x
  }
  function offsetTop(el)
  {
    y = el.offsetTop
    for (e = el.offsetParent; e; e = e.offsetParent)
      y += e.offsetTop;
    return y
  }
  function startWord(ih, i)
  {
    for(tag = false; i < ih.length; i++)
    {
      c = ih.charAt(i)
      if(c == '<')
        tag = true
      if(!tag)
        return i
      if(c == '>')
        tag = false
    }
    return -1
  }
  function endWord(ih, i)
  {
    nonSpace = false
    space = false
    while(i < ih.length)
    {
      c = ih.charAt(i)
      if(c != ' ')
        nonSpace = true
      if(nonSpace && c == ' ')
        space = true
      if(c == '<')
        return i
      if(space && c != ' ')
        return i
      i++
    }
    return -1
  }
  function outWord(ih, i1, i2, dyn, anim)
  {
    if(dyn)
      outString += "<SPAN " + dynamicanimAttr + "=\"" + anim + "\" style=\"position: relative; left: 10000;\">"
    outString += ih.substring(i1, i2)
    if(dyn)
      outString += "</SPAN>"
  }
  function animate()
  {
    el = animateElements[currentElement]
    animation = el.getAttribute(dynamicanimAttr, false)
    step++
    if(animation == "spiral")
    {
      steps = stepsSpiral
      v = step/steps
      rf = 1.0 - v
      t = v * 2.0*Math.PI
      rx = Math.max(Math.abs(el.initLeft), 200)
      ry = Math.max(Math.abs(el.initTop),  200)
      el.style.posLeft = Math.ceil(-rf*Math.cos(t)*rx)
      el.style.posTop  = Math.ceil(-rf*Math.sin(t)*ry)
    }
    else if(animation == "zoomIn")
    {
      steps = stepsZoom
      el.style.fontSize = Math.ceil(50+50*step/steps) + "%"
      el.style.posLeft = 0
    }
    else if(animation == "zoomOut")
    {
      steps = stepsZoom
      el.style.fontSize = Math.ceil(100+200*(steps-step)/steps) + "%"
      el.style.posLeft = 0
    }
    else
    {
      steps = stepsFly
      if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
        steps = stepsWord
      dl = el.initLeft / steps
      dt = el.initTop  / steps
      el.style.posLeft = el.style.posLeft - dl
      el.style.posTop = el.style.posTop - dt
    }
    if (step >= steps)
    {
      el.style.posLeft = 0
      el.style.posTop = 0
      currentElement++
      step = 0
    }
    if(currentElement < animateElements.length)
      window.setTimeout("animate();", speed)
  }
//-->
</script><p dynamicanimation8="dropWord"
style="position: relative !important; left: 10000 !important"><big><big>Buraya Yazınız</big></big></p></body>

______________
Mesaj04.04.2012, 12:46 (UTC)    
Mesaj konusu: Nere Atacaz bu Kodları

Nere Atacaz bu Kodları
Mesaj03.08.2012, 16:47 (UTC)    
Mesaj konusu: Slider Manset

Slider Manset Paylasıyorum.



Kod:
<script type="text/javascript" src="http://img5.xooimage.com/files/d/e/5/jquery-2--f80ba5.js"></script><script type="text/javascript" src="http://img25.xooimage.com/files/c/d/0/easyslider1.5-11fb25a.js"></script><script type="text/javascript">
        $(document).ready(function(){   
            $("#slider").easySlider({
                controlsBefore:    '<p id="controls">',
                controlsAfter:    '</p>',
                auto: true,
                continuous: true
            });
            $("#slider2").easySlider({
                controlsBefore:    '<p id="controls2">',
                controlsAfter:    '</p>',       
                prevId: 'prevBtn2',
                nextId: 'nextBtn2'   
            });           
        });   
    </script><style type="text/css">                img{border:none;}            #container2{             margin:0 auto;          position:relative;          text-align:left;          width:640px;          background:#161710;                 margin-bottom:2em;          }                          #content2{          position:relative;          }              /* Easy Slider */       #slider{}         #slider ul, #slider li, #slider2 ul, #slider2 li{          margin:0;          padding:0;          list-style:none;          }      #slider li, #slider2 li{          /*              define width and height of list item (slide)              entire slider area will adjust according to the parameters provided here          */          width:650px;  1        overflow:hidden;          }          #slider2 li{          background:#000000;          }             #slider2 li h2{          margin:0 20px;          padding-top:20px;          }         #slider2 li p{          margin:20px;          }                                      p#controls, p#controls2{          margin:0;          position:relative;          }           #prevBtn, #nextBtn, #prevBtn2, #nextBtn2{          display:block;          margin:0;          overflow:hidden;          text-indent:-8000px;                 width:60px;          height:75px;          position:absolute;          left: 0px;          top:-160px;          }         #nextBtn, #nextBtn2{          left:580px;          }                                                             #prevBtn a, #nextBtn a, #prevBtn2 a, #nextBtn2 a{          display:block;          width:60px;          height:75px;            background:url('http://img.webme.com/pic/o/osmantalay/left_manset.png') no-repeat 0 0;             }         #nextBtn a, #nextBtn2 a{          background:url('http://img.webme.com/pic/o/osmantalay/right_manset.png') no-repeat 0 0;             }                                                  /* // Easy Slider */</style> <div id="container2"> <div id="content2"> <div id="slider"> <ul>     <li><a href="http://webnetlebi.tr.gg/Atam%26%23305%3Bz%26%23305%3Bn-El-Yaz%26%23305%3Bs%26%23305%3B-Font-Oldu--ar-.htm" _fcksavedurl="http://webnetlebi.tr.gg/Atam%26%23305%3Bz%26%23305%3Bn-El-Yaz%26%23305%3Bs%26%23305%3B-Font-Oldu--ar-.htm">      <img alt=" " src="http://img.webme.com/pic/w/webnetlebi/font.jpg" _fcksavedurl="http://img.webme.com/pic/w/webnetlebi/font.jpg" width="630" height="241" /></a></li>     <li><a href="http://webnetlebi.tr.gg/Bilgisayar-Bile%26%23351%3Benleri-Ve--Oe-zellikleri.htm" _fcksavedurl="http://webnetlebi.tr.gg/Bilgisayar-Bile%26%23351%3Benleri-Ve--Oe-zellikleri.htm">      <img src="http://img.webme.com/pic/w/webnetlebi/pcbilesen.jpg" _fcksavedurl="http://img.webme.com/pic/w/webnetlebi/pcbilesen.jpg" width="630" height="241" alt="" /></a></li>     <li><a href="http://webnetlebi.tr.gg/Gezgin-Forum/index.htm" _fcksavedurl="http://webnetlebi.tr.gg/Gezgin-Forum/index.htm">      <img alt="Css Template Preview" src="http://img.webme.com/pic/w/webnetlebi/forum.jpg" _fcksavedurl="http://img.webme.com/pic/w/webnetlebi/forum.jpg" width="630" height="241" /></a></li>     <li><a href="http://webnetlebi.tr.gg/Fenerbah%E7e12-Tarih%E7e.htm" _fcksavedurl="http://webnetlebi.tr.gg/Fenerbah%E7e12-Tarih%E7e.htm">      <img alt="Css Template Preview" src="http://img.webme.com/pic/w/webnetlebi/kadro.jpg" _fcksavedurl="http://img.webme.com/pic/w/webnetlebi/kadro.jpg" width="630" height="241" /></a></li>     <li><a href="http://webnetlebi.tr.gg/Android.htm" _fcksavedurl="http://webnetlebi.tr.gg/Android.htm">      <img src="http://img.webme.com/pic/w/webnetlebi/android.jpg" _fcksavedurl="http://img.webme.com/pic/w/webnetlebi/android.jpg" width="630" height="241" alt="" /></a></li> </ul> </div> </div> </div>


Alıntıdır.

Konu düzenlenmiştir.. Önizleme ve kodları paylaşmadan sitenize yönlendirme yapamazsınız.. @grafikdizayn


En son webnetlebi tarafından 03.08.2012 16:55:10 tarihinde değiştirildi, toplam 1 kere değiştirildi
Mesaj03.08.2012, 16:48 (UTC)    
Mesaj konusu: Herkezin Aradığı Çok Fonksiyonlu Duyuru-MertKoseoglu

Duyuru Bana Ait Değildir.

Arşivimden Bulduğum Kodlardır.



Kod:
<!-- WEBNETLEBİ.TR.GG --> <center><style type="text/css"> body {    margin-left: 0px;    margin-top: 0px;    margin-right: 0px;    margin-bottom: 0px;     } .style1 {color: #990000}  .siyonist {    color: #FFFFFF;    font-family: Verdana, Arial, Helvetica, sans-serif;    font-weight: bold;    font-size: 14px;       text-decoration : none;    } .siyonist A:link    { color:#FFFFFF; text-decoration : none; font-weight : bold;} .siyonist A:visited { color:#FFFFFF; text-decoration : none; font-weight : bold;} .siyonist A:active  { color:#FFFFFF; text-decoration : none; font-weight : bold;} .siyonist A:hover   { color:#FF0000; text-decoration : none; font-weight : bold;}  .tarihsaat1 {    font-family: arial;    font-size: 9px;    font-weight : bold;    text-decoration : none;    padding-top: 0px;    color: #444444;    text-align: left;    border-top-width: 0px;    border-right-width: 0px;    border-bottom-width: 0px;    border-left-width: 0px; }  .kaynaklink {    font-family: arial;    font-size: 10px;    font-weight : bold;    text-decoration : none;    padding-top: 0px;    color: #444444;    text-align: left;    border-top-width: 0px;    border-right-width: 0px;    border-bottom-width: 0px;    border-left-width: 0px; } .kaynaklink A:link    { color:#444444; text-decoration : none; font-weight : bold;} .kaynaklink A:visited { color:#444444; text-decoration : none; font-weight : bold;} .kaynaklink A:active  { color:#444444; text-decoration : none; font-weight : bold;} .kaynaklink A:hover   { color:#444444; text-decoration : none; font-weight : bold;}  .vitrintablo{    filter:alpha(opacity:75); }  .Link1 {    font-family: arial;     font-size: 13px;    color: #000033;    font-weight : normal;    text-decoration : none;    } .Link1 A:link    {    color:#990000;    text-decoration : none;    font-weight : bold; } .Link1 A:visited { color:#000033; text-decoration : none; font-weight : bold;} .Link1 A:active  { color:#000033; text-decoration : none; font-weight : bold;} .Link1 A:hover   {    color: #990000;    text-decoration : underline;    font-weight : bold; }  .Link2 {    font-family: arial;     font-size: 12px;    color: #000000;    font-weight : bold;    text-decoration : none;    line-height : normal;    } .Link2 A:link    { color:#000000; text-decoration : none; font-weight : normal;} .Link2 A:visited { color:#000000; text-decoration : none; font-weight : normal;} .Link2 A:active  { color:#000000; text-decoration : none; font-weight : normal;} .Link2 A:hover   { color:#FF0000; text-decoration : none; font-weight : normal;}  .centerhaberyazi {    font-family: arial;    font-size: 12px;    font-weight: normal;    color: #444444;    text-decoration : none; } .centerhaberyazi A:link    { color:#444444; text-decoration : none; font-weight : normal;} .centerhaberyazi A:visited { color:#444444; text-decoration : none; font-weight : normal;} .centerhaberyazi A:active  { color:#444444; text-decoration : none; font-weight : normal;} .centerhaberyazi A:hover   { color:#444444; text-decoration : underline; font-weight : normal;} .haberbaslikdiger {    font-family: arial;    font-size: 18px;    font-weight: normal;    color: #002222;    line-height: normal;    padding-bottom: 2px;       text-decoration : none; } .haberbaslikdiger A:link    { color:#002222; text-decoration : none; font-weight : normal;} .haberbaslikdiger A:visited { color:#002222; text-decoration : none; font-weight : normal;} .haberbaslikdiger A:active  { color:#002222; text-decoration : none; font-weight : normal;} .haberbaslikdiger A:hover   { color:#002222; text-decoration : underline; font-weight : normal;}    .menuhead1 {    font-family: arial;    font-size: 12px;    font-weight: bold;    color: #000000;    line-height: 20px;    padding-left: 1px;    text-decoration : none; }   </style> <script language="javascript">
   function kayanhaberYon(kyon) {
      document.getElementById('mqkayanhaber').direction=kyon;
      document.getElementById('mqkayanhaber').start();
   }
   
   function kayanhaberSP() {
      document.getElementById('mqkayanhaber').stop();
   }
   
   function siteneEkle() {
      href="siteneekle.php";
   }
</script>      <script language="javascript">
   function kayanhaberYon(kyon) {
      document.getElementById('mqkayanhaber').direction=kyon;
      document.getElementById('mqkayanhaber').start();
   }
   
   function kayanhaberSP() {
      document.getElementById('mqkayanhaber').stop();
   }
   
   function siteneEkle() {
      href="siteneekle.html";
   }
</script>       <!-- WEBNETLEBİ.TR.GG --> <table width="100%" border="0" cellspacing="0" cellpadding="0">     <tbody>         <tr>             <td width="110"><img alt="" width="110" border="0" src="http://img.webme.com/pic/c/catlak-site55/sol000.gif" _fcksavedurl="http://img.webme.com/pic/c/catlak-site55/sol000.gif" /></td>             <td background="http://img.webme.com/pic/f/fbml-kodcusu/orta0.png" class="menuhead1">             <div align="left"><marquee id="mqkayanhaber" direction="left" width="100%" scrollamount="4" scrolldelay="75" onmouseover_fckprotectedatt="%20onmouseover%3D%22stop()%22" onmouseout_fckprotectedatt="%20onmouseout%3D%22start()%22" name="mqkayanhaber">  <font color="red">MertKoseoglu</font> <font color="#000033">Sitemize Özel Anasayfa Sctripi Hazırlanıyor</font>   <font color="red">MertKoseoglu</font> <font color="#000033">Sitemizin Tasarımı Yenilenecektir Fakat Okullar Nedeni İle Çok Yoğumum</font>     </marquee></div>             </td>             <td width="19" height="28"><img width="71" border="0" usemap="#Map" alt="" src="http://img.webme.com/pic/f/fbml-kodcusu/sag0.png" _fcksavedurl="http://img.webme.com/pic/f/fbml-kodcusu/sag0.png" /></td>         </tr>     </tbody> </table> <map name="Map" id="Map"> <area shape="rect" coords="49,4,65,24" onclick_fckprotectedatt="%20onclick%3D%22kayanhaberYon('right')%3B%22" href="#xw" _fcksavedurl="#xw" /> <area shape="rect" coords="10,5,28,24" onclick_fckprotectedatt="%20onclick%3D%22kayanhaberYon('left')%3B%22" href="#xw" _fcksavedurl="#xw" /> <area shape="rect" coords="29,4,45,24" onclick_fckprotectedatt="%20onclick%3D%22kayanhaberSP()%3B%22" href="#xw" _fcksavedurl="#xw" /> <area shape="rect" coords="195,4,215,25" target="_blank" href="" _fcksavedurl="" /> <area shape="rect" coords="70,4,194,26" target="_blank" href="" _fcksavedurl="" /></map><!-- Webnetlebi.tr.gg --> <br /> </center>


Konu düzenlenmiştir.. Önizleme ve kodları paylaşmadan sitenize yönlendirme yapamazsınız.. @grafikdizayn


En son webnetlebi tarafından 03.08.2012 16:55:56 tarihinde değiştirildi, toplam 1 kere değiştirildi
Mesaj03.08.2012, 17:26 (UTC)    
Mesaj konusu:

konu düzenlemesi için tesekkür ederim birdaha yönlerdirme yapmam
Mesaj13.09.2012, 09:33 (UTC)    
Mesaj konusu: s

Açılır Üst Araç Çubuğu (Toolbar) Kodu [code]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
#ustaraccubugu {
width: 100%;
position: fixed;
z-index: 1;
left: 0px;
top: 0px;
right: 0px;
}
-->
</style>
</head>

<body>
<div id="ustaraccubugu"><link rel="stylesheet" type="text/css" href="http://users11.jabry.com/ysferensoy/droppanel.css" /> <script type="text/javascript" src="http://users11.jabry.com/ysferensoy/droppanel.js">

</script>
<div id="mypanel" class="ddpanel">
<div id="mypanelcontent" class="ddpanelcontent">
<p style="padding:10px"><img src="http://i36.tinypic.com/kak1t0.jpg" class="closepanel" style="float:left; width:200px; height:172px; margin:0 10px 10px 0" alt="" />Bu Kod KoDcuDost.Tr.Gg Tarafından Hazırlanmıştır.Kodu Tasarımın &Uuml;zerindeki Yazıya Ekleyin. Buraya Siteniz Hakkında Duyurular,Son Gelişmeler,İstediğiniz İ&ccedil;erikler veya Men&uuml;ler Ekleyebilirsiniz.</p>
</div>
<div id="mypaneltab" class="ddpaneltab"><a href="#"><span>Duyuru Ekranı</span></a></div>
</div><br /></div>
</body>
</html>[/quote]
Mesaj16.09.2012, 13:33 (UTC)    
Mesaj konusu: s

Kendi Hazırladığım ve Kullanışlı Bir Slideshow Kodu
Kod:

<link media="screen" href="http://users11.jabry.com/ysferensoy/slideshowww.css" type="text/css" rel="stylesheet" />     <style type="text/css">.slideshow a#vlb{display:none}</style>     <script type="text/javascript" src="http://users11.jabry.com/ysferensoy/mootoolsss.js"></script>     <script type="text/javascript" src="http://users11.jabry.com/ysferensoy/visualslideshowwww.js"></script>
<div class="slideshow" id="show">
<div class="slideshow-images"><a href="#"><img width="630" height="200" title="Başlık1" alt="Başlık1" src="http://www.paylasimerkezi.com/wp-content/uploads/2012/08/170_63_851_802-Heybetinden-Sigdiramadik-Yere-Gogre-Fenerbahce.jpg" id="slide-0" /></a> <a href="#"><img title="Başlık2" alt="Başlık2" src="http://img.webme.com/pic/k/kodcudost/k.jpg" id="slide-1" /></a> <a href="#"><img title="Başlık3" alt="Başlık3" src="http://img.webme.com/pic/k/kodcudost/mavi_tepeler.jpg" id="slide-2" /></a> <a href="#"><img title="Başlık4" alt="Başlık4" src="http://img.webme.com/pic/k/kodcudost/nilfer_iekleri.jpg" id="slide-3" /></a></div>
</div>
Mesaj18.09.2012, 12:43 (UTC)    
Mesaj konusu:

Slayt Gösterisi JavaScript Kodu

Kod:
<script type="text/javascript">
    <!--

    if (document.images)
    {
      preload_image_object = new Image();
      // set image url
      image_url = new Array();
      image_url[0] = "http://mydomain.com/image0.gif";
      image_url[1] = "http://mydomain.com/image1.gif";
      image_url[2] = "http://mydomain.com/image2.gif";
      image_url[3] = "http://mydomain.com/image3.gif";

       var i = 0;
       for(i=0; i<=3; i++)
         preload_image_object.src = image_url[i];
    }

    //-->
    </script>
Mesaj18.09.2012, 12:43 (UTC)    
Mesaj konusu:

Kar Yağdırma


Kod:
<script LANGUAGE="JavaScript1.2">
<!-- Bahtiyar KOÇ (Alıntıdır) -->
<!-- Web Site:  http://www.altan.hr/snow -->

<!-- Begin
var no = 25; // anlık kar adeti
var speed = 15; // küçük numaralar hızlı akış sağlar
var snowflake = "resimler/snow.gif";

var ns4up = (document.layers) ? 1 : 0;  // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp;    // coordinate and position variables
var am, stx, sty;  // amplitude and step variables
var i, doc_width = 800, doc_height = 600;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i) { 
dx[i] = 0;                        // set coordinate variables
xp[i] = Math.random()*(doc_width-50);  // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;         // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random();     // set step variables
if (ns4up) {                      // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
   }
} else if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
      }
   }
}
function snowNS() {  // Netscape main animation function
for (i = 0; i < no; ++ i) {  // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowIE() {  // IE main animation function
for (i = 0; i < no; ++ i) {  // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx[i] += stx[i];
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowIE()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up) {
snowIE();
}
// End -->
</script>
Mesaj18.09.2012, 12:45 (UTC)    
Mesaj konusu:

Resimlerinizi kopyalamaya karşı koruyan Kod;


Kod:
<html>
<head>
<title>Untitled Document</title>
<script language="javascript">
    function Goster(evt){
      if(evt.button){
          if(evt.button==2){
           alert("Uğraşma çalamazsın ;)");
         }
      }
   }
</script>
</head>

<img src="deniz.jpg" onMouseDown="Goster(event)">
</body>
</html>
Mesaj18.09.2012, 12:46 (UTC)    
Mesaj konusu:

Siten için degişen güzel sözler


Kod:
<p align="center"><script language="JavaScript1.1" type="text/javascript">

<!--

quotes = new Array(11);

quotes[0] = "Eline, diline, beline sahip ol ki, kötülükler senden uzak dursun.";

quotes[1] = "Musibet zekayı eğitir.";

quotes[2] = "Kişinin sözü, amelinden çok olursa aklı noksandır.";

quotes[3] = "Ne kadar okursan oku, bilgine yakışır şekilde davranmazsan cahilsin demektir.(Sadi)";

quotes[4] = "Tek dostum kitaplarım, tek düşmanım cahil dostlarım. (Diderot)";

quotes[5] = "Felaketler, ayak seslerini duymayanlara geliyorum demez.";

quotes[6] = "Harekette birlik olmazsa, fikirde bilgi faydasızdır. (Muhammed ikbal)";

quotes[7] = "Zalime, ancak, onu zulümden alıkoymak için yardım et.";

quotes[8] = "Yarın, yorgun kimselerin değil, rahatlarına kıyabilenlerindir. (N. Atac)";

quotes[9] = "Kuvvetine güvenenler, korkutma küçüklüğünde bulunmazlar. (Abdulhamid Han)";

quotes[10] = "Tarihte her hareket hep bir kişinin ayağa kalkmasıyla başlar.";

quotes[11] = "Kesilmis koyuna, derisini yüzülmesi elem vermez.";

quotes[12] = "Kendini hak ile meşgul etmezsen, batıl seni işgal eder. (İmam Şafi)";

quotes[13] = "Herşeyi bilmek çok kötüdür.";

quotes[14] = "Allah'a itaat etmekle, O'na şükretmiş olursunuz.";

quotes[15] = "Akıllı olan Allah'tan korkar.";

quotes[16] = "İlimsiz ibadette, tefekkürsüz Kur'an tilavetinde hayır yoktur. (Hz. Ali r.a.)";

quotes[17] = "Allah'tan korkmayandan korkulur.";

quotes[18] = "El ağazına bakan karısını tez boşar.";

quotes[19] = "Gercek dost, arkadaşının kusurunu görünce onu uyarır. Fakat bu kusurları başkalarına açıklamaz. (İmam Şafi)";

quotes[20] = "Şahsi gayret yuvayi, toplu gayret vatani ayakta tutar. (A. Aslan)";

quotes[21] = "Küçük insanların gururu büyük olur.";

quotes[22] = "Kitap aklın ilacıdır.";

quotes[23] = "Dost acı söyler.";

quotes[24] = "Kardeş kardeşi atmış, yar başında tutmuş.";

quotes[25] = "Islanmışın yağmurdan korkusu olmaz.";

quotes[26] = "Dost ağlatır, düşman güldürür.";

quotes[27] = "Ecel geldi cıhane, başağrısı bahane.";

quotes[28] = "İslamiyeti yaşayan kimse, hem şahsi, hem ailevi ve hem de sosyal hayatında ibadet ediyor demektir. (Hekimoğlu İsmail)";

quotes[29] = "Gençliğine güvenme, ölen hep ihtiyarmı ?";

quotes[30] = "İnsan ne kadar yükselirse, gönlü o kadar alçalmalıdır.";

quotes[31] = "Tecrübe bilgiyi artırır. Her şeye inanmak ise insanı yanıltır.";

quotes[32] = "Küçük taş, baş yarar.";

quotes[33] = "Haramdan uzak dur, ama mahremini gözet.";

quotes[34] = "Nimetlerin en iyisi çalışarak kazanılan, arkadaşları en iyisi de Allah'ı hatırlatandır.";

quotes[35] = "Bir kimseyi tanımak istiyorsan, arkadaşına bak. (Mevlana)";

quotes[36] = "El öpmekle dudak aşınmaz.";

quotes[37] = "Ahmaklık, hatada israr etmektedir. (Abdulhakim Arvası)";

quotes[38] = "Nasihat tutmayanı musibet tutar.";

quotes[39] = "Herkesi kendi gibi sanan aldanır.";

quotes[40] = "Yerinde söz söylemesini bilen, özür dilemek zorunda kalmaz. (Fatih Sultan Mehmed)";

quotes[41] = "Özü doğru olanın sözü de doğru olur. (Hz. Ali (r.a.))";

quotes[42] = "Küçük bir delik, büyük bir gemiyi batırır.";

quotes[43] = "(Siz'de güzel bir söz biliyorsanız bana yazın)";

quotes[44] = "Doğru sarsılır, ama yıkılmaz.";

quotes[45] = "Adaletin bulunmadığı bir ülkede herkez suçludur.";

quotes[46] = "Zeka, kafanın içindeki altın madenidir.";

quotes[47] = "İteatsizlik şerlerin en kötüsüdür.";

quotes[48] = "İnsan idare etme sanatına siyaset denir.";

quotes[49] = "Kimsenin zenginliği seni değerlendirmez.";

quotes[50] = "Fakir kişi, cimrilik yapan kişidir.";

quotes[51] = "Zengin kişi iktisadı bilen kişidir.";

quotes[52] = "Zengin, kalbi zengin olan kişidir.";

quotes[53] = "Çok dinlememiz ve az konuşmamız için, iki kulağımız ve bir dilimiz vardır.";

quotes[54] = "Mümin, sonu cennet oluncaya kadar, hiçbir hayırdan doymaz, geri kalmaz.";

quotes[55] = "Dağa çıkan düz aramaz.";

quotes[56] = "Adamın aynası arkadaşıdır.";

quotes[57] = "Zihin arı, kitap çiçektir.";

quotes[58] = "Danışan dağı aşmış, danışmayan düz yolda şaşmış.";

quotes[59] = "Korkak dostun olacağına, cesur dostun olsun.";

quotes[60] = "Dostlarını terkeden terkedilir.";

quotes[61] = "Özlü konuşmanın yolu, yersiz sözleri bırakmaktır.";

quotes[62] = "Destursuz bağa giren, hesapsız dayak yer.";

quotes[63] = "İnsan, düşeceği yere çıkmamalıdır.";

quotes[64] = "Kitap, donuk hayata renk katar.";

quotes[65] = "İyiliğe iyilik her kişinin karı, kötülüğe iyilik ER kişinin karı.";

quotes[66] = "Gözü haramdan korumak ne güzel şehvet perdesidir. (Hz. Osman)";

quotes[67] = "Dilencinin keyfi işlek caddede gelir.";

quotes[68] = "Yanliş, iktidarı artmakla hiçbir zaman doğru hale gelmez.";

quotes[69] = "İnsanlara ateşe dost olduğun gibi dost ol. Ondan faydalan. Fakat seni yakmasından sakın.";

quotes[70] = "Kovandan çikmayan arı bal yapmaz.";

quotes[71] = "Dünyada zulme uğrayanlar, kiyamette mutlaka kurtuluşa ulaşacaklardır. (Hz.Muhammed sav.)";

quotes[72] = "Ancak içinden aydınlanan, dışına ışık verir. (İsmet Özel)";

quotes[73] = "Adam adama yük değil, can gövdeye mülk değil.";

quotes[74] = "Bize değer kazandıran şeyler, yaptığımız işlerdir.";

quotes[75] = "Bir münafık, bir orduyu bozar.";

quotes[76] = "Acıyan çok ama ekmek veren az.";

quotes[77] = "İnsanların şahsiyetlerini, iktidarlı zamanlarında ölçmelidir.";

quotes[78] = "İnsanın sözü hikmet, bakışı ibret ve susması ders olmalıdır.";

quotes[79] = "Alimler İslamın bayraktarı, cennetin sakinleridir.";

quotes[80] = "Her deliğe elini sokma, ya yılan çıkar ya ciyan.";

quotes[81] = "Tarih tekerrürden ibarettir.";

quotes[82] = "Sözlerin en güzeli vahiydir.";

quotes[83] = "Birlik olmayan yerde, dirlik olmaz.";

quotes[84] = "Sükut kavgayı keser, fitneyi önler.";

quotes[85] = "İffet, güzelliğin zekatıdır.";

quotes[86] = "Hiç bir zafere çiçekli yollardan gidilmez.";

quotes[87] = "Fitne aslında uykudadır, Allah (cc) onu uyandıranlara lanet eder. (Hz.Muhammed sav.)";

quotes[88] = "Bedava sirke, baldan tatlıdır.";

quotes[89] = "Kalbin gıdası iman, aklın gıdası faydalı ilimdir.";

quotes[90] = "Gözyaşı, kalp te olan ateşe delildir.";

quotes[91] = "Merhamet etmeyene merhamet edilmez.";

quotes[92] = "Alışmış, kudurmuştan beterdir.";

quotes[93] = "Akıllı insan tüm yumurtalarını aynı sepete koymaz.";

quotes[94] = "Buldum bilemedim, bildim bulamadım.";

quotes[95] = "Ölümü hatırlamak, hırs ateşini söndürür.";

quotes[96] = "Ne mutlu! Aklı işine bekci, kendi sözünü kendi tenkitci olana.";

quotes[97] = "Cahil, yaşlı dahi olsa küçüktür, Alim, küçük de olsa büyüktür.";

quotes[98] = "Gençlikte vaktini geçiren sefa ile, ihtiyarlikta ömrünü geçirir cefa ile.";

quotes[99] = "Hicretin en faziletlisi, Allah'ın sevmediği şeyleri terk etmektir. (Hz.Muhammed sav)";



//calculate a random index

index = Math.floor(Math.random() * quotes.length);



//display the quotation

document.write("<hr><H3>Günün Sözü: <br> " + "\"" + quotes[index] + "\"\n <\/H3>")

document.write("Daha fazlasini okumak istiyorsaniz, asagida (Güzel Sözler)'e tiklayin. <hr>");



// -->

</script>
Mesaj18.09.2012, 12:46 (UTC)    
Mesaj konusu:

Yazı Boyutunu Büyütme Kodu


Kod:
<script type="text/javascript">

function el(id) { return document.getElementById(id) ; }
function degis(t){
el("divid").style.fontSize= t.value+"px";
}
</script>
<style type="text/css">
.efet { font-size:16px;}
input { background-color:pink; color:red;}
</style>
<body>
Yazı boyutu seç:<br>
<input type="button" value="20" onclick_fckprotectedatt="%20onclick%3D%22degis(this)%22">
<input type="button" value="26" onclick_fckprotectedatt="%20onclick%3D%22degis(this)%22">
<input type="button" value="30" onclick_fckprotectedatt="%20onclick%3D%22degis(this)%22">
<input type="button" value="36" onclick_fckprotectedatt="%20onclick%3D%22degis(this)%22">
<div id="divid" class="efet">Burada metin var.</div>
<div>Burada metin boyutu sabit olacak.</div>
Önceki mesajları göster:   


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