CHINH PHỤC
Bạn có muốn phản ứng với tin nhắn này? Vui lòng đăng ký diễn đàn trong một vài cú nhấp chuột hoặc đăng nhập để tiếp tục.
Đăng nhập

Ghi nhớ
Latest topics
» Tôi sẽ đỗ đại học!
by vi01239984564 26/8/2024, 7:41 pm

» 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


sửa dum e code tính thời gian thi đại hoc

4 posters

Go down

sửa dum e code tính thời gian thi đại hoc Empty sửa dum e code tính thời gian thi đại hoc

Bài gửi by toantainb 29/5/2010, 8:03 pm

Code:
<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(2010,7,4)
//STEP 2: Change the two text below to reflect the occasion, and message to display on that occasion, respectively
var occasion="<br> <img src=http://i69.servimg.com/u/f69/12/89/57/83/yociex12.gif> Tất cả cố lên nào <img src=http://i69.servimg.com/u/f69/12/89/57/83/yociex12.gif>"
var message_on_occasion="Giờ là lúc gặt hái kết quả đây. <br> Chúc các cậu làm bài tốt. Bình tĩnh + tự tin max xi mum nào :D"
//STEP 3: Configure the below 5 variables to set the width, height, background color, and text style of the countdown area
var countdownwidth='600px'
var countdownheight='100px'
var countdownbgcolor='#ffffff'
var opentags='<font face="Verdana" color="red" size=5><b><large>'
var closetags='</large></b</font>'
//////////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_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+';"></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+"Occasion already passed! "+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+"Xong rồi. Bỏ mọi việc qua 1 bên & làm 1 bữa nhỉ :D"+closetags
return
}
//else, if not yet
else{
if (document.layers){
document.countdownnsmain.document.countdownnssub.document.write(opentags+"Còn, "+dday+ " ngày, "+dhour+" giờ, "+dmin+" phút, và "+dsec+" giây nữa là chiến đấu rồi"+occasion+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+"Thi Đại học - 4/7/2010 <br> Chỉ còn "+dday+ " ngày, "+dhour+" giờ, "+dmin+" phút, và "+dsec+" giây nữa là chiến đấu rồi"+occasion+closetags
}
setTimeout("countdown()",1000)
}

</script>


ai xem hộ e với
mới hôm wa còn bt sao nay lại hiển thị còn 528 ngày nữa
jup e na
toantainb
toantainb
CPMember
CPMember

No choice Ngày đăng ký : 16/04/2010
Số bài : 67
CPP : 6
Châm ngôn sống : het minh

http://www.buonlam.tk

Về Đầu Trang Go down

sửa dum e code tính thời gian thi đại hoc Empty Re: sửa dum e code tính thời gian thi đại hoc

Bài gửi by [M]r[K]id 29/5/2010, 8:21 pm

Vẫn BT Mà bạn.
Iu Cầu Lock topic
[M]r[K]id
[M]r[K]id
CPMember
CPMember

No choice Ngày đăng ký : 21/05/2010
Số bài : 469
CPP : 390
Châm ngôn sống : I'm Kid

http://7a6pro.forumotion.net

Về Đầu Trang Go down

sửa dum e code tính thời gian thi đại hoc Empty Re: sửa dum e code tính thời gian thi đại hoc

Bài gửi by Việt 29/5/2010, 8:24 pm

xem lại giờ hệ thống ý !
nhìn dưới góc phải màn hình xem Phù...!
Việt
Việt
CPYellowMember
CPYellowMember

Chrome PhpBB3
Ngày đăng ký : 30/09/2009
Số bài : 2033
CPP : 4255
Châm ngôn sống : ...

http://c3zone.forumj.net/

Về Đầu Trang Go down

sửa dum e code tính thời gian thi đại hoc Empty Re: sửa dum e code tính thời gian thi đại hoc

Bài gửi by Mr.FR 29/5/2010, 11:56 pm

nó tính theo cái giờ trên máy ák bác :~X~(:
Mr.FR
Mr.FR
CPPurpleMember
CPPurpleMember

Chrome PhpBB2
Ngày đăng ký : 07/10/2008
Số bài : 1251
CPP : 911
Châm ngôn sống : thất bại chỉ khi mày từ bỏ :D

http://www.copycopypaste.info

Về Đầu Trang Go down

sửa dum e code tính thời gian thi đại hoc Empty Re: sửa dum e code tính thời gian thi đại hoc

Bài gửi by Sponsored content


Sponsored content


Về Đầu Trang Go down

Về Đầu Trang

- Similar topics

 
Permissions in this forum:
Bạn không có quyền trả lời bài viết