Я использую Mootools 1.3.1 и хочу анимировать div с помощью fx.morph, но в консоли отладки браузера я получаю
TypeError: Result of expression 'c' [null] is not an object.#
mootools-core-1.3.1.js:394
Я создал не скрипт mootools, но мне нужно добавить несколькобольше анимаций и функций с mootools, использующими эту версию.
Мой скрипт выглядит так:
var myEffect = new Fx.Morph("div.tile", {
duration: 'short',
transition: Fx.Transitions.Sine.easeOut
});
myEffect.start({
'height': 100, // Morphs the height from the current to 100px.
'width': 300 // Morphs the width from the current to 300px.
});