0

我在两个页面之间导航时遇到问题 [ home.php --> about.php ] 页面重新加载,而不是导航到慢速网络上的 about.php 页面。

我正在使用 Barba 预取

barba.use(barbaPrefetch);


barba.init({
  sync: true,
  preventRunning: true,
  
  // also increase the timeout to Prevent error

  timeout: 5000,


  transitions: [
    {
      name: "dpk-transition",
      async once({ next }) {
        smooth(next.container);
      },
      async leave({ next }) {
        const done = this.async();
        pageTransition();
        await Delay(1000);
        done();
      },

      beforeEnter({ next }) {
        init();
      },
    },
  ],

  views: [
    {
      namespace: "curtain",
      afterEnter({ next }) {
        curtainEffect();
      },
      beforeLeave({ current }) {
        destroyPlane();
      },
    },
  ],
});

这是我们在选择 3g 慢速网络模式时可以检查和查看的实时站点 http://brahmandjyotish.com/

4

0 回答 0