JS Digital Clock

Source: Internet
Author: User

<!doctype html>functionSet (obj) {if(obj<10){return' 0 ' +obj;}Elsereturn"+obj;} Window.onload=function(){varAimg=document.getelementsbytagname (' img ');functiontick () {varOdate=NewDate ();varStr=set (Odate.gethours ()) +set (Odate.getminutes ()) +Set (Odate.getseconds ()); for(vari=0;i<str.length;i++) {aimg[i].src= ' img/' +str[i]+ '. png ';}} Tick (); SetInterval (tick,1000);//alert (str);};</script> ::</body>

Timer Small Application +date object ...

The key is the processing of strings ....

The numbers obtained in the date object are not added to the string, and the custom set function changes the return value to a string and complements the number of bits by 0 ...

Re-process each img tag ... With cool png/jpg image, the effect is very good ....

JS Digital Clock

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.