gpt4 book ai didi

meteor - meteor 中的页面转换?

转载 作者:行者123 更新时间:2023-12-04 23:50:26 27 4
gpt4 key购买 nike

我有一个 meteor 移动应用程序在结构上工作;我真的需要将 View 与一些页面转换拼接在一起。

我看了iron-transitioner项目,但看起来开发已经停止? (最后一次提交 6 个月前,仍在使用 Spark 引擎)

我还查看了一些 UI '移动框架'(Ratchet、Framework7),但我无法让它们与 meteor 服务器很好地配合使用。

我想知道是否有人知道我可以尝试的任何其他简单(左/右)页面转换包/脚本?这只是给我的用户界面一些(预期的)光滑度。

最佳答案

一些带有 IronRouter 的 jQuery 怎么样?

Router.configure({
load: function() {
$('.content').animate({
left: "-1000px",
scrollTop: 0
}, 400, function() {
$(this).animate({ left: "0px" }, 400);
});
});

为了在页面之间平滑过渡,我还使用简单的淡入/淡出。
Router.configure({
load: function() {
$('html, body').animate({
scrollTop: 0
}, 400);
$('.content').hide().fadeIn(800);
}
});

关于meteor - meteor 中的页面转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23679204/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com