Forum'da ara:
Ara


Yazar Mesaj
Mesaj21.11.2008, 18:03 (UTC)    
Mesaj konusu: geri sayım sayacı

arkadaslar ben askerlik için siteme kaç gün kaldığını gösteren bi sayac arıyorum fakat bulamadım yardım ederseniz seviniriömm simdiden tesekür ederim
Mesaj21.11.2008, 18:04 (UTC)    
Mesaj konusu:

Nasıl askerlıgın Bıtmesınu sayan gun mu ?
______________
Mesaj21.11.2008, 18:06 (UTC)    
Mesaj konusu:

eger benıım dedıgım gıbı ıse bu olanaksız.
______________
Mesaj21.11.2008, 18:07 (UTC)    
Mesaj konusu:

Hme Olanaksız Hmede Mantıksız
______________
Mesaj21.11.2008, 18:12 (UTC)    
Mesaj konusu:

ask-nett yazmış:
eger benıım dedıgım gıbı ıse bu olanaksız.




safanın altında 460 günden geri saymasını istiyorum ama bulamadfım bazı sitelerde var ama bulamadım
Mesaj21.11.2008, 18:14 (UTC)    
Mesaj konusu:

Merhaba..
Bence Onu Varya Hiçbiryerde Bulamazsınız Çünkü Yukarıda Sölediğim Gibi Çok Mantısız Bişey

______________
Mesaj21.11.2008, 18:24 (UTC)    
Mesaj konusu:

devkodservisi yazmış:
Merhaba..
Bence Onu Varya Hiçbiryerde Bulamazsınız Çünkü Yukarıda Sölediğim Gibi Çok Mantısız Bişey


Hayır.Bunu sağlayan bir servis vardı.Ama aklımda değil.Siz arayın bu mantıksız değil ve aradığınız zamanda bulunuyor.Bİr ara bende okulların açılmasına kaç gün kaldığını geri sayım sayacı servisi sayesinde siteme yansıtmıştım.Ben onu bulmaya çalışacağım.Bunu sağlayan bir servis var emin olabilirsiniz.
______________
balikesirerdek.tr.gg ve exevolium.tr.gg adresleri şahsıma aittir. Smile
Mesaj21.11.2008, 18:27 (UTC)    
Mesaj konusu:

Merhaba,
Valla Bne Şahsen Öle Buluyorum Sizinde Düşüncelerinize Saygı Duyarım
İyi Çalışmalar..[b]

______________
Mesaj21.11.2008, 18:30 (UTC)    
Mesaj konusu:

Kod:
<style style="text/css">

.lcdstyle{ /*Example CSS to create LCD countdown look*/
background-color:black;
color:yellow;
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 "Days" left
//Use arguments[1] to access "Hours" left
//Use arguments[2] to access "Minutes" left
//Use arguments[3] to access "Seconds" 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]+" days "+arguments[1]+" hours "+arguments[2]+" minutes "+arguments[3]+" seconds left until March 23, 2009 18:25:00"
}
else{ //else if target date/time met
var displaystring="Future date is here!"
}
return displaystring
}

function formatresults2(){
if (this.timesup==false){ //if target date/time not yet met
var displaystring="<span class='lcdstyle'>"+arguments[0]+" <sup>days</sup> "+arguments[1]+" <sup>hours</sup> "+arguments[2]+" <sup>minutes</sup> "+arguments[3]+" <sup>seconds</sup></span> left until this Christmas"
}
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"></div>
<br />
<div id="countdowncontainer2"></div>

<script type="text/javascript">

var futuredate=new cdtime("countdowncontainer", "March 23, 2009 18:25: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", "December 25, "+thischristmasyear+" 0:0:00")
christmas.displaycountdown("days", formatresults2)

</script>


Kusura bakmayın.O servisi bulamadım ama size geri sayım sayacı kodu buldum.Bu kod üzerinde değişiklik yaparak askerliğe kaç gün kaldığını gösterbilirsiniz...
______________
balikesirerdek.tr.gg ve exevolium.tr.gg adresleri şahsıma aittir. Smile
Mesaj21.11.2008, 19:24 (UTC)    
Mesaj konusu:

Sizin askerliğiniz bitmesine kalan süreyi mi göstermek istiyorsunuz sitenizde. Yoksa diğer kişilerin askere gittikleri tarihlere göre değişir:)
______________
Mesaj21.11.2008, 19:32 (UTC)    
Mesaj konusu:

htmlcentre yazmış:
Sizin askerliğiniz bitmesine kalan süreyi mi göstermek istiyorsunuz sitenizde. Yoksa diğer kişilerin askere gittikleri tarihlere göre değişir:)


Arkadaşım,kullanıcı askerliğine kalan süreği göstermeye çalışıyor...

Ben kodu verdim...Ama siz daha iyisini bulduysanız lütfen paylaşınız...

______________
balikesirerdek.tr.gg ve exevolium.tr.gg adresleri şahsıma aittir. Smile
Mesaj21.11.2008, 19:41 (UTC)    
Mesaj konusu:

Arkadaşım Bana Karşı cevaplar vermeye çalışma ben senin verdiğin koda itiraz etmedim verdiysen verdin daha ne söyleniyorsun? Mesaj yazmak için yazma.
______________
Mesaj22.11.2008, 10:29 (UTC)    
Mesaj konusu:

Arkadasım Ben buldum senın dedıgın gıbı Gunu Ay yıl Yazıyorsun Gerı sayıyor.

Kod:
Siteniz için , kendinzin belirleyeceği zamana kadar geri sayan bir sayaç
Kırmızı renkte yazılı olan yerler , değiştirebileceğiniz yerlerdir.

[color=red]-Parantez içindeki Yıl - Ay - Gün olarak belirlenmiştir.İstediğiniz tarihe kadar , yıl - ay - gün sıralaması ile yazabilirsiniz.[/color]

-Burdaki yazı ise; gerim sayım sayacının herhangi bir bölgesine eklemek istediğiniz yazıyı belli eder.Şu anki kodda yazı ; sayacın solunda bulunmaktadır.Bunu değiştirebilirsiniz.




<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>[color=red]Ask-NeTT.Tr.GG[/color]</title>
</head>

<body>


[color=red]<style type="text/css">
body
{
background:url('http://img299.imageshack.us/img299/9845/rasmus23er9.gif') no-repeat fixed center;
}
</style>[/color]


<p align="center">

<p align="center">


<p align="center">
<script language="JavaScript1.2">
function setcountdown(theyear,themonth,theday){
yr=theyear;mo=themonth;da=theday
}
//////////CONFIGURE THE COUNTDOWN SCRIPT HERE//////////////////
//STEP 1: Configure the countdown-to date, in the format year, month, day:
setcountdown[color=red](2007,1,13)[/color]

//STEP 2: Change the two text below to reflect the occasion, and message to display on that occasion, respectively
var occasion=" "
var message_on_occasion="1"

//STEP 3: Configure the below 5 variables to set the width, height, background color, and text style of the countdown area
var countdownwidth='375px'
var countdownheight='0px'
var countdownbgcolor='transparent'
var opentags='<b><font face="Verdana" style="font-size: 8pt" color="#006699">Rasmus23 - Wardom.Org.</font></b><font face="verdana" style="font-size: 8pt" color="#000000"> '
var closetags='</small></font>'

//////////DO NOT EDIT PASS THIS LINE//////////////////

var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","A ug","Sep","Oct","Nov","Dec")
var crosscount=''

function start_countdown(){
if (document.layers)
document.countdownnsmain.visibility="show"
else if (document.all||document.getElementById)
crosscount=document.getElementById&&!document.all? document.getElementById("countdownie") : countdownie
countdown()
}

if (document.all||document.getElementById)
document.write('<span id="countdownie" style="width:'+countdownwidth+'; background-color:'+countdownbgcolor+'"></span>')

window.onload=start_countdown


function countdown(){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
futurestring=montharray[mo-1]+" "+da+", "+yr
dd=Date.parse(futurestring)-Date.parse(todaystring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000) )/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000 ))%(60*1000))/1000*1)
//if on day of occasion
if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=1&&todayd==da ){
if (document.layers){
document.countdownnsmain.document.countdownnssub.d ocument.write(opentags+message_on_occasion+closeta gs)
document.countdownnsmain.document.countdownnssub.d ocument.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+message_on_occasion+ closetags
return
}
//if passed day of occasion
else if (dday<=-1){
if (document.layers){
document.countdownnsmain.document.countdownnssub.d ocument.write(opentags+"Occasion already passed! "+closetags)
document.countdownnsmain.document.countdownnssub.d ocument.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+" "+closetags
return
}
//else, if not yet
else{
if (document.layers){
document.countdownnsmain.document.countdownnssub.d ocument.write(opentags+dday+ " gün,"+dhour+"saat, "+dmin+" dakika,"+dsec+"sn"+occasion+closetags)
document.countdownnsmain.document.countdownnssub.d ocument.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+dday+ " <b>Gün,</b> " +dhour+ " Saat, " +dmin+ " Dakika, " +dsec+ "Sn" +occasion+closetags
}
setTimeout("countdown()",1000)
}
</script></p>




</body>

</html>

______________
Mesaj22.11.2008, 10:31 (UTC)    
Mesaj konusu:

Guzell Paylasım
______________
Mesaj22.11.2008, 10:34 (UTC)    
Mesaj konusu:

Yukarda Verdıgım kodda renker cıkmamış.Özür Diliyorum

-Parantez içindeki Yıl - Ay - Gün olarak belirlenmiştir.İstediğiniz tarihe kadar , yıl - ay - gün sıralaması ile yazabilirsiniz.

Degiştireceginiz YerLer Arrow Ask-NeTT Yazan Yeri Arrow (2007,1,13) Bu yazan Yeri

Kod:
<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>Ask-NeTT</title>
</head>

<body>


<style type="text/css">
body
{
background:url('http://img299.imageshack.us/img299/9845/rasmus23er9.gif') no-repeat fixed center;
}
</style>


<p align="center">

<p align="center">


<p align="center">
<script language="JavaScript1.2">
function setcountdown(theyear,themonth,theday){
yr=theyear;mo=themonth;da=theday
}
//////////CONFIGURE THE COUNTDOWN SCRIPT HERE//////////////////
//STEP 1: Configure the countdown-to date, in the format year, month, day:
setcountdown(2008,1,13)

//STEP 2: Change the two text below to reflect the occasion, and message to display on that occasion, respectively
var occasion=" "
var message_on_occasion="1"

//STEP 3: Configure the below 5 variables to set the width, height, background color, and text style of the countdown area
var countdownwidth='375px'
var countdownheight='0px'
var countdownbgcolor='transparent'
var opentags='<b><font face="Verdana" style="font-size: 8pt" color="#006699">Rasmus23 - Wardom.Org.</font></b><font face="verdana" style="font-size: 8pt" color="#000000"> '
var closetags='</small></font>'

//////////DO NOT EDIT PASS THIS LINE//////////////////

var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","A ug","Sep","Oct","Nov","Dec")
var crosscount=''

function start_countdown(){
if (document.layers)
document.countdownnsmain.visibility="show"
else if (document.all||document.getElementById)
crosscount=document.getElementById&&!document.all? document.getElementById("countdownie") : countdownie
countdown()
}

if (document.all||document.getElementById)
document.write('<span id="countdownie" style="width:'+countdownwidth+'; background-color:'+countdownbgcolor+'"></span>')

window.onload=start_countdown


function countdown(){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
futurestring=montharray[mo-1]+" "+da+", "+yr
dd=Date.parse(futurestring)-Date.parse(todaystring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000) )/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000 ))%(60*1000))/1000*1)
//if on day of occasion
if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=1&&todayd==da ){
if (document.layers){
document.countdownnsmain.document.countdownnssub.d ocument.write(opentags+message_on_occasion+closeta gs)
document.countdownnsmain.document.countdownnssub.d ocument.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+message_on_occasion+ closetags
return
}
//if passed day of occasion
else if (dday<=-1){
if (document.layers){
document.countdownnsmain.document.countdownnssub.d ocument.write(opentags+"Occasion already passed! "+closetags)
document.countdownnsmain.document.countdownnssub.d ocument.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+" "+closetags
return
}
//else, if not yet
else{
if (document.layers){
document.countdownnsmain.document.countdownnssub.d ocument.write(opentags+dday+ " gün,"+dhour+"saat, "+dmin+" dakika,"+dsec+"sn"+occasion+closetags)
document.countdownnsmain.document.countdownnssub.d ocument.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+dday+ " <b>Gün,</b> " +dhour+ " Saat, " +dmin+ " Dakika, " +dsec+ "Sn" +occasion+closetags
}
setTimeout("countdown()",1000)
}
</script></p>




</body>

</html>

______________
Önceki mesajları göster:   


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