1
我不習慣使用mooTools,它看起來很像Prototype JS。任何人都可以告訴我如何將這個綁定到每個類?mooTools綁定所有類
// This grabs all the classes
var mousy = $$('.hf-item-images');
// I don't think this is correct to apply this scroller to all the above classes
var scroll = new Scroller(mousy, {area: 100, velocity: 1});
// Mousemove
mousy.addEvent('mouseover', scroll.start.bind(scroll));
mousy.addEvent('mouseout', scroll.stop.bind(scroll));
這確實是不正確的:'VAR滾動=新滾輪(灰褐色,{面積:100,速度:1});' - 滾輪構造exepts單個元件:[滾輪](HTTP:// mootools的。 net/docs/more/Interface/Scroller) - 你想做什麼不清楚 - 如果你想將所有的穆斯林元素應用爲一個滾動器,只需構建一個簡單的類來做到這一點 - 你將需要調用Scroller元素 – Adidi 2013-03-25 19:59:16