码迷,mamicode.com
首页 > Web开发 > 详细

js关卡函数,throat函数实现,定时运行函数

时间:2018-06-30 14:45:48      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:arguments   mouse   set   console   call   on()   nts   window   UNC   

		function throat(callback,num){
			var timer = null;
			callback = callback || function(){};
			return function(){
				if(!timer){
					var that = this;
					var arg = arguments;
					timer = setTimeout(function(){
						callback.apply(that,arg);
						timer = null;
					},num);	
				}

			}
		}
		
		var throats = throat(function(e){
			console.log(e.screenX,e.screenY);
		},1000);
		
		window.onmousemove = function(e){
			throats(e);
		};

  

js关卡函数,throat函数实现,定时运行函数

标签:arguments   mouse   set   console   call   on()   nts   window   UNC   

原文地址:https://www.cnblogs.com/muamaker/p/9246681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!