Forum'da ara:
Ara


Yazar Mesaj
Mesaj29.04.2009, 17:42 (UTC)    
Mesaj konusu:



1-2-3-4 Şeklinde Sayfa


Kod:

<style type="text/css">

/*Credits: Dynamic Drive CSS Library */

.pagination{
padding: 2px;
}

.pagination ul{
margin: 0;
padding: 0;
text-align: left; /*Set to "right" to right align pagination interface*/
font-size: 16px;
}

.pagination li{
list-style-type: none;
display: inline;
padding-bottom: 1px;
}

.pagination a, .pagination a:visited{
padding: 0 5px;
border: 1px solid #9aafe5;
text-decoration: none;
color: #2e6ab1;
}

.pagination a:hover, .pagination a:active{
border: 1px solid #2b66a5;
color: #000;
background-color: #FFFF80;
}

.pagination a.currentpage{
background-color: #2e6ab1;
color: #FFF !important;
border-color: #2b66a5;
font-weight: bold;
cursor: default;
}

.pagination a.disablelink, .pagination a.disablelink:hover{
background-color: white;
cursor: default;
color: #929292;
border-color: #929292;
font-weight: normal !important;
}

.pagination a.prevnext{
font-weight: bold;
}

</style>



Linkleri Girin...!

Kod:
<div class="pagination">
<ul>
<li><a href="#" class="prevnext disablelink">« previous</a></li>
<li><a href="#" class="currentpage">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#">6</a></li>
<li><a href="#">7</a></li>
<li><a href="#">8</a></li>
<li><a href="#">9</a>...</li>
<li><a href="#">15</a></li>
<li><a href="#">16</a></li>
<li><a href="#" class="prevnext">next »</a></li>
</ul>
</div>

______________
Mesaj03.05.2009, 09:31 (UTC)    
Mesaj konusu: Hanoi kuleleri matematik oyunu

Hanoi kuleleri bir matematik oyunu veya bulmacadır.Üç direk ve farklı boyutlarda disklerden oluşur. Bu diskleri dilediğiniz direğe aktarabilirsiniz. Bulmaca bir direkte en küçük disk yukarıda olacak şekilde, küçükten büyüğe direk üstünde dizilmiş olarak başlar. Böylece konik bir şekil oluşmuş olur.

Oyunun amacı tüm diskleri bir başka direğe aşağıdaki kurallar doğrultusunda taşımaktır:

* Her hamlede sadece bir disk taşınabilir.
* Her hamle en üstteki diski direkten alıp diğer bir direğe taşımaktan oluşur. Diğer direkte daha önceden diskler olabilir.
* Hiç bir disk kendisinden küçük bir diskin üzerine koyulamaz.
SİTESİNE EKLEYEN ARKADASLAR YORUM YASSIN BI ISE YARADIGIMIN FARKINA VARIYIM

Kod:
<html>
<head>
<title>Tower of Hanoi DHTML game</title>
<style type="text/css">
table {font:bold 13px Verdana}
p {font:normal 11px Tahoma,Verdana}
input,select {font:normal 12px Tahoma,Verdana}
select {width:40px}
a {font-weight:bold}
.tower {position:absolute;visibility:visible;left:77px;top:184px;font:bold 10px Tahoma}
.container {position:absolute;visibility:visible;}
.towervert {position:absolute;visibility:visible;border:1px solid black;background-color:black}
.towerhoriz {position:absolute;visibility:visible;border:1px solid black;font-size:1px;background-color:black}
.disk {position:absolute;visibility:visible;border:1px solid black}
</style>
<script type="text/javascript">

/***********************************************
* Tower of Hanoi- by Glenn G. Vergara (glenngv( at )REMOVETHISyahoo.com)
* This notice must stay intact for use
* Visit Dynamic Drive (http://www.dynamicdrive.com/) for full source code
***********************************************/

var delay = 200; //in milliseconds

var drag=false;
var objDisk=null;
var x = 0;
var y = 0;
var disksOnTower1 = new Array(null,null,null,null,null,null,null,null);
var disksOnTower2 = new Array(null,null,null,null,null,null,null,null);
var disksOnTower3 = new Array(null,null,null,null,null,null,null,null);
var disksOnTowers = new Array(disksOnTower1,disksOnTower2,disksOnTower3);
var offsetleft = 30;
var offsettop = 30;
var offsettower = 20;
var offsethoriz = 30;
var basetop = 0;
var diskheight = 0;
var midhoriztower = 0;
var indexTo=1;
var indexFr=1;
var movectr=0;
var gameOver=false;
var prevIndex=0;
var zindex = 0;
var currTower=1;
var prevTower=1;
var demo=false;
var arrFr = new Array(255);
var arrTo = new Array(255);
var idx = 0;
var pos = 0;
var t=null;
var stop=false;


function init(){
if (document.getElementById){
var diskno = document.hanoi.diskno;
diskno.options.selectedIndex = 0;
drawTowers();
drawDisks(parseInt(diskno.options[diskno.options.selectedIndex].text));
}
}

function initVars(){
for (var i=0;i<disksOnTower1.length;i++){
disksOnTower1[i]=null;
disksOnTower2[i]=null;
disksOnTower3[i]=null;
}
drag = false;
indexTo = 1;
indexFr = 1;
movectr = 0;
zindex = 0;
idx = 0;
pos = 0;
t = null;
gameOver=false;
stop=false;
demo=false;
document.hanoi.btnUndo.disabled=true;
}

function drawTowers(){
var title=document.getElementById("title");
var tower1=document.getElementById("tower1");
var tower2=document.getElementById("tower2");
var tower3=document.getElementById("tower3");
var settings=document.getElementById("settings");
var titlewidth = parseInt(title.style.width);
var titleheight = parseInt(title.style.height);
var towerwidth = parseInt(tower1.style.width);
var towerheight = parseInt(tower1.style.height);
var settingswidth = parseInt(settings.style.width);
midhoriztower = parseInt(document.getElementById("horiztower1").style.width)/2;
diskheight = parseInt(document.getElementById("disk1").style.height);

title.style.left=offsetleft+(1.5*towerwidth)+offsettower-(titlewidth/2)+"px";
title.style.top=offsettop+"px";
tower1.style.left=offsetleft+"px";
tower1.style.top=offsettop+titleheight+offsethoriz+"px";
tower2.style.left=offsetleft+towerwidth+offsettower+"px";
tower2.style.top=offsettop+titleheight+offsethoriz+"px";
tower3.style.left=offsetleft+(towerwidth+offsettower)*2+"px";
tower3.style.top=offsettop+titleheight+offsethoriz+"px";
settings.style.left=offsetleft+(1.5*towerwidth)+offsettower-(settingswidth/2)+"px";
settings.style.top=parseInt(tower1.style.top)+towerheight+offsethoriz+"px";
}

function drawDisks(disknum){
var tower1=document.getElementById("tower1");
var disktop = parseInt(tower1.style.top)+parseInt(document.getElementById("horiztower1").style.top);
var lefttower1 = parseInt(tower1.style.left);
var disk;
var f=document.hanoi;
basetop = disktop;
for (var i=disksOnTower1.length;i>=1;i--){
disk = document.getElementById("disk"+i);
disk.style.zIndex=++zindex;
if (i<=disknum){
disk.style.left=lefttower1+midhoriztower-parseInt(disk.style.width)/2+"px";
disk.style.top=disktop-diskheight-1+"px";
disktop = parseInt(disk.style.top);
disksOnTowers[0][i-1]=disk;
}
else {
disk.style.left="-250px";
disk.style.top="-250px";
disksOnTowers[0][i-1]=null;
}
}
f.minmove.value=f.diskno.options[f.diskno.options.selectedIndex].value;
f.yourmove.value=0;
}

function newGame(obj){
if (movectr>0 && !gameOver && !stop){
if (confirm("Current game will be aborted, would you like to continue?")){
initVars();
drawDisks(parseInt(obj.options[obj.options.selectedIndex].text));
}
else document.hanoi.diskno.options.selectedIndex=prevIndex;
}
else {
initVars();
drawDisks(parseInt(obj.options[obj.options.selectedIndex].text));
}
}

function initializeDrag(disk,e){
if (!e) e=event;
if (stop){
alert("You cannot continue solving the puzzle after clicking the 'Stop' button.\nClick 'Restart' button or select no. of disks to continue playing.");
return;
}
indexFr = indexTo;
if (disk.id!=disksOnTowers[indexFr-1][0].id || gameOver || demo) return;
objDisk=disk;
x=e.clientX;
y=e.clientY;
tempx=parseInt(disk.style.left);
tempy=parseInt(disk.style.top);
document.onmousemove=dragDisk;
}

function dragDisk(e){
if (!e) e=event;
zindex++;
drag=true;
var posX = tempx+e.clientX-x;
var posY = tempy+e.clientY-y;
var objTower1 = document.getElementById("tower1");
var objTower2 = document.getElementById("tower2");
var objTower3 = document.getElementById("tower3");
var tower1Left = parseInt(objTower1.style.left);
var tower2Left = parseInt(objTower2.style.left);
var tower3Left = parseInt(objTower3.style.left);
var tower3Width = parseInt(objTower3.style.width);

objDisk.style.zIndex=zindex;
objDisk.style.left=posX+'px';
objDisk.style.top=posY+'px';

if (e.clientX>=document.body.clientWidth-10 || e.clientY>=document.body.clientHeight-5 || e.clientX==5 || e.clientY==5){ //outside available window
indexTo=indexFr;
dropDisk(objDisk);
}
else if ( //in the vicinity of tower 3
(tower3Left<=posX) &&
(tower3Left+tower3Width>=posX) &&
(parseInt(objTower3.style.top)+parseInt(objTower3.style.height)>posY)
){
indexTo=3;
}
else if ((tower2Left<=posX) && (tower2Left+tower3Width>=posX)){ //in the vicinity of tower 2
indexTo=2;
}
else if ((tower1Left<=posX) && (tower1Left+parseInt(objTower1.style.width)>=posX)){ //in the vicinity of tower 1
indexTo=1;
}
else indexTo = indexFr;
return false;
}

function dropDisk(disk){
var f=document.hanoi;
document.onmousemove=new Function("return false");
if (!drag) return;
var gameStatus=false;
var topDisk = disksOnTowers[indexTo-1][0];
if (indexFr==indexTo){
getNewTop(indexFr,null);
pushDisk(disk,indexFr); //put disk back to original tower
getNewTop(indexFr,disk);
}
else if (topDisk==null) {
pushDisk(disk,indexTo);
getNewTop(indexFr,null);
getNewTop(indexTo,disk);
movectr++;
currTower=indexTo;
prevTower=indexFr;
f.btnUndo.disabled=false;
}
else if (parseInt(disk.style.width)<parseInt(topDisk.style.width)){
pushDisk(disk,indexTo);
getNewTop(indexFr,null);
getNewTop(indexTo,disk);
movectr++;
currTower=indexTo;
prevTower=indexFr;
if (indexTo==3) gameStatus=checkStatus();
f.btnUndo.disabled=false;
}
else {
getNewTop(indexFr,null);
pushDisk(disk,indexFr); //put disk back to original tower
getNewTop(indexFr,disk);
}

drag=false;
f.yourmove.value=movectr;
if (gameStatus) {
f.btnUndo.disabled=true;
minmove = parseInt(f.minmove.value);
if (movectr==minmove) msg="\nCongratulations! You got it in "+minmove+" moves."
else if (movectr>minmove) msg="\nYou can do better than that."
else msg="";
alert("Game Over !!!"+msg);
gameOver=true;
}
return;
}

function checkStatus(){
var gameStat = false;
var disks=0;
for (var i=0;i<disksOnTower3.length;i++){
if (disksOnTowers[2][i]!=null) disks++;
}
if (disks==parseInt(document.hanoi.diskno.options[document.hanoi.diskno.options.selectedIndex].text)) gameStat=true;
return gameStat;
}

function pushDisk(disk,index){
var diskWidth = parseInt(disk.style.width);
var towerLeft = parseInt(document.getElementById("tower"+index).style.left);
var topDisk = disksOnTowers[index-1][0];
if (topDisk!=null){
topDiskWidth = parseInt(topDisk.style.width);
topDiskTop = parseInt(topDisk.style.top);
disk.style.left=towerLeft+midhoriztower-diskWidth/2+"px";
disk.style.top=topDiskTop-diskheight-1+"px";
}
else {
disk.style.left=towerLeft+midhoriztower-diskWidth/2+"px";
disk.style.top=basetop-diskheight-1+"px";
}
}

function getNewTop(index,disk){
if (disk==null){ //pop
for (var i=0;i<disksOnTower1.length-1;i++){
disksOnTowers[index-1][i]=disksOnTowers[index-1][i+1];
}
disksOnTowers[index-1][disksOnTower1.length-1]=null;
}
else { //push
for (var i=disksOnTower1.length-1;i>=1;i--){
disksOnTowers[index-1][i]=disksOnTowers[index-1][i-1];
}
disksOnTowers[index-1][0]=disk;
}
}

function solve(btn){
if (btn.value=="Solve"){
if (movectr>0 && !gameOver && !stop)
if (!confirm("Current game will be aborted, would you like to continue?")) return;
btn.value="Stop";
initVars();
stop=false;
demo=true;
var f=document.hanoi;
f.btnIns.disabled=true;
f.btnRes.disabled=true;
f.btnUndo.disabled=true;
disknum = parseInt(f.diskno.options[f.diskno.options.selectedIndex].text);
drawDisks(disknum);
getMoves(0, 2, 1, disknum);
t=window.setTimeout("moveDisk()",delay);
}
else {
if (t) {
window.clearTimeout(t);
btn.value="Solve";
frm.btnIns.disabled=false;
frm.btnRes.disabled=false;
t = null;
stop=true;
demo=false;
}

}
}

function moveDisk(){
frm = document.hanoi;
disk=disksOnTowers[arrFr[pos]][0];
pushDisk(disk,arrTo[pos]+1);
getNewTop(arrFr[pos]+1,null);
getNewTop(arrTo[pos]+1,disk);
movectr++;
frm.yourmove.value=movectr;
pos++;
if (movectr<parseInt(frm.minmove.value)) t=window.setTimeout("moveDisk()",delay);
else {
alert("Can you do that in "+movectr+" moves?");
gameOver=true;
stop=false;
frm.btnSolve.value="Solve";
frm.btnIns.disabled=false;
frm.btnRes.disabled=false;
}
}

function getMoves(from,to,empty,numDisk){
if (numDisk > 1) {
getMoves(from, empty, to, numDisk - 1);
arrFr[idx] = from;
arrTo[idx++] = to;
getMoves(empty, to, from, numDisk - 1);
}
else {
arrFr[idx] = from;
arrTo[idx++] = to;
}
}


function unDo(btn){
disk=disksOnTowers[currTower-1][0];
pushDisk(disk,prevTower);
getNewTop(currTower,null);
getNewTop(prevTower,disk);
movectr--;
document.hanoi.yourmove.value=movectr;
btn.disabled=true;
}

function displayIns(){
var msg="Try to move all the disks from TOWER 1 to TOWER 3.\n";
msg+="You may only move one disk at a time.\n";
msg+="You must never allow a bigger disk to go on top of a smaller disk.";
alert(msg);
}
</script>
</head>
<body onload="init();" onselectstart="return false" oncontextmenu="return false">
<form name="hanoi">

<div id="title" style="position:absolute;visibility:visible;left:-250px;top:-250px;width:160px;height:20px;font:bold 20px Tahoma;text-align:center;">Tower of Hanoi</div>

<div id="tower1" class="container" style="left:-250px;top:-250px;width:200px;height:200px" onmousemove="indexTo=1">
<div id="verttower1" class="towervert" style="left:99px;top:10px;width:3px;height:170px"></div>
<div id="horiztower1" class="towerhoriz" style="left:0px;top:180px;width:200px;height:2px"></div>
<div class="tower">TOWER 1</div>
</div>

<div id="tower2" class="container" style="left:-250px;top:-250px;width:200px;height:200px" onmousemove="indexTo=2">
<div id="verttower2" class="towervert" style="left:99px;top:10px;width:3px;height:170px"></div>
<div id="horiztower2" class="towerhoriz" style="left:0px;top:180px;width:200px;height:2px"></div>
<div class="tower">TOWER 2</div>
</div>

<div id="tower3" class="container" style="left:-250px;top:-250px;width:200px;height:200px" onmousemove="indexTo=3">
<div id="verttower3" class="towervert" style="left:99px;top:10px;width:3px;height:170px"></div>
<div id="horiztower3" class="towerhoriz" style="left:0px;top:180px;width:200px;height:2px"></div>
<div class="tower">TOWER 3</div>
</div>

<div id="disk1" class="disk" style="left:-250px;top:-250px;width:50px;height:19px;background-color:pink" onmousedown="initializeDrag(this,event)" onmouseup="dropDisk(this)" title="Disk 1"></div>
<div id="disk2" class="disk" style="left:-250px;top:-250px;width:70px;height:19px;background-color:violet" onmousedown="initializeDrag(this,event)" onmouseup="dropDisk(this)" title="Disk 2"></div>
<div id="disk3" class="disk" style="left:-250px;top:-250px;width:90px;height:19px;background-color:indigo" onmousedown="initializeDrag(this,event)" onmouseup="dropDisk(this)" title="Disk 3"></div>
<div id="disk4" class="disk" style="left:-250px;top:-250px;width:110px;height:19px;background-color:blue" onmousedown="initializeDrag(this,event)" onmouseup="dropDisk(this)" title="Disk 4"></div>
<div id="disk5" class="disk" style="left:-250px;top:-250px;width:130px;height:19px;background-color:green" onmousedown="initializeDrag(this,event)" onmouseup="dropDisk(this)" title="Disk 5"></div>
<div id="disk6" class="disk" style="left:-250px;top:-250px;width:150px;height:19px;background-color:yellow" onmousedown="initializeDrag(this,event)" onmouseup="dropDisk(this)" title="Disk 6"></div>
<div id="disk7" class="disk" style="left:-250px;top:-250px;width:170px;height:19px;background-color:orange" onmousedown="initializeDrag(this,event)" onmouseup="dropDisk(this)" title="Disk 7"></div>
<div id="disk8" class="disk" style="left:-250px;top:-250px;width:190px;height:19px;background-color:red" onmousedown="initializeDrag(this,event)" onmouseup="dropDisk(this)" title="Disk 8"></div>

<div id="settings" class="container" style="left:-250px;top:-250px;width:260px;">
<table>
<tr><td>No. of disks</td>
<td>
<select name="diskno" onchange="newGame(this)" onclick="prevIndex=this.options.selectedIndex">
<option value="7" selected>3</option>
<option value="15">4</option>
<option value="31">5</option>
<option value="63">6</option>
<option value="127">7</option>
<option value="255">8</option>
</select>
</td></tr>
<tr><td>Minimum no. of moves&nbsp;&nbsp;</td>
<td><input name="minmove" style="border:none" size="3" value="255" readonly="readonly" /></td></tr>
<tr><td>Your no. of moves</td>
<td><input name="yourmove" style="border:none" size="3" value="0" readonly="readonly" /></td></tr>
<tr><td colspan="2" align="center">
<input type="button" name="btnIns" value="Instructions" onclick="displayIns()" />
<input type="button" name="btnRes" value="Restart" onclick="newGame(document.hanoi.diskno)" />
<input type="button" name="btnUndo" value="Undo" onclick="unDo(this)" disabled="disabled" />
<input type="button" name="btnSolve" value="Solve" onclick="solve(this)" />
</td></tr>
</table>
<p>&nbsp;</p>
<p>
carbonteam zeka oyunları  <a href="http://carbonteam.tr.gg" target="_blank">ASKing1925</a>.
</p>
</div>
</form>
</body>
</html>

Very Happy Arrow Arrow Arrow
______________
Mesaj03.05.2009, 10:05 (UTC)    
Mesaj konusu: Bu mudur?

<a href="http://janberkandalper.tr.gg?in=4" target="_blank"></a>
Mesaj04.05.2009, 18:22 (UTC)    
Mesaj konusu: EMEĞE SAYGI

TEŞEKKÜRLER
Mesaj04.05.2009, 21:38 (UTC)    
Mesaj konusu:

[...]

Düzenlendi.

@benimsitem1993
______________
SÜLEYMAN TOPCU


En son hayatderesi tarafından 13.12.2009 14:58:06 tarihinde değiştirildi, toplam 1 kere değiştirildi
Mesaj05.05.2009, 20:47 (UTC)    
Mesaj konusu: LÜTFEN DİKKAT

[...]

Düzenlendi.

@benimsitem1993
______________
SÜLEYMAN TOPCU


En son hayatderesi tarafından 13.12.2009 14:58:16 tarihinde değiştirildi, toplam 1 kere değiştirildi
Mesaj07.05.2009, 11:01 (UTC)    
Mesaj konusu:

hayatderesi yazmış:
[...]

Düzenlendi.

@benimsitem1993


heryere aynı şeyı yazmak zorundamısın Confused
______________


En son islamanahtari tarafından 13.12.2009 14:58:34 tarihinde değiştirildi, toplam 1 kere değiştirildi
Mesaj07.05.2009, 15:52 (UTC)    
Mesaj konusu:

Geri Sayım Sayacı Kodu ;
Kod:

<style type="text/css">




.lcdstyle{ /*Example CSS to create LCD countdown look*/
background-color:white;
color:Blue;
font: bold 18px MS Sans Serif;
padding: 3px;
}

.lcdstyle sup{ /*Example CSS to create LCD countdown look*/
font-size: 80%
}</style><script type="text/javascript">

/***********************************************
* Dynamic Countdown script- © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function cdtime(container, targetdate){
if (!document.getElementById || !document.getElementById(container)) return
this.container=document.getElementById(container)
this.currentTime=new Date()
this.targetdate=new Date(targetdate)
this.timesup=false
this.updateTime()
}

cdtime.prototype.updateTime=function(){
var thisobj=this
this.currentTime.setSeconds(this.currentTime.getSeconds()+1)
setTimeout(function(){thisobj.updateTime()}, 1000) //update time every second
}

cdtime.prototype.displaycountdown=function(baseunit, functionref){
this.baseunit=baseunit
this.formatresults=functionref
this.showresults()
}

cdtime.prototype.showresults=function(){
var thisobj=this


var timediff=(this.targetdate-this.currentTime)/1000 //difference btw target date and current date, in seconds
if (timediff<0){ //if time is up
this.timesup=true
this.container.innerHTML=this.formatresults()
return
}
var oneMinute=60 //minute unit in seconds
var oneHour=60*60 //hour unit in seconds
var oneDay=60*60*24 //day unit in seconds
var dayfield=Math.floor(timediff/oneDay)
var hourfield=Math.floor((timediff-dayfield*oneDay)/oneHour)
var minutefield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour)/oneMinute)
var secondfield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour-minutefield*oneMinute))
if (this.baseunit=="hours"){ //if base unit is hours, set "hourfield" to be topmost level
hourfield=dayfield*24+hourfield
dayfield="n/a"
}
else if (this.baseunit=="minutes"){ //if base unit is minutes, set "minutefield" to be topmost level
minutefield=dayfield*24*60+hourfield*60+minutefield
dayfield=hourfield="n/a"
}
else if (this.baseunit=="seconds"){ //if base unit is seconds, set "secondfield" to be topmost level
var secondfield=timediff
dayfield=hourfield=minutefield="n/a"
}
this.container.innerHTML=this.formatresults(dayfield, hourfield, minutefield, secondfield)
setTimeout(function(){thisobj.showresults()}, 1000) //update results every second
}

/////CUSTOM FORMAT OUTPUT FUNCTIONS BELOW//////////////////////////////

//Create your own custom format function to pass into cdtime.displaycountdown()
//Use arguments[0] to access "Gün" left
//Use arguments[1] to access "Saat" left
//Use arguments[2] to access "Dakika" left
//Use arguments[3] to access "Saniye" left

//The values of these arguments may change depending on the "baseunit" parameter of cdtime.displaycountdown()
//For example, if "baseunit" is set to "hours", arguments[0] becomes meaningless and contains "n/a"
//For example, if "baseunit" is set to "minutes", arguments[0] and arguments[1] become meaningless etc


function formatresults(){
if (this.timesup==false){//if target date/time not yet met
var displaystring=arguments[0]+" Gün "+arguments[1]+" Saat "+arguments[2]+" Dakika "+arguments[3]+" Saniye "
}
else{ //else if target date/time met
var displaystring=""
}
return displaystring
}

function formatresults2(){
if (this.timesup==false){ //if target date/time not yet met
var displaystring=""
}
else{ //else if target date/time met
var displaystring="" //Don't display any text
alert("Christmas is here!") //Instead, perform a custom alert
}
return displaystring
}

</script>
<div id="countdowncontainer">Ma&ccedil;Lara&nbsp;</div>
<br />
<div id="countdowncontainer2">&nbsp;Kaldı</div>
<script type="text/javascript">

var futuredate=new cdtime("countdowncontainer", "May 09, 2009 19:00:00")
futuredate.displaycountdown("days", formatresults)

var currentyear=new Date().getFullYear()
//dynamically get this Christmas' year value. If Christmas already passed, then year=current year+1
var thischristmasyear=(new Date().getMonth()>=11 && new Date().getDate()>25)? currentyear+1 : currentyear
var christmas=new cdtime("countdowncontainer2", "May 09"+thischristmasyear+" 0:0:00")
christmas.displaycountdown("days", formatresults2)

</script>

______________
Mesaj14.05.2009, 15:01 (UTC)    
Mesaj konusu: ..

cunobag yazmış:
Arka plan sabitleme...

Kod:
<style type="text/css">
<!--
body {
    background-image: url("arkaplandosyasi.jpg");
    background-attachment: fixed;
}
-->
</style>


iyi güzelde bu kodu nereye yazcam? xS .. anasayfa mı? navigasyon mu ? neresi?
Mesaj14.05.2009, 18:25 (UTC)    
Mesaj konusu: Re: ..

saimbeylitayfasi yazmış:
cunobag yazmış:
Arka plan sabitleme...

Kod:
<style type="text/css">
<!--
body {
    background-image: url("arkaplandosyasi.jpg");
    background-attachment: fixed;
}
-->
</style>


iyi güzelde bu kodu nereye yazcam? xS .. anasayfa mı? navigasyon mu ? neresi?


Tasarımın Üzerine
______________
Mesaj15.05.2009, 14:06 (UTC)    
Mesaj konusu:

Süper kodlar var
Mesaj17.05.2009, 13:48 (UTC)    
Mesaj konusu:

SİTENE HANGİ TAKIM ŞAMPİYON OLUR ANKETİ




Kod:
[code]HATA[/code]

______________
[IMG]http://i44.tinypic.com/33jms95.jpg[/IMG]
Mesaj17.05.2009, 21:16 (UTC)    
Mesaj konusu: > TÜRKİYE TANITIM HARİTASI <

TüRKiYE TANITIM HARiTASI
>>> www.bakkals.tr.gg <<<
Kod:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="300"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0">
<param name="movie" value="http://turkiyem.bidibidi.com/ililturkiye.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="http://turkiyem.bidibidi.com/ililturkiye.swf" quality="high" width="700" height="300" wmode="transparent"
type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object> </body></html></a>
Mesaj19.05.2009, 11:31 (UTC)    
Mesaj konusu:


Sağdaki Kutuya En Hit Oyunlar Menüsü

Çok güzel ve kullanışlı


Kod:
<table border="0" width="100%" id="table1" style="border-collapse: collapse">
   <tr>
      <td>&nbsp;</td>
      <td width="140" style="border: 8px solid #E1E1E1; " bgcolor="#FFFFFF" valign="top">
      <table border="0" width="100%" id="table2" style="border-collapse: collapse">
         <tr>
            <td>
            <p align="center"><font face="Snap ITC" style="font-size: 13pt">
            EN HiT OYUNLAR</font></td>
         </tr>
         <tr>
            <td>
            <p align="center">
      <img border="0" src="http://img93.imageshack.us/img93/9743/altbar2.png" width="121" height="121"></td>
         </tr>
         <tr>
            <td>
            <font size="5"><strong>
            <font size="5" color="#0000ff" style="font-size: 8pt; background-color: rgb(255, 255, 0)" face="Comic Sans MS">
            <select style="font-size: 10px; font-family: Verdana; font-weight: bold; padding: 0" size="1" onchange="if (this.options[this.selectedIndex].value != 'null') { window.open(this.options[this.selectedIndex].value,'_') }" name="URL1">
            <option>Oyun Seçin</option>
            <option>_______________</option>
            <option value="http://resimvideo.110mb.com/oyun/akrobat_surucu.htm">Akrobat Sürücü
            </option>
            <option value="http://resimvideo.110mb.com/oyun/amerikan_bilardo.htm">Amerikan Bilardo
            </option>
            <option value="http://resimvideo.110mb.com/oyun/aphachi_helikopter.htm">Aphachi Helikopter
            </option>
            <option value="http://resimvideo.110mb.com/oyun/aphachi_helikopter_2.htm">Aphachi Helikopter 2
            </option>
            <option value="http://resimvideo.110mb.com/oyun/araba_yarisi.htm">Araba Yarışı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/araba_yarisi_2.htm">Araba Yarışı 2
            </option>
            <option value="http://resimvideo.110mb.com/oyun/arabani_parket_2.htm">Arabanı Parket
            </option>
            <option value="http://resimvideo.110mb.com/oyun/arabani_parket_3.htm">Arabanı Parket 2
            </option>
            <option value="http://resimvideo.110mb.com/oyun/arena.htm">Arena
            </option>
            <option value="http://resimvideo.110mb.com/oyun/arkadasanizi_dovun.htm">Arkadaşını Döv
            </option>
            <option value="http://resimvideo.110mb.com/oyun/askeri_arac_2.htm">Askeri Araç
            </option>
            <option value="http://resimvideo.110mb.com/oyun/basketciler.htm">Basketçiler
            </option>
            <option value="http://resimvideo.110mb.com/oyun/bilardo_gucu_2.htm">Bilardo Gücü
            </option>
            <option value="http://resimvideo.110mb.com/oyun/bisiklet.htm">Bisiklet
            </option>
            <option value="http://resimvideo.110mb.com/oyun/boks_turnuvasi.htm">Boks Turnuvası
            </option>
            <option value="http://resimvideo.110mb.com/oyun/bomba_zinciri.htm">Bomba Zinciri
            </option>
            <option value="http://resimvideo.110mb.com/oyun/bombardimani_engelle.htm">Bombardımanı Engelle
            </option>
            <option value="http://resimvideo.110mb.com/oyun/bowling.htm">Bowling
            </option>
            <option value="http://resimvideo.110mb.com/oyun/bowling_2.htm">Bowling 2
            </option>
            <option value="http://resimvideo.110mb.com/oyun/boyama.htm">Boyama
            </option>
            <option value="http://resimvideo.110mb.com/oyun/busha_ayakkabi_firlatma.htm">Bush'a Ayakkabı Fırlat
            </option>
            <option value="http://resimvideo.110mb.com/oyun/buz_rallisi.htm">Buz Rallisi
            </option>
            <option value="http://resimvideo.110mb.com/oyun/buzda_savas.htm">Buzda Savaş
            </option>
            <option value="http://resimvideo.110mb.com/oyun/carptir.htm">Çarptır
            </option>
            <option value="http://resimvideo.110mb.com/oyun/dag_rallisi.htm">Dağ Rallisi
            </option>
            <option value="http://resimvideo.110mb.com/oyun/dart_oyna.htm">Dart Oyna
            </option>
            <option value="http://resimvideo.110mb.com/oyun/dikkatli_kullan.htm">Dikkatli Kullan
            </option>
            <option value="http://resimvideo.110mb.com/oyun/dondur_patlat.htm">Döndür Patlat
            </option>
            <option value="http://resimvideo.110mb.com/oyun/dragon_yumrugu.htm">Dragon Yumruğu
            </option>
            <option value="http://resimvideo.110mb.com/oyun/dusmeden_kay.htm">Düşmeden Kay
            </option>
            <option value="http://resimvideo.110mb.com/oyun/duvar_pasi.htm">Duvar Pası
            </option>
            <option value="http://resimvideo.110mb.com/oyun/duvar_tenisi.htm">Duvar Tenisi
            </option>
            <option value="http://resimvideo.110mb.com/oyun/elbise_giydir.htm">Elbise Giydir
            </option>
            <option value="http://resimvideo.110mb.com/oyun/elbise_giydir2.htm">Elbise Giydir 2
            </option>
            <option value="http://resimvideo.110mb.com/oyun/elbise_giydir3.htm">Elbise Giydir 3
            </option>
            <option value="http://resimvideo.110mb.com/oyun/elbise_giydir4.htm">Elbise Giydir 4
            </option>
            <option value="http://resimvideo.110mb.com/oyun/elbise_giydir5.htm">Elbise Giydir 5
            </option>
            <option value="http://resimvideo.110mb.com/oyun/fenerbahceli_dovme.htm">Fenerbahçeli Döv
            </option>
            <option value="http://resimvideo.110mb.com/oyun/freman.htm">Freman
            </option>
            <option value="http://resimvideo.110mb.com/oyun/frikik.htm">Frikik
            </option>
            <option value="http://resimvideo.110mb.com/oyun/fuze_kalkani.htm">Füze Kalkanı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/galatasarayli_dovme.htm">Galatasaraylı Döv
            </option>
            <option value="http://resimvideo.110mb.com/oyun/garfield_boyama.htm">Garlfield Boyama
            </option>
            <option value="http://resimvideo.110mb.com/oyun/garson_kiz.htm">Gazrson Kız
            </option>
            <option value="http://resimvideo.110mb.com/oyun/gaz_kacirmaca.htm">Gaz Kaçırmaca
            </option>
            <option value="http://resimvideo.110mb.com/oyun/gelinlik_giydir.htm">Gelinlik Giydir
            </option>
            <option value="http://resimvideo.110mb.com/oyun/gizemli_maskeler.htm">Gizemli Maskler
            </option>
            <option value="http://resimvideo.110mb.com/oyun/golf.htm">Golf
            </option>
            <option value="http://resimvideo.110mb.com/oyun/guile_vs_ken.htm">Guile Vs Ken
            </option>
            <option value="http://resimvideo.110mb.com/oyun/hamster.htm">Hamster
            </option>
            <option value="http://resimvideo.110mb.com/oyun/hamster_2.htm">Hamster 2
            </option>
            <option value="http://resimvideo.110mb.com/oyun/hava_indirme_tugayi.htm">Hava İndirme Tugayı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/hazine_avi.htm">Hazine Avı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/helikopter_vurusu.htm">Helikopter Vuruşu
            </option>
            <option value="http://resimvideo.110mb.com/oyun/heykeli_savun.htm">Heykeli Savun
            </option>
            <option value="http://resimvideo.110mb.com/oyun/hucum_botu.htm">Hücum Botu
            </option>
            <option value="http://resimvideo.110mb.com/oyun/it_dalasi.htm">İt Dalaşı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/jetski.htm">Jetski
            </option>
            <option value="http://resimvideo.110mb.com/oyun/kaka_yapmaca.htm">Kaka Yapmaca
            </option>
            <option value="http://resimvideo.110mb.com/oyun/kale_savunma.htm">Kale Savunma
            </option>
            <option value="http://resimvideo.110mb.com/oyun/kanli_ofke.htm">Kanlı Öfke
            </option>
            <option value="http://resimvideo.110mb.com/oyun/kati_patlat.htm">Katı Patlat
            </option>
            <option value="http://resimvideo.110mb.com/oyun/king_of_fighters.htm">King Of Fighters
            </option>
            <option value="http://resimvideo.110mb.com/oyun/kiz_erkek_maci.htm">Kız Erkek Maçı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/kral_penalti.htm">Kral Penaltı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/kutulari_yerlestirme.htm">Kutuları Yerleştirme
            </option>
            <option value="http://resimvideo.110mb.com/oyun/lunapark_treni.htm">Luna Park
            </option>
            <option value="http://resimvideo.110mb.com/oyun/mahjongg.htm">Mahjongg
            </option>
            <option value="http://resimvideo.110mb.com/oyun/majinca.htm">Majinca
            </option>
            <option value="http://resimvideo.110mb.com/oyun/makyaj_beyonce.htm">Makyaj Beyonce
            </option>
            <option value="http://resimvideo.110mb.com/oyun/makyaj_selena.htm">Makyaj Selena
            </option>
            <option value="http://resimvideo.110mb.com/oyun/masa_hokeyi.htm">Masa Hokeyi
            </option>
            <option value="http://resimvideo.110mb.com/oyun/masa_tenisi.htm">Masa Tenisi
            </option>
            <option value="http://resimvideo.110mb.com/oyun/masada_gol.htm">Masada Gol
            </option>
            <option value="http://resimvideo.110mb.com/oyun/motor_yarisi.htm">Motor Yarışı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/motor_yolu.htm">Motor Yolu
            </option>
            <option value="http://resimvideo.110mb.com/oyun/ninja_kaplumbagalar.htm">Ninja Kaplımbağalar
            </option>
            <option value="http://resimvideo.110mb.com/oyun/on_cephe.htm">Ön Cephe
            </option>
            <option value="http://resimvideo.110mb.com/oyun/orman_gorevi.htm">Orman Görevi
            </option>
            <option value="http://resimvideo.110mb.com/oyun/passaparola.htm">Passaparola
            </option>
            <option value="http://resimvideo.110mb.com/oyun/penalti.htm">Penaltı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/penalti_kupasi.htm">Penaltı Kupası
            </option>
            <option value="http://resimvideo.110mb.com/oyun/portal.htm">Portal
            </option>
            <option value="http://resimvideo.110mb.com/oyun/renkli_baliklar.htm">Renkli Balıklar
            </option>
            <option value="http://resimvideo.110mb.com/oyun/robot_resim.htm">Renkli Balıklar
            </option>
            <option value="http://resimvideo.110mb.com/oyun/roma_patlat.htm">Roma Patlat
            </option>
            <option value="http://resimvideo.110mb.com/oyun/rovasata.htm">Rövaşata
            </option>
            <option value="http://resimvideo.110mb.com/oyun/ryu_vs_sagat.htm">Ryu Vs Sagat
            </option>
            <option value="http://resimvideo.110mb.com/oyun/sangay_dovuscusu.htm">Şangay Dövüşcüsü
            </option>
            <option value="http://resimvideo.110mb.com/oyun/sansli_toplar.htm">Şanslı Toplar
            </option>
            <option value="http://resimvideo.110mb.com/oyun/savunma_hatti.htm">Savunma Hattı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/siparisi_hatirla.htm">Siparişi Hatırla
            </option>
            <option value="http://resimvideo.110mb.com/oyun/kanyon_savunmasi.htm">Kanyon Savunması
            </option>
            <option value="http://resimvideo.110mb.com/oyun/sokak_basketbolu.htm">Sokak Basketbolu
            </option>
            <option value="http://resimvideo.110mb.com/oyun/son_dovus.htm">Son Dövüş
            </option>
            <option value="http://resimvideo.110mb.com/oyun/spartali.htm">Spartalı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/super_dovuscu.htm">Süper Dövüşcü
            </option>
            <option value="http://resimvideo.110mb.com/oyun/super_komando.htm">Süper Komando
            </option>
            <option value="http://resimvideo.110mb.com/oyun/super_mario.htm">Süper Mario
            </option>
            <option value="http://resimvideo.110mb.com/oyun/surat_duzenleme.htm">Surat Düzenleme
            </option>
            <option value="http://resimvideo.110mb.com/oyun/swat_3d.htm">Swat 3D
            </option>
            <option value="http://resimvideo.110mb.com/oyun/taksici.htm">Taksici
            </option>
            <option value="http://resimvideo.110mb.com/oyun/tasiyici_helikopter.htm">Taşıyıcı Helikopter
            </option>
            <option value="http://resimvideo.110mb.com/oyun/tekvando.htm">Tekvando
            </option>
            <option value="http://resimvideo.110mb.com/oyun/tenis.htm">Tenis
            </option>
            <option value="http://resimvideo.110mb.com/oyun/toplu_tetris.htm">Toplu Tetris
            </option>
            <option value="http://resimvideo.110mb.com/oyun/ucak_savasi.htm">Uçak Savaşı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/ucluk_basket.htm">Üçlük Basket
            </option>
            <option value="http://resimvideo.110mb.com/oyun/unlu_dovmece.htm">Ünlü Dövmece
            </option>
            <option value="http://resimvideo.110mb.com/oyun/uzak_dogu_dovusu.htm">Uzak Doğu Dövüşü
            </option>
            <option value="http://resimvideo.110mb.com/oyun/uzay_savasi.htm">Uzay Savaşı
            </option>
            <option value="http://resimvideo.110mb.com/oyun/vahsi_dovus.htm">Vahşi Dövüş
            </option>
            <option value="http://resimvideo.110mb.com/oyun/varmisin_yokmusun.htm">Varmısın Yokmusun?
            </option>
            <option value="http://resimvideo.110mb.com/oyun/voleybol.htm">Voleybol
            </option>
            <option value="http://resimvideo.110mb.com/oyun/yaklasan_halka.htm">Yaklaşan Halka
            </option>
            <option value="http://resimvideo.110mb.com/oyun/yapboz.htm">Yapboz
            </option>
            <option value="http://resimvideo.110mb.com/oyun/yapboz2.htm">Yapboz 2
            </option>
            <option value="http://resimvideo.110mb.com/oyun/yemekteyiz.htm">Yemekteyiz
            </option>
            <option value="http://resimvideo.110mb.com/oyun/yolunu_bul.htm">Yolunu Bul
            </option>
            <option value="http://resimvideo.110mb.com/oyun/yumrukla.htm">Yumrukla
            </option>
            <option value="http://resimvideo.110mb.com/oyun/zor_boks.htm">Zor Boks
            </option>
            <option value="http://resimvideo.110mb.com/oyun/zor_yollar.htm">Zor Yollar
            </option>
            </select></font></strong></font></td>
         </tr>
         <tr>
            <td>
            <p align="center"><b>
            <font face="Verdana" size="1" color="#C0C0C0">
            <a target="_blank" href="http://resimvideo.110mb.com/oyun/sitene_oyun_ekle.htm">
            <span style="text-decoration: none"><font color="#C0C0C0">Sitene
            Ekle</font></span></a></font></b></td>
         </tr>
      </table>
      </td>
      <td>&nbsp;</td>
   </tr>
   </table>

______________
Mesaj19.05.2009, 18:50 (UTC)    
Mesaj konusu:

Kodlar için sağolun !
Önceki mesajları göster:   


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