Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
饭吃了没。
重庆市开县
关注作者
(0)
收藏此代码
(98)
← 搜索栏背景(透明度)随滑动渐变
→ jQuery元素节点操作
相关代码
Timer
定时器
jQuery
定时器
定时器
特效
多
定时器
倒计时
定时器
的数字滚动
多
定时器
倒计时2
定时器
的暂停与恢复
Html
Css
Js
.show { height:400px; width:300px; background-color:black; color:white; }
$(function() { var timer = null; var timer2 = null; timer = new TimerSimulator(function(count) { $("#display").html(count); if(count == 20) { timer.stop(); timer2.start(); } }, 1000, "12"); timer.start(); timer2 = new TimerSimulator(function(count) { $("#display").html("t" + count); if(count == 20) { timer2.stop(); timer.start(); } }, 1000, "12"); }); /** * 定时模拟器 * * @version 2017-03-01 * * @returns */ function TimerSimulator(task, times, name) { /** 类名 */ this.imClassName = "TimerSimulator"; /** * 计数器 */ this.counter = 0; /** * taskId */ this.taskId = null; /** * 时间 */ this.times = times; /** * 任务 */ this.task = task; /**定时器名称*/ this.name = name; /** * 启动定时任务(模拟) */ this.start = function start() { var that = this; // 保存当前对象this that.counter++; that.taskId = setTimeout(function() { that.start(); }, that.times); if(that.task != null && typeof that.task === "function") { that.task(that.counter); } }; /** * 终止定时任务(模拟) */ this.stop = function() { if(this.taskId != null && this.taskId != undefined) { this.counter = 0; clearTimeout(this.taskId); } }; /** * 暂停定时任务(模拟) */ this.suspend = function() { if(this.taskId != null && this.taskId != undefined) { clearTimeout(this.taskId); } }; };
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.5.2
立即下载
Timer定时器
代码描述:jQuery Timer定时器
1
最新
发表评论
全部评论
暂时没有评论!
狂奔的蜗牛
0
2017/8/31 19:02:20
点个赞,网站的资源真不错
回复
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Timer定时器-jq22.com</title> <script src="https://libs.baidu.com/jquery/1.5.2/jquery.min.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号