Đăng nhập
Latest topics
» Tôi sẽ đỗ đại học!by NgocPRO 6/11/2024, 8:37 am
» Kỷ niệm xưa của chúng ta
by nightWalker 9/2/2024, 6:49 pm
» Bị lệch khung cần người giúp đỡ
by webhuy28 7/10/2021, 10:34 pm
» [HỎI ĐÁP] Danh sách bạn bè không thể hiển thị
by anhdaodaica1 2/10/2021, 10:04 pm
» [HỎI ĐÁP] Thông tin tài khoản không thể lưu thay đổi
by anhdaodaica1 2/10/2021, 6:05 am
» Phim bố già full
by huy.pc52 24/8/2021, 12:20 am
» Xin code Box HTML cho Forumvi
by Larva 1/7/2021, 12:57 pm
» Hello Anh Em Chinh phục
by HoàngTửNaivip5p 28/5/2021, 5:03 am
» Trang chủ tin tức cập nhật HOT 2016
by kenbi05 1/1/2020, 11:02 pm
» Không Dang9 bài viết = hình ảnh được
by huy.pc52 30/11/2019, 10:52 am
» CHÚC ANH EM NĂM MỚI VUI VẺ TRÀNG ĐẦY HẠNH PHÚC
by sps.kủn 12/2/2019, 1:16 pm
» Skin CNTT-K3 2015 (Full Mod)[✔]
by kenbi05 6/7/2018, 12:30 am
» baivong, handsome,....
by sps.kủn 29/6/2018, 1:54 pm
» [SHARE] SKIN ĐHFM.V7 @PUNBB
by tonyhoaivu 2/5/2018, 2:37 pm
» Share Skin Xanh Dương Cùi Bắp
by tonyhoaivu 28/4/2018, 5:57 pm
» Xin Skin http://v1.hotrofm.net/
by tonyhoaivu 28/4/2018, 5:45 pm
» Xin Skin Rao Vặt
by tonyhoaivu 15/4/2018, 12:07 pm
» Làm Sao Để Xóa Khung Này
by tonyhoaivu 14/4/2018, 7:18 pm
» [Lập nhóm]Lập nhóm fm
by vietkanpy 31/3/2018, 11:53 am
» [Help] về server úp ảnh của phutu [✔]
by baivong 17/3/2018, 10:18 pm
» Đừng khóc cho “tôi – Chinh Phục!”…
by AnHung 27/2/2018, 5:33 pm
» [Share] Skin Diendandaihoc.com [ Punbb ] [✔]
by Lu Mờ 13/2/2018, 7:28 pm
» Mời mấy thím vào groups Forumotion Việt Nam.
by dang02315 13/2/2018, 12:40 am
» Có thể làm các kiểu giao diện được không?
by Lu Mờ 9/2/2018, 3:40 pm
» ltns chinhphuc.info
by Shinichi Kudo 27/1/2018, 2:27 am
Top posting users this week
No user |
Cho mình xin code đếm ngược thời gian
+2
bt2010
.:]
6 posters
Trang 1 trong tổng số 1 trang
Cho mình xin code đếm ngược thời gian
Gần Noel rồi...mà ko biết gắn code...ai có cho mình xin nha. Nhớ chỉ chỗ gắn ngày giờ... + chỗ để gắn code trong ACP lun
@ Ex: e thấy 4r của anh cóa ák...mà pm riêng k được ..nênmần lun cái topic Cho e lun cái yh đi nh:"> .
cảm ơn các anh các chị các bà con trước nghen
@ Ex: e thấy 4r của anh cóa ák...mà pm riêng k được ..nênmần lun cái topic Cho e lun cái yh đi nh:"> .
cảm ơn các anh các chị các bà con trước nghen
Re: Cho mình xin code đếm ngược thời gian
<style style="text/css" type="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">
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="Thế là chỉ còn"
}
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> <br><br> Đến ngày hiến chương nhà giáo Việt Nam"
}
else{ //else if target date/time met
var displaystring="" //Don't display any text
alert("Ngày nhà giáo Việt Nam") //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()>=10 && new Date().getDate()>20)? currentyear+1 : currentyear
var christmas=new cdtime("countdowncontainer2", "November 20, "+thischristmasyear+" 0:0:00")
christmas.displaycountdown("days", formatresults2)
</script>
Đâý là đoạn code đếm ngược thời gian - Chèn code vào ACP-> Display->Homepage -> Generalities ->Homepage message
Là Admin thì phải tự nghiên cứu cách sưã để nâng cao tay nghề- mình cũng vậy thôi -> chịu khó từng ngày thôi
Demo: http://violet.vn/thpt-bacbinh-binhthuan/
.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">
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="Thế là chỉ còn"
}
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> <br><br> Đến ngày hiến chương nhà giáo Việt Nam"
}
else{ //else if target date/time met
var displaystring="" //Don't display any text
alert("Ngày nhà giáo Việt Nam") //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()>=10 && new Date().getDate()>20)? currentyear+1 : currentyear
var christmas=new cdtime("countdowncontainer2", "November 20, "+thischristmasyear+" 0:0:00")
christmas.displaycountdown("days", formatresults2)
</script>
Đâý là đoạn code đếm ngược thời gian - Chèn code vào ACP-> Display->Homepage -> Generalities ->Homepage message
Là Admin thì phải tự nghiên cứu cách sưã để nâng cao tay nghề- mình cũng vậy thôi -> chịu khó từng ngày thôi
Demo: http://violet.vn/thpt-bacbinh-binhthuan/
Re: Cho mình xin code đếm ngược thời gian
Trang web của bt2010 đẹp quá, rất hợp với mình, không biết có bắt chước được hay không nữa. Nhưng sao code đồng hồ đếm ngược dài thế nhỉ. Mình lấy ở http://www.crazyprofile.com nó có chút xíu:
- Code:
<embed src='http://www.crazyprofile.com/countdown/countdown_new.swf' width='260' height='165' FlashVars='futyr=2009&futmnth=11&futday=25&mesgtxt=Sap den noel roi &bgcl=blue&dsgn=design2' quality='high' wmode='transparent' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'/></embed>
Re: Cho mình xin code đếm ngược thời gian
em có code này xài từ năm ngoái
- Code:
<!-- dem_nguoc -->
<div align="center"><font color="red" size="4.5">
<b>
<script>
function setcountdown(theyear,themonth,theday){
yr=theyear;mo=themonth;da=theday
}
setcountdown(2009,12,24)
var occasion="Giáng sinh 2009"
var message_on_occasion="Chào "
var countdownwidth='480px'
var countdownheight='20px'
var countdownbgcolor='lightblack'
var opentags='<font face="Verdana"><small>'
var closetags='</small></font>'
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","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.document.write(opentags+message_on_occasion+closetags)
document.countdownnsmain.document.countdownnssub.document.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.document.write(opentags+"Chúc các bạn Giáng Sinh an lành hạnh phúc !"+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+"Chúc bạn Giáng sinh an lành hạnh phúc !"+closetags
return
}
//else, if not yet
else{
if (document.layers){
document.countdownnsmain.document.countdownnssub.document.write(opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds left until "+occasion+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML="Còn " +opentags+dday+ " ngày, "+dhour+" Giờ, "+dmin+" Phút "+dsec+" Giây nữa là đến "+occasion+closetags
}
setTimeout("countdown()",1000)
}
</script></b></font></div>
<!-- end.dem_nguoc -->
Re: Cho mình xin code đếm ngược thời gian
hê hê ! viewsuorce được code đếm ngược của anh Ex rồi ... keke
http://demo1.yourme.net/
http://demo1.yourme.net/
Re: Cho mình xin code đếm ngược thời gian
http://www.dynamicdrive.com/dynamicindex6/dhtmlcount.htm
Đây là trang mình lấy code về rồi sưả lại đó.
<embed src='http://www.crazyprofile.com/countdown/countdown_new.swf' width='260' height='165' FlashVars='futyr=2009&futmnth=11&futday=25&mesgtxt=Sap den noel roi &bgcl=blue&dsgn=design2' quality='high' wmode='transparent' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'/></embed>
Đây là code nhúng từ một trang khác - tức là trang đó teo thì code mình cũng teo (mình nghĩ thế, hihihi)
Còn code cuả mình và cuả bạn VietK là code nguồn - tức là không phụ thuộc vào trang nào cả.
Đây là trang mình lấy code về rồi sưả lại đó.
<embed src='http://www.crazyprofile.com/countdown/countdown_new.swf' width='260' height='165' FlashVars='futyr=2009&futmnth=11&futday=25&mesgtxt=Sap den noel roi &bgcl=blue&dsgn=design2' quality='high' wmode='transparent' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'/></embed>
Đây là code nhúng từ một trang khác - tức là trang đó teo thì code mình cũng teo (mình nghĩ thế, hihihi)
Còn code cuả mình và cuả bạn VietK là code nguồn - tức là không phụ thuộc vào trang nào cả.
Re: Cho mình xin code đếm ngược thời gian
theo mình nghĩ vấn đề này có nhiều giải pháp, VK dùng js còn anh Hùng dùng flash, mỗi loại có 1 ưu điểm riêng (mình nghĩ dùng flash đẹp hơn).bt2010 đã viết:http://www.dynamicdrive.com/dynamicindex6/dhtmlcount.htm
Đây là trang mình lấy code về rồi sưả lại đó.
<embed src='http://www.crazyprofile.com/countdown/countdown_new.swf' width='260' height='165' FlashVars='futyr=2009&futmnth=11&futday=25&mesgtxt=Sap den noel roi &bgcl=blue&dsgn=design2' quality='high' wmode='transparent' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'/></embed>
Đây là code nhúng từ một trang khác - tức là trang đó teo thì code mình cũng teo (mình nghĩ thế, hihihi)
Còn code cuả mình và cuả bạn VietK là code nguồn - tức là không phụ thuộc vào trang nào cả.
Còn "trang đó" - nó là 1 trang đa dịch vụ nên chắc chắn nó không "teo" trước Giáng sinh năm nay rồi !!
Re: Cho mình xin code đếm ngược thời gian
Nhưng nếu dùng theo cách cuả anh Hùng thì chỉ cho giáng sinh thôi chứ ngày lễ khác mình có can thiệp được không? Mình chưa thử
Re: Cho mình xin code đếm ngược thời gian
dĩ nhiên can thiệp được | bạn chú ý code sẽ thấy ngày tháng và lời nhắn, chỉ cần sửa là ok !
Re: Cho mình xin code đếm ngược thời gian
Code đếm Xuôi nè (Có đếm ngược, thêm đếm xuôi cho nó Hợp ) :cryl:
- Code:
<style style="text/css">
.dcountstyle{ /*Example CSS to style count up output*/
font: bold 16px Arial;
padding: 3px;
}
.dcountstyle sup{ /*Example CSS to style count up output*/
font-size: 90%
}
</style>
<script type="text/javascript">
function dcountup(startingdate, baseunit){
this.currentTime=new Date()
this.startingdate=new Date(startingdate)
this.timesup=false
this.baseunit=baseunit
this.start()
}
dcountup.prototype.oncountup=function(){} //default action for "oncountup"
dcountup.prototype.start=function(){
var thisobj=this
this.currentTime.setSeconds(this.currentTime.getSeconds()+1)
var timediff=(this.currentTime-this.startingdate)/1000 //difference btw target date and current date, in seconds
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"
}
var result={days: dayfield, hours:hourfield, minutes:minutefield, seconds:secondfield}
this.oncountup(result)
setTimeout(function(){thisobj.start()}, 1000) //update results every second
}
</script>
<div id="cpcontainer"> </div>
<script type="text/javascript">
//SYNTAX: myvariable=new dcountup(past_date_and_time_string, "baseunit")
var princewedding=new dcountup("October 16, 1983 13:30:00", "days")
princewedding.oncountup=function(result){
//result is an object containing the current count up date/time, updated every second
//Available properties: result["days"], result["hours"], result["minutes"], and result["seconds"]
var mycountainer=document.getElementById("cpcontainer")
mycountainer.innerHTML="MaxF đã Sống được: <br /><span class='dcountstyle'>"+result['days']+" ngày "+result['hours']+" giờ "+result['minutes']+" phút "+result['seconds']+" giây</span>"
}
</script>
Re: Cho mình xin code đếm ngược thời gian
MaxF thấy nên sửa mấy dòng tương tự đoạn
- Code:
<sup>days</sup>
Re: Cho mình xin code đếm ngược thời gian
Thêm sup là để những con số to lên để gây chú ý hơn đó anh. Chứ để bằng phẳng thì trông không đẹp lắm .
Re: Cho mình xin code đếm ngược thời gian
Vậy ah, anh lại thấy để bình cho đẹp...
Chắc Già rồi, cái gì Bình Bình là thích :cryl:
Chắc Già rồi, cái gì Bình Bình là thích :cryl:
Similar topics
» Code đếm ngược thời gian
» [Thắc mắc] code Thời gian cuối CP[✔]
» sửa dum e code tính thời gian thi đại hoc
» [Code] Đếm ngược thời gian!
» Xin code thời gian truy cập
» [Thắc mắc] code Thời gian cuối CP[✔]
» sửa dum e code tính thời gian thi đại hoc
» [Code] Đếm ngược thời gian!
» Xin code thời gian truy cập
Trang 1 trong tổng số 1 trang
Permissions in this forum:
Bạn không có quyền trả lời bài viết