You are browsing the docs for swup 3.
Click here for the latest version.

swup v3 swup v3 Common Issues
GitHub swup on GitHub

Common Issues

Overusing the transition-* class

Swup waits for any element with a transition-[something] class to finish the transition. While there is an unlimited number of elements that can have this class, only one is actually required. People tend to use a class with a format of transition-[something] on any element that is animating, which is not necessary and often leads to bugs. For example, misspelled class name would lead to styles not being defined for that element (see issue above).

It is recommended to use one element with class with a format transition-[something] to set a transition duration for swup and make any other transition happen independently.

.fade {
  transition: 0.4s;
  opacity: 1;
}
html.is-animating .fade {
  opacity: 0;
}

The styles in the example above will still animate the element for the transition, but swup won't wait for the elements to finish the transition. If the main transition (the transition of the one element with class transition-*) has at least similar timing to all the others, there should be no issue with using this approach.

Libraries using transition-* classes

Some other libraries can use a class in a form of transition-* for its own functionality. A great example of such a third party code is the Foundation framework.

This can break swup, as swup will wait for all the elements with such class to finish transition before proceeding in the page transition lifecycle and get stuck.

In such a case, making the animationSelector option more strict fixes the issue.

var swup = new Swup({
  animationSelector: '[class*="swup-transition-"]'
});
.swup-transition-fade {
  transition: 0.4s;
  opacity: 1;
}
html.is-animating .swup-transition-fade {
  opacity: 0;
}
<main id="swup" class="swup-transition-fade">...</main>

Escaped characters inside <noscript>

Some browsers (Safari, older versions of IE) escape characters inside of noscript tags when placed into the DOM with element.innerHTML as swup does. That is usually not an issue unless the contents of the noscript tags are further used in your JavaScript code. If that's the case, the characters need to be unescaped with regex replace, a pretty creative way using textarea mentioned in this thread or in any other way.

See this issue for more information.

Scroll control offset

In certain cases, there is a need to compensate for specific layout features (fixed header, etc.) by scrolling to referenced elements with some offset. swup scroll control does not have such an option, but there are other ways to solve this:

Using a separate element inside of the section as an anchor. As it's a separate element, it can be positioned relative to its parent, and so, compensate for the fixed header.

<section>
  <div id="need-to-scroll-here" class="anchor"></div>
  ...
</section>
.anchor {
  position: relative;
  top: -100px; /* your offset */
}

The good thing about this approach is that it will lead to the correct place even without JS and you can change the offset with a simple CSS media query.

Not so good thing is that some IE versions will ignore a link leading to that anchor if its parent has overflow: hidden. That can be fixed with something like:

// run only for IE
document.querySelectorAll('[href^="#"]').forEach((link) => {
  link.addEventListener('click', (event) => {
    document.documentElement.scrollTop =
      Math.round(document.querySelector(event.target.hash).getBoundingClientRect().top) +
      window.pageYOffset;
  });
});

Another option is to disable swups scroll control and use it's scrollTo method and swup events to scroll when you want, where you want... or rewrite the scrollTo method altogether to include your offset.

Since search engines are improving and starting to simulate actual devices browsing the websites, canonical link tag in head (which is not replaced during transition by default) can cause site to be indexed incorrectly.

<link rel="canonical" href="..." />

The head-plugin could help solve that, as well as deleting the tag from head. There are also other, more reliable alternatives to make search engines index your site correctly, like sitemap.

See this issue for more information.

Improving accessibility

Since we're dynamically re-rendering parts of the page, it's ideal to add aria-live="polite" attribute to the swup containers for screen readers. Unfortunately, this attribute cannot be added dynamically after page load to work, so it needs to be added manually.

Sending partial response for swup

Swup can receive only partial response with containers, to make the payload of requests smaller. However, note that there can be unexpected behaviour in such situations as described here for Ctrl+Shift+T (reopening recently closed tab). This can likely be prevented by using POST requests from swup for getting this partial response (not implemented yet, as there were no requests for it - tiny modification of swup is needed), or by sending this partial response in other format like JSON, which can be handled as described here.