在 jQuery css, 和 animate 方法中自定义自己的属性

$.cssHooks.xxx = {
	get: function(elem, computed){
		...
	},

	set: function(elem, value){
		...
	}
};
	
$.fx.step.xxx = function(fx){
	...
};

引用

大于1.7版本可以不用写$.fx.step.xxx方法,在animate中也好用!

你可能感兴趣的:(JavaScript,jquery)