我正在尝试使用mooTools Fx来缩放div的背景图像。我跟着david welshs article进行自定义转换。我的mooTools / js技能非常基础,所以
另外我想知道是否有可能合并使用正弦转换(例如它看起来不像)。
以下是我尝试的内容:http://jsfiddle.net/q2GQ7/
使用Javascript:
$$('#program a').each(function(item, index){
item.store('BackgroundZoomer', new Fx({ duration: 250}));
});
$$('#program a').each(function(item, index){
item.retrieve('BackgroundZoomer').set = function(value) {
var style = 200+value + "px " +200+value + "px";
this.setStyle('background-size', style);
};
});
$$('#program a').each(function(item, index){
addEvents({
'mouseenter': function(){
item.retrieve('BackgroundZoomer').start(0, 200); },
'mouseleave': function(){
item.retrieve('BackgroundZoomer').cancel();}
});
});
答案 0 :(得分:4)
由于这看起来很有趣,我用MooTools的方式编写了一些代码[tm]来帮助你入门。我通常不这样做,因为它与SO风格相反,但我想念MooTools。所以... ...
http://jsfiddle.net/dimitar/dNd3H/
(function(){
'use strict';
var Fx = this.Fx;
// keep the set override private
Fx.Background = new Class({
Extends: Fx,
initialize: function(element, options){
this.element = element;
this.parent(options);
},
set: function(value, u){
u = this.options.unit;
this.element.setStyle('background-size', [value, u, ' ', value, u].join(''));
return this;
}
});
document.getElements('#program a').each(function(item) {
item.store('fxb', new Fx.Background(item, {
duration: 250,
link: 'cancel',
unit: '%' // change to px or em
}));
});
document.id('program').addEvents({
'mouseover:relay(a)': function(){
// 100% to 200%
this.retrieve('fxb').start(100,200);
},
'mouseout:relay(a)': function(){
// 200% back to 100%
this.retrieve('fxb').start(200,100);
}
});
}.call(this));
options
对象,因此可以在集合中使用unit
等。范围将正确绑定到Fx
实例,而不是像David的演示中那样的元素。查看Fx.Tween.js源代码。通常你的类扩展Fx.Tween,这个修复是一种反模式/ hack,Fx实例化直接根本不常见:)你真的应该扩展
Fx.CSS.Parser
和Element.Styles
属性而不是能够读取/解析您需要的内容,而Fx将与任何其他属性一样工作。