Chào bạn, cảm ơn bạn đã đến với diễn đàn Lập trình máy tính.

Để có thể thực hiện việc trao đổi, cũng như chia sẽ kiến thức bạn có cho diễn đàn, xin bạn vui lòng đăng nhập hoặc đăng ký vào diễn đàn.

Xin vui lòng đọc kỹ nội quy trước khi tham gia vào diễn đàn.

Xin cảm ơn
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

Quên mật khẩu

Top posters
nimgiaminh (118)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 
henrytran (68)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 
ruby (61)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 
lyngocquy (61)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 
Alone (47)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 
wsphuoc (24)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 
kuthanh115 (13)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 
Admin (8)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 
tommyteo (5)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 
nguyenmai (3)
Tạo file .js Vote_lcap1Tạo file .js Voting_bar1Tạo file .js Vote_rcap1 

Latest topics

Tạo file .js

2 posters

Go down

Tạo file .js Empty Tạo file .js

Bài gửi by nimgiaminh 7/12/2010, 7:54 pm

Mình có 1 đoạn code sau :

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,12,24)
//STEP 2: Change the two text below to reflect the occasion, and message to display on that occasion, respectively
var occasion="giáng sinh 2010"
var message_on_occasion="Merry Christmas!"
//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='40px'
var countdownbgcolor='transparent'
var opentags='<font face="Verdana"><large>'
var closetags='</large></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+'; 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+"Occasion already passed! "+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+"Occasion already passed! "+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à đến "+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, và "+dsec+" giây nữa là đến "+occasion+closetags
}
setTimeout("countdown()",1000)
}
</SCRIPT>
giờ mình muốn tạo được file .js, các bạn có thể chỉ mình được hok. please!!
nimgiaminh
nimgiaminh
Điều hành viên
Điều hành viên

Post : 118
Điểm thành tích : 243
Được cảm ơn : 1
Ngày tham gia : 25/06/2010
Tuổi : 30
Đến từ : laptrinhmaytinh.co.cc

Quản lý
Cảnh cáo:
Tạo file .js Left_bar_bleue0/200Tạo file .js Empty_bar_bleue  (0/200)

Về Đầu Trang Go down

Tạo file .js Empty Re: Tạo file .js

Bài gửi by nimgiaminh 11/12/2010, 7:03 pm

Hic, sao hok có ai chỉ mình hết vậy??? Bối rối
nimgiaminh
nimgiaminh
Điều hành viên
Điều hành viên

Post : 118
Điểm thành tích : 243
Được cảm ơn : 1
Ngày tham gia : 25/06/2010
Tuổi : 30
Đến từ : laptrinhmaytinh.co.cc

Quản lý
Cảnh cáo:
Tạo file .js Left_bar_bleue0/200Tạo file .js Empty_bar_bleue  (0/200)

Về Đầu Trang Go down

Tạo file .js Empty Re: Tạo file .js

Bài gửi by ruby 11/12/2010, 7:14 pm

Rảnh quá ha, bít rồi ai chỉ làm gì nữa. khinh thuong
ruby
ruby
Điều hành viên
Điều hành viên

Post : 61
Điểm thành tích : 106
Được cảm ơn : 12
Ngày tham gia : 29/06/2010
Tuổi : 35
Đến từ : vungtau city

Quản lý
Cảnh cáo:
Tạo file .js Left_bar_bleue1/200Tạo file .js Empty_bar_bleue  (1/200)

Về Đầu Trang Go down

Tạo file .js Empty Re: Tạo file .js

Bài gửi by nimgiaminh 12/12/2010, 7:22 am

Mình chỉ biết CSS thui mà, mình đâu có biết JavaScript đâu?
nimgiaminh
nimgiaminh
Điều hành viên
Điều hành viên

Post : 118
Điểm thành tích : 243
Được cảm ơn : 1
Ngày tham gia : 25/06/2010
Tuổi : 30
Đến từ : laptrinhmaytinh.co.cc

Quản lý
Cảnh cáo:
Tạo file .js Left_bar_bleue0/200Tạo file .js Empty_bar_bleue  (0/200)

Về Đầu Trang Go down

Tạo file .js Empty Re: Tạo file .js

Bài gửi by Sponsored content


Sponsored content


Về Đầu Trang Go down

Về Đầu Trang


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