HTML5 和CSS3共同实现的圆形秒表计时器功能 很精致的秒表动画,单击按钮后,即开始计时,指针开始走动,可以精确到0.001秒,在计时过程中可以暂停、重置,操作方便。而且本代码可直接从PC端移植到智能手机上使用。
2021-11-24 18:38:55 13KB HTML5_CSS3源码-网页应用
1
VC时钟程序,能够实现简单的钟表功能,并能计时有秒表功能!!
2021-11-21 00:57:07 509KB 时钟
1
VC 写的秒表计时器
2021-11-21 00:55:39 611KB VC 写的秒表计时器
1
这个项目是关于同时运行数字时钟,秒表和计时器的Arduino!
2021-11-20 20:10:50 186KB clocks display embedded led
1
主要为大家详细介绍了js实现秒表计时器,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
2021-10-31 23:59:21 38KB js秒表计时器 js秒表计时 js计时器
1
更新的计时器
2021-10-12 19:04:25 217KB 倒计时 秒表 计时器 vb.net
1
小巧的秒表计时器
2021-09-23 21:54:27 24KB 秒表
1
WPF 秒表 计时器 定时关机 到计时关机 public const uint WM_SYSCOMMAND = 0x0112; public const uint SC_MONITORPOWER = 0xF170; [DllImport("user32")] public static extern IntPtr SendMessage(IntPtr hWnd, uint wMsg, uint wParam, int lParam); /// /// 关闭显示器 /// public void CloseScreen() { IntPtr windowHandle = Process.GetCurrentProcess().MainWindowHandle; SendMessage(windowHandle, WM_SYSCOMMAND, SC_MONITORPOWER, 2); // 2 为关闭显示器, -1则打开显示器 } using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using System.Windows.Threading; using IniFiles; namespace StopWatch { /// /// shutdonwCtrl.xaml 的交互逻辑 /// public partial class shutdonwCtrl : UserControl { DispatcherTimer timer1; DispatcherTimer timer2; public shutdonwCtrl() { InitializeComponent(); timer1 = new DispatcherTimer(); timer1.Tick += new EventHandler(OnTimer1); timer1.Interval = new TimeSpan(0, 0, 1); timer2 = new DispatcherTimer(); timer2.Tick += new EventHandler(OnTimer2); timer2.Interval = new TimeSpan(0, 0, 1); btn_cancel.IsEnabled = false; cancel1.IsEnabled = false; } IniFile INI = new IniFile(IniFile.AppIniName); public void LoadIni() { cbo_hour.Text = INI.ReadString("定时关机", "时", "0"); cbo_Minute.Text = INI.ReadString("定时关机", "分", "0"); cbo_Second.Text = INI.ReadString("定时关机", "秒", "0"); cbo1.Text = INI.ReadString("到计时关机", "分", "0");
2021-09-16 14:59:16 283KB WPF 秒表 计时器 定时关机
1
aStopwatch是一款非常实用的桌面秒表计时器,可以用在多个活动现场,为用户提供了中间结果列表,让你对计时结果一目了然。软件的操作非常简单,用户随时随地可以用它来进行计时,快来下载体验吧。 软件特色:   1、软件的界面非常简洁;   2、软件的操作十分简单。
2021-09-13 18:19:36 112KB 系统工具
1
已经跑过了 没问题 而且每句语法都有汉字解释。。方便学习的人使用
2021-09-06 10:48:02 3KB 16F877 单片机
1