我正在考虑在我最近的一个项目中使用ExtJS。但是,我正在努力如何在extJS中重现animate()和find()。我仍然是ExtJS的早期用户,因此我可能错过了一些东西。
这是我想在ExtJS中重现的片段。
$(element)
.animate({ width: 50 })
.find("img")
.animate({ width: 150 })
.end()
.find("h1")
.animate({ fontSize: 20 });
干杯, 米奇