şu js kodunu editleyebilecek varmı? - Google Fan Webmaster Forum
Google Fan Webmaster Forum  
herşeyi sana yazdım

Geri git   Google Fan Webmaster Forum > Webmaster Genel > Webmaster Genel konular sorunlar
KEY
Kayıt ol Articles Sosyal Gruplar Forumları Okundu Kabul Et

Webmaster Genel konular sorunlar Webmaster genel konular sorular sorunlar

Cevapla
 
LinkBack Seçenekler
  1  
Alt 10-02-2010, 18:30:05
 
Standart şu js kodunu editleyebilecek varmı?

arkadaşlar bir countup sayaç kodu buldum. .. gün .. saat .. dakika .. saniye dir beraberiz şeklinde fakat kod bitek tarih istiyo benden 2009,08,20 gibi ve bu günden ileri sayıyor benim istedigim o günün belirledigim saatinden itibaren sayması.Yani tarih/saat/dakika şeklinde girmek istiyorum ve bu süreden ileri dogru saymasını istiyorum. böyle bir kod bilen yada aşağıdaki kodu istedigim şekilde editleyebilecek olan bir arkadaş varsa yardım edebilirmi lütfen..


KOD:

Kod:
<script language="JavaScript1.2">
function setcountup(theyear,themonth,theday){
yr=theyear;mo=themonth;da=theday
}
//////////CONFIGURE THE countup SCRIPT HERE//////////////////
//STEP 1: Configure the date to count up from, in the format year, month, day:
//This date should be less than today
setcountup(2009,08,20)
//STEP 2: Configure text to be attached to count up
var displaymessage=" Beraberiz "
//STEP 3: Configure the below 5 variables to set the width, height, background color, and text style of the countup area
var countupwidth='95%'
var countupheight='60px' //applicable only in NS4
var countupbgcolor='alt1'
var opentags='<span class="largefont">'
var closetags='</span>'
//////////DO NOT EDIT PASS THIS LINE//////////////////
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var crosscount=''
function start_countup(){
if (document.layers)
document.countupnsmain.visibility="show"
else if (document.all||document.getElementById)
crosscount=document.getElementById&&!document.all?document.getElementById("countupie") : countupie
countup()
}
if (document.all||document.getElementById)
document.write('<span id="countupie" style="width:'+countupwidth+'; background-color:'+countupbgcolor+'"></span>')
window.onload=start_countup
function countup(){
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
paststring=montharray[mo-1]+" "+da+", "+yr
dd=Date.parse(todaystring)-Date.parse(paststring)
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 (document.layers){
document.countupnsmain.document.countupnssub.document.write(opentags+dday+ " gün, "+dhour+" saat, "+dmin+" dakika ve "+dsec+" saniyedir sizlerleyiz... "+displaymessage+closetags)
document.countupnsmain.document.countupnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+dday+ " gün, "+dhour+" saat, "+dmin+" dakika ve "+dsec+" saniyedir "+displaymessage+closetags
setTimeout("countup()",1000)
}
</script>
Alıntı ile Cevapla
  2  
Alt 10-02-2010, 19:39:15
 
Standart

Basit:

//This date should be less than today
setcountup(2009,08,20)


Buradaki 2009,08.20 rakamini degisin istediginiz tarihi yazin ornek 2010,02,10 yapin bugunden baslar saymaya yalniz dikkat edin aynen yazildigi sekil yapacaksiniz virgulleri vs yoksa calismaz

Kolay gelsin
__________________
Alıntı ile Cevapla
  3  
Alt 10-02-2010, 20:42:14
 
Standart

kardeş sorum o degildi 2009,08,20 tarihini ben belirledim zaten benim istedigim başlayacagı saati de belirlemek
Alıntı ile Cevapla
  4  
Alt 10-02-2010, 21:13:10
 
Standart

PHP- Kodu:
      <script language="JavaScript1.2">
function 
setcountup(theyear,themonth,theday,thehour,theminute){
yr=theyear;mo=themonth;da=theday;ho=thehour;mi=theminute;
}
//////////CONFIGURE THE countup SCRIPT HERE//////////////////
//STEP 1: Configure the date to count up from, in the format year, month, day:
//This date should be less than today
setcountup(2010,02,10,21,8)
//STEP 2: Configure text to be attached to count up
var displaymessage=" Beraberiz "
//STEP 3: Configure the below 5 variables to set the width, height, background color, and text style of the countup area
var countupwidth='95%'
var countupheight='60px' //applicable only in NS4
var countupbgcolor='alt1'
var opentags='<span class="largefont">'
var closetags='</span>'
//////////DO NOT EDIT PASS THIS LINE//////////////////
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var 
crosscount=''
function start_countup(){
if (
document.layers)
document.countupnsmain.visibility="show"
else if (document.all||document.getElementById)
crosscount=document.getElementById&&!document.all?document.getElementById("countupie") : countupie
countup
()
}
if (
document.all||document.getElementById)
document.write('<span id="countupie" style="width:'+countupwidth+'; background-color:'+countupbgcolor+'"></span>')
window.onload=start_countup
function countup(){
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
paststring
=montharray[mo-1]+" "+da+", "+yr+" "+ho+":"+mi
alert
(paststring);
dd=Date.parse(todaystring)-Date.parse(paststring)
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 (
document.layers){
document.countupnsmain.document.countupnssub.document.write(opentags+dday" gün, "+dhour+" saat, "+dmin+" dakika ve "+dsec+" saniyedir sizlerleyiz... "+displaymessage+closetags)
document.countupnsmain.document.countupnssub.document.close()
}
else if (
document.all||document.getElementById)
crosscount.innerHTML=opentags+dday" gün, "+dhour+" saat, "+dmin+" dakika ve "+dsec+" saniyedir "+displaymessage+closetags
setTimeout
("countup()",1000)
}
</script> 
buyurun
__________________
Tufan | tfnyldrm
Alıntı ile Cevapla
  5  
Alt 11-02-2010, 19:07:49
 
Standart

çok saol kardeşim
Alıntı ile Cevapla
Cevapla


Bookmarks

Seçenekler

Yetkileriniz
Konu Acma Yetkiniz Yok
Cevap Yazma Yetkiniz Yok
Eklenti Yükleme Yetkiniz Yok
Mesajınızı Değiştirme Yetkiniz Yok

BB code is Açık
Smileler Açık
[IMG] Kodları Açık
HTML-Kodu Kapalı
Trackbacks are Kapalı
Pingbacks are Kapalı
Refbacks are Açık



Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 13:01:17.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.

“İnsanların en hayırlısı, insanlara faydalı olandır”. H.Ş

Hosting by Radore Hosting

İçerik sağlayacı paylaşım sitelerinden biri olan R10.net WebMaster Forum Adresimizde 5651 Sayılı Kanun’un 8. Maddesine ve T.C.K’nın 125. Maddesine göre TÜM ÜYELERİMİZ yaptıkları paylaşımlardan sorumludur. R10.net hakkında yapılacak tüm hukuksal Şikayetler adresi ile iletişime geçilmesi halinde ilgili kanunlar ve yönetmelikler çerçevesinde en geç 1 (Bir) Hafta içerisinde R10.net yönetimi olarak tarafımızdan gereken işlemler yapılacak ve Avukatlarımız size dönüş yapacaktır.
ARGUS_OK

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252