Skip to content
  • Home
  • Features
    • Matrix Framework
    • Matrix One
    • Plugin Toolkit
    • Matrix Library
  • Templates
  • Support
  • Pricing
  • Home
  • Features
    • Matrix Framework
    • Matrix One
    • Plugin Toolkit
    • Matrix Library
  • Templates
  • Support
  • Pricing
  1. Support
Known Issue Jul 2026

Chrome freeze — Fold / Flip / Skew

On the newest Google Chrome desktop, scrolling to a WOW Fold, Flip, or Skew animation can freeze the tab. This affects Plugin Toolkit and Matrix One only. Matrix Framework is not affected.

  Reported 22 Jul 2026   Newest Chrome desktop

On this page

  • Product status
  • Symptoms
  • Cause
  • How to fix
  • Can't open the editor
  • What still works
  • Next steps

Product status

Not affected

Matrix Framework

Uses the modern Motion One library — not WOW.js. No update required for this issue.

Fixed — update files

Matrix One

Modular Matrix One: upload the latest CSS and JS from the Updates section in the admin menu.

Fixed — update files

Plugin Toolkit

Upload the newest Toolkit files that include this bug fix (same Fold / Flip / Skew path as Matrix One).

Fixed — replace JS

Matrix Themes (classic)

Older non-modular Matrix Themes: replace your site’s matrix-min.js with the fixed file below.

 
Older Chrome, Firefox, Safari, and mobile browsers were fine in testing. The freeze shows up on newest Chrome desktop when a Fold / Flip / Skew widget scrolls into view.

1 Symptoms

1

Open a page with Fold / Flip / Skew

Any widget using wow plus an is-folded-*, is-flip-*, or is-skew-* class.

2

Scroll until it would reveal

The animation is about to play as the element enters the viewport.

3

The tab locks

The page stops responding; the rest of the content never paints. You may need to force-close the tab.

Affected class patterns

Family Examples (always with .wow)
Fold is-folded-left, is-folded-right, is-folded-top, is-folded-bottom, is-folded-middle-*, is-folded-blur, *-img variants
Flip is-flip-left-right, is-flip-right-left
Skew is-skew-left, is-skew-right

2 Cause

This is a CSS + Chrome interaction, not a runaway JavaScript loop in the fluid module. Older theme CSS set a pre-reveal state of clip-path: none, then transitioned to an inset(…) clip when WOW added animate__animated — often with an overshooting cubic-bezier (y outside [0, 1]). Newest Chrome's composited clip-path animations can lock the main thread on that path.

  •   Unsafe: transition from clip-path: none → inset(…)
  •   Unsafe: cubic-bezier with y < 0 or y > 1 on clip-path motion
  •   Safe path: @keyframes only between explicit inset(…) values, with easing y in [0, 1]
 
DevTools may show many layout reads and requestAnimationFrame calls from WOW's normal scroll handling. That noise looked like a clip-path JS loop in early reports — the freeze source is the CSS transition above.

3 How to fix

Choose the path that matches the product on your Jimdo site. In every case the fix is already included in the updated files — you only need to upload them.

Classic Matrix Themes (not modular Matrix One)

If your site still runs the older Matrix Themes package (the classic, non-modular build), replace the existing matrix-min.js on your site with the latest file. That single upload contains the fix for this Chrome freeze — no CSS kill-switch and no other files required.

1

Download the fixed file

Use the download below to get the latest matrix-min.js.

2

Upload it to your Jimdo site

Replace the previous matrix-min.js in the same location your Head / Footer already references (same filename and path).

3

Hard-refresh and verify

Reload the published page in Chrome and scroll to a Fold / Flip / Skew widget — the tab should stay responsive and the effect should play normally.

Download
matrix-min.js
js File 279.3 KB
Download

Matrix One (modular)

If you are already on Matrix One, open the Matrix sliding admin menu → Updates, download the latest CSS and JS packages, and upload them over the files currently on your site. That update set includes the permanent Fold / Flip / Skew fix.

  •   Upload every updated CSS and JS file from the Updates section so versions stay in sync
  •   No emergency Custom CSS is required once the new files are live
  •   Hard-refresh the published page and re-test Fold / Flip / Skew in newest Chrome desktop

Plugin Toolkit

Plugin Toolkit is fixed as well. Download the newest Toolkit package that includes this bug fix and upload the updated files over the ones currently linked from your site Head / Footer (same filenames and paths). After a hard refresh, Fold / Flip / Skew should no longer freeze Chrome.

  •   Use the latest Toolkit release that advertises this Chrome Fold / Flip / Skew fix
  •   Replace the previous JS (and CSS, if the package includes updated styles) completely — avoid mixing old and new files
  •   If the editor itself freezes before you can upload, use the recovery options in Can't open the editor first

Matrix Framework

This bug does not affect Matrix Framework. Framework does not use WOW.js for scroll animations — it uses the modern Motion One library (motion-foldLeft, motion-flipLeftRight, and related classes). No action is needed.

 
Not sure which product you run? Matrix Framework sites use matrix.js / Motion One class names. Classic Matrix Themes, Plugin Toolkit, and Matrix One typically use wow + is-folded-* classes.

4 Can't open the editor

Sometimes Fold / Flip / Skew is placed near the top of the homepage. In that case Chrome can freeze as soon as the editor loads the page — before you can reach Updates, Head settings, or file uploads. Use one of the recovery paths below, then apply the product fix from How to fix.

1. Jimdo Safe Mode (preferred)

Jimdo’s editor Safe Mode keeps site-wide Head / Footer code running, but shows HTML / Widget modules as inert source so their scripts (and these fold reveals) cannot choke the editor. That lets you open the page, upload the fixed files, and exit Safe Mode when you’re done.

  •   Open the editor URL and add &safemode=1 while keeping cmsEdit=1 — for example ?cmsEdit=1&safemode=1
  •   Matrix Framework also adds an optional Safe mode shortcut in the sliding admin menu (v1.7.6+). You may need the manual URL today if that menu item is not enabled yet — it’s new, and worth turning on for future recovery
  •   Exit with Jimdo’s own Exit safe mode banner when the fixed files are uploaded
 
If the page freezes as soon as you log in to admin, add ?cmsEdit=1&safemode=1 to the current URL, then copy the full URL and paste it into another browser tab.

Full details: Safe Mode docs · matrix-framework.com/support/framework/safe-mode/

2. Switch to a default Jimdo template

Applying a default Jimdo template temporarily disables custom layout / custom code. With Matrix unloaded, the editor stays usable so you can upload the bug-fix files. When the new files are in place, activate your custom layout again.

3. Jimdo Creator app (last resort)

If Safe Mode and switching template in the browser editor are not available, open the Jimdo Creator app, apply any default template from the app, then upload the fixed files from your desktop. Once the update is done, activate the custom layout again. Use this only when the other options are not possible.

 
Switching to a default template is temporary recovery — it does not replace uploading the fixed JS/CSS. After the new files are live and custom layout is back on, re-test the homepage Fold / Flip / Skew widgets in newest Chrome desktop.

What still works

Plain Animate.css fades never hit this bug — they animate transform / opacity only:

<div class="wow animate__animated animate__fadeInUp">…</div>

  •   Matrix Framework Motion One tags (motion-foldLeft, etc.) — different engine, not this Chrome path
  •   Firefox, Safari, older Chrome, and mobile Chrome in reported cases
  •   Pages that never use Fold / Flip / Skew classes

Next steps

All known issues

Back to the Support hub list — more issue reports will appear here as they are documented.

View known issues →

Safe Mode

Enter the Jimdo editor safely when a broken or freezing widget blocks the homepage.

Open Safe Mode docs →

Email support

Still stuck after uploading the update? Include your site URL and which product you use.

Contact support →

Get started
Gobal colors
  bg-primary
  bg-primary-light
  bg-primary-dark
  bg-secondary
  bg-secondary-dark
Template colors
  body
  top-header
  top-header-inner
  header
  header-inner
  navigation-inner
  navigation color
  dropdown background color
  content
Footer Styles
  background
  text color
  link color
  horizontal line
Buttons
  style 1
  style 2
  style 3
  text color
Mobile navigation
  background color
  navigation color
Other elements
  social icons
  top header border
  header border
  nav inner border
  footer border
 
Template configurations
 
has-sticky-logo has-large-header primary-font has-center-nav has-header-blur no-shopping-cart
 
Top header inner
 
 
 
Header inner
 
 
 
Navigation inner
 
 
 
Navigation styles
 
size-15 weight-400 color-nav
 
Sub-menu (breadcrumbs) styles
 
size-15
 
Mobile Navigation styles
 
size-30
 
Content styles
 
form-white
 
Footer styles
 
o-form has-thin-border has-border-style-solid has-border-top has-footer-border-color
 
Footer background image
 
 

 

Typography

Heading H1
weight-400
 
Heading H2
weight-400
 
Heading H3
weight-400
 
Body text (p, table, td)
 
 
Buttons
weight-400
 
 
Advanced settings
 
Custom CSS

#cc-inner .my-class {

color:#f0f0f0;

}

/* MATRIX-CUSTOM-MODULES-START */

#cc-m-7792741551 h1, #cc-m-7792741551 h2, #cc-m-7792741551 h3 {font-size:20px !important;}

#cc-m-7792741851 h1, #cc-m-7792741851 h2, #cc-m-7792741851 h3 {font-size:20px !important;}

#cc-m-7792930551 h1, #cc-m-7792930551 h2, #cc-m-7792930551 h3 {font-size:20px !important;}

#cc-m-12388126494 h1, #cc-m-12388126494 h2, #cc-m-12388126494 h3 {font-weight:600 !important;}

#cc-m-12388126494 h1, #cc-m-12388126494 h2, #cc-m-12388126494 h3 {font-size:40px !important;}

/* MATRIX-CUSTOM-MODULES-END */

/* MATRIX-GLOBAL-SETTINGS-START */

:root {

--content-width: 1170px;

--special-pages-content-width: 900px;

}

/* HAMBURGER-BAR-START */

:root { --hamburger-btn-background: transparent; --hamburger-btn-bg: transparent; --hamburger-btn-bg-active: transparent; }

/* HAMBURGER-BAR-END */

#cc-inner #hs-container .j-formnew input[type='submit'],

#cc-inner #hs-container input.submitUser,

#cc-inner .hs-button,

#cc-inner .j-calltoaction-link,

#cc-inner input.cc-checkout-btn,

#cc-inner a.cc-shop-addtocard {

padding: 14px 35px !important;

border-radius: 8px;

}

/* MOBILE-FULLWIDTH-BUTTONS-START */

@media only screen and (width <= 746px) {

#cc-inner #hs-container .j-formnew input[type='submit'],

#cc-inner #hs-container input.submitUser,

#cc-inner .hs-button,

#cc-inner .j-calltoaction-link {

width: 100% !important;

margin: 5px auto 0 auto;

box-sizing: border-box;

text-align: center !important;

}

}

/* MOBILE-FULLWIDTH-BUTTONS-END */

/* MATRIX-GLOBAL-SETTINGS-END */


Note:
All changes made here will be applied to your entire website.
Matrix Framework
draggable-logo

Matrix Framework

Build faster, smarter, and more flexible Jimdo websites.

has-right-col-border

Products

Matrix Framework

Matrix One

Matrix Plugin Toolkit

Resources

Support

Matrix Academy

FAQs

Changelog

Community

Showcase

Marketplace

Blog

Archive


About | Privacy Policy | Cookie Policy | Sitemap | Withdraw contract
Created with Jimdo
Log in Log out | Edit
  • Scroll to top
Close