Day3-----clock

//------------------------通过获取系统时间,添加定时器和添0操作完成日期和时间的显示

<html>
<head><title>clock</title></head>
<style type="text/css">
body{font-size: 25px;vertical-align: top;}
</style>
<script type="text/javascript">
function addZero(str){
if(str<10) return ‘0‘+str;
else return str;
}
function updateTime(){
var date=new Date();
oImg=document.getElementsByTagName(‘img‘);
var str=‘‘+date.getFullYear()+addZero((date.getMonth()+1))+addZero(date.getDate())+date.getDay()+addZero(date.getHours())+addZero(date.getMinutes())+addZero(date.getSeconds());
for(i=0;i<oImg.length;i++){
oImg[i].src="pic/"+str[i]+".png";
}
}
window.onload=function(){
updateTime();
setInterval(updateTime,1000);
}
</script>
<body>
<img><img><img><img>/
<img><img>/
<img><img>
The <img>th
<br/>
<img><img>:
<img><img>:
<img><img>
</body>
</html>

时间: 2024-10-07 05:01:49

Day3-----clock的相关文章

Python实战作业-day3

作业需求: 作业1:将nginx日志通过python脚本处理取出TOP10的IP地址和访问次数通过html页面的形式展现出来 作业2:通过python函数的方式实现用户注册.登录脚本的实现 作业代码1: 1 #/usr/bin/env python 2 #coding:utf-8 3 4 import time 5 6 start = time.clock() 7 8 # 定义一个空字典 9 nginxip = {} 10 11 # 打开一个文件以readlines方式进行读取所有行 12 wi

Python自动化运维课程学习--Day3

本文为参加老男孩Python自动化运维课程第三天学习内容的总结. 大致内容如下: 1.文件操作 2.字符编码转码相关操作 3.函数 0.关于本文中所有运行Python代码的环境: --操作系统:Ubuntu 16.10 (Linux 4.8.0) --Python版本:3.5.2 python2.7.12 --Python IDE: PyCharm 2016.3.2 一.文件操作: 1.文件操作流程:以只读.写(覆盖写).追加写.读写.追加读写.二进制读写等模式打开文件 ==> 得到文件句柄,并

HDU 4256 The Famous Clock

The Famous Clock Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1399    Accepted Submission(s): 940 Problem Description Mr. B, Mr. G and Mr. M are now in Warsaw, Poland, for the 2012's ACM-ICPC

Clock Pictures

Clock Pictures 题目描述 You have two pictures of an unusual kind of clock. The clock has n hands, each having the same length and no kind of marking whatsoever. Also, the numbers on the clock are so faded that you can’t even tell anymore what direction i

时间管理命令date、clock、hwclock

date:日期 1.命令作用: 显示或设置系统时间和日期,需要特别说明的是,只有超级用户才能用date命令设置时间,一般用户只能用date命令显示时间. 2.使用方式: date [options] [+格式] 3.参数说明: -d<字符串>:显示字符串所指的日期与时间.字符串前后必须加上双引号. -s<字符串>:根据字符串来设置日期与时间.字符串前后必须加上双引号. -u:显示GMT. %y 年份(以00-99来表示). %Y 年份(以四位数来表示). %m 月份(以01-12来

编写Java应用程序。首先,定义一个时钟类——Clock,它包括三个int型 成员变量分别表示时、分、秒,一个构造方法用于对三个成员变量(时、分、秒) 进行初始化,还有一个成员方法show()用于显示时钟对象的时间。其次,再定义 一个主类——TestClass,在主类的main方法中创建多个时钟类的对象,使用这 些对象调用方法show()来显示时钟的时间。

package com.homework.zw; public class Clock { String hour; String minute; String second; Clock(String h,String m, String s) { hour=h; minute=m; second=s; } void show() { System.out.println("时间为:"+hour+"时"+minute+"分"+second+&q

Day3 String using Rules

//                                  **Day3 //                                  **for number in 1...10 //let closedRangeNumber = ["t","w","w"] //for i in 0..<closedRangeNumber.count //{ //       print(closedRangeNumber[i])

hdu5387 Clock(数学水题)

题目: Clock Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 709    Accepted Submission(s): 452 Problem Description Give a time.(hh:mm:ss),you should answer the angle between any two of the minute

HDU 多校 VIII 1008 clock

Clock Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 377    Accepted Submission(s): 200 Problem Description Give a time.(hh:mm:ss),you should answer the angle between any two of the minute.hou

QDemo - Analog clock模拟时钟学习并改进

调用函数setRenderHint(QPainter::Antialiasing,true),使绘制时边缘平滑,使用颜色浓度的变化,把图形的边缘转换为象素时引起的扭曲变形尽可能减少,在支持这一功能的平台或者绘图设备上得到一个平滑的边缘. QTimer类提供了定时器信号和单触发定时器. 它在内部使用定时器事件来提供更通用的定时器.QTimer很容易使用:创建一个QTimer,使用start()来开始并且把它的timeout()连接到适当的槽.当这段时间过去了,它将会发射timeout()信号. 我