javascript效果队列(链)
我正在为我的工作构建一个动画框架,并且我库存在队列或连锁效果部分,实际上我有这样的东西:
var Fx = {
animate: function(){...},
fadeIn: function(){...},
fadeOut: function(){...}
}
等等等等...所以,实际上我可以这样做:
$('#element').animate({options}).fadeIn({options});
而且效果非常好!但是 fadeIn 和 animate 同时执行,但我想做的是:
$('#element').chain().animate({options}).fadeIn({options});
所以它先执行 animate,然后执行 fadeIn
实际上我有类似的东西:
var Chain = function(element){
var target = element;
for (methodName in Fx) {
(function(methodName) {
Chain.prototype[methodName] = function() {
var args = Array.prototype.slice.call(arguments);
return this;
};
})(methodName);
}
}
Fx.chain = function(element){
return
}
我可以获得所有被调用的方法和那些东西,但我不知道如何将其推送到数组,甚至不知道如何调用第一个方法,因为我试图获取对数组的所有请求,并在每次效果完成时调用它。
我不使用 jQuery,正如我所说,我需要制作一个个性化的框架。
有什么想法吗?谢谢
im building an animation framework for my work, and im stock in the Queue or chain effects part, actually i have something like this:
var Fx = {
animate: function(){...},
fadeIn: function(){...},
fadeOut: function(){...}
}
etc etc... so, actually i can do:
$('#element').animate({options}).fadeIn({options});
and it works excellent! but the fadeIn and the animate execute at the same time but what i want to do, is something like:
$('#element').chain().animate({options}).fadeIn({options});
so it execute the animate first and then the fadeIn
actually i have something like:
var Chain = function(element){
var target = element;
for (methodName in Fx) {
(function(methodName) {
Chain.prototype[methodName] = function() {
var args = Array.prototype.slice.call(arguments);
return this;
};
})(methodName);
}
}
Fx.chain = function(element){
return
}
and i can get all the methods called and that stuff, but i dont know how to push that to an array or even call the first method, because im trying to get all requests to an array and just call it everytime if effects is done.
im not use jQuery, as i said i need to make a personalized framework.
Any idea pleeeasse??! Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用法
Usage