使用(Barba.js)加载和导航新页面后脚本未加载

时间:2020-05-27 08:16:03

标签: javascript jquery performance barbajs

问题所在:

https://i.stack.imgur.com/AMOlF.gif

我的index.html一切正常。在第一个.onload页面上,所有图像都可以拖动到整个页面上。但是,当我转到ABOUT.html页面并返回到INDEX.html 时,我的脚本似乎不再起作用,并且我只能看到一个甚至无法拖动的图像。 / p>

我的项目在这里: https://codepen.io/cat999/project/editor/AEeEdg

我该如何解决问题?有人可以帮助我修改我的代码吗?

var winWidth = window.innerWidth,
    winHeight = window.innerHeight,
    threeWinHeight = winHeight*3;

$(window).on('resize', function(){
  winHeight = window.innerHeight,
  twiceWinHeight = winHeight*2;
});


$('.shape').each(function(){
  var topPos = Math.floor(Math.random()*1300),

      //BE CAREFUL 7000px is less then total body height or  CAUSING OVERFLOW
      leftPos = Math.floor(Math.random() * winWidth);
  $(this).css('top', topPos + 'px');
  $(this).css('left', leftPos + 'px');
});




Draggable.create('.shape', {
  //type:"rotation",
  bounds: '.section-2',
  edgeResistance:0.65,
  throwProps:true,
});



var number = Math.floor((Math.random() *15) + 2);
var number2 = Math.floor((Math.random() * 0) + -15);
var number3 = Math.floor((Math.random() * 0) + 15);
var number4 = Math.floor((Math.random() * 0) + 6);
$(".shape--circle").css("transform", "rotate(" + number2 + "deg)");
$(".shape--square").css("transform", "rotate(" + number3 + "deg)");
$(".shape--circle-2").css("transform", "rotate(" + number4 + "deg)");

我尝试在barba.init函数内的main.js文件中添加以下JS代码,但没有用:

  views: [{
        namespace: 'home-section',
        beforeEnter({ next }) {

        // load  script

        let script = document.createElement('script');
script.src = 'https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.4/TweenMax.min.js'; 
script.src = 'https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.4/utils/Draggable.min.js';
script.src = 'https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/ThrowPropsPlugin.min.js'; // location of your draggable js file that is responsible for that image loading and dragging functionality

        next.container.appendChild(script);
        }, 
    }],

`````


  [1]: https://i.stack.imgur.com/AMOlF.gif

1 个答案:

答案 0 :(得分:1)

您可以在引导您进入新页面的过渡之后指定 barba 在进入之前可以执行的操作。

例如,如果您想执行一个脚本或只是一段代码到下一个转换,您可以使用它。

barba.init({
  views: [{
    namespace: 'index',
    beforeLeave(data) {
      // do something before leaving the current `index` namespace
    }
  }, {
    namespace: 'contact',
    beforeEnter(data) {
      // do something before entering the `contact` namespace
    }
  }]
});

您可以在您创建和使用 barba 的每个 HTML 文档中找到“命名空间”标签。