You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`"${sel}" starts hidden, but its gsap.fromTo() makes it visible only in the from-vars `+
1225
+
"and omits opacity/autoAlpha from the destination. Cold render workers restore the hidden authored state, so the encoded element can stay invisible even when sequential snapshots look correct.",
1226
+
selector: sel,
1227
+
fixHint: `Add \`opacity: 1\` (or \`autoAlpha: 1\`) to the destination vars for "${sel}" so every seek path establishes the visible end state explicitly.`,
1228
+
snippet: truncateSnippet(win.raw),
1229
+
});
1230
+
continue;
1231
+
}
1232
+
1180
1233
if(win.method!=="from")continue;
1181
1234
if(!win.properties.includes("opacity"))continue;
1182
1235
// Only a noop when the tween animates FROM 0 (same as the CSS value)
1183
1236
if(win.propertyValues["opacity"]!==0)continue;
1184
-
constsel=win.targetSelector;
1185
-
constcssKey=sel.startsWith("#")||sel.startsWith(".") ? sel : `#${sel}`;
0 commit comments