首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > 其他 > 一个简单的定时器对象

一个简单的定时器对象

  • 资源大小:32.06 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: 简单 一个 定时器 对象

资 源 简 介

# Update: February 16, 2013 # **This project is now on Github:** https://github.com/jchavannes/jquery-timer --- # jQuery Timer # jQuery Timer adds the class $.timer(). --- ## $.timer() ## **$.timer( `[` _action_ `]` , `[` _time_ `]`, `[` _autostart_ `]` )** **action** A Function to be called by the timer. **time** A Number determining how long between actions in milliseconds. **autostart** A Boolean indicating whether to start the timer. Defaults to false. ### Usage ### ``` var timer = $.timer(function() { alert("This message was sent by a timer."); }); timer.set({ time : 5000, autostart : true }); ``` ``` timer.set(options); timer.play(reset); // Boolean. Defaults to false. timer.pause(); timer.stop(); // Pause and resets timer.toggle(reset); // Boolean. Defaults to false. timer.once(time); // Number. Defaults to 0. timer.isActive // Returns true if timer is running timer.remaining // Remaining time when paused ``` --- ### Demo ### ht

文 件 列 表

demo.html
jquery.min.js
jquery.timer.js

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
0.155444s