How to use the swup function in swup

To help you get started, we’ve selected a few swup examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Lightmatter / generic-django-conf / {{cookiecutter.repo_name}} / {{cookiecutter.repo_name}} / static_source / js / main.js View on Github external
function swupInit() {
  // currently these are run by css only. Must add js-plugin for more advanced transitions
  const swup = new Swup({
    plugins: [new SwupPreloadPlugin(), new SwupGaPlugin()],
  });

  swup.on('contentReplaced', () => {
    // insert any scripts here that break after page transitions or use the Head plugin from Swup
    init();
  });
}
github bridgetownrb / bridgetown / bridgetown-website / frontend / javascript / index.js View on Github external
}
      )
      if (!navActivated) {
        const button = event.currentTarget
        toggleMenuIcon(button)
        navActivated = true;
        setTimeout(() => { toggleMenuIcon(button); navActivated = false }, 6000)
      }
    })
  } else {
    mainEl = "#swup"
    containers = [mainEl, "#topnav"]
  }

  if(!window.matchMedia('(prefers-reduced-motion)').matches) {
    const swup = new Swup({
      containers: containers,
      plugins: [
        new SwupSlideTheme({mainElement: mainEl}),
        new SwupBodyClassPlugin(),
        new SwupScrollPlugin({animateScroll: false})
      ],

    })

    swup.on('contentReplaced', function() {
      addHeadingAnchors()
    })
  }

  addHeadingAnchors()
})

swup

Versatile and extensible page transition library for server-rendered websites

MIT
Latest version published 2 months ago

Package Health Score

87 / 100
Full package analysis

Popular swup functions