react-horizontal-scrolling-menu — Transitions and RTL
The single most important fact: noPolyfill defaults to true since
v8.0.0 (src/index.tsx:183). With the default, every scroll uses native
Element.scrollIntoView: transitionDuration, a function-valued
transitionBehavior, and ScrollOptions duration/boundary are silently
discarded (src/helpers.tsx:72-77). Only the string behaviors
'smooth'/'auto' survive — they are forwarded to the native call, with
'smooth' as the fallback (src/helpers.tsx:60-73). Any duration/easing
work starts by setting noPolyfill={false}, which routes scrolling through
the smooth-scroll-into-view-if-needed polyfill. The one exception: RTL
menus must keep the default (see Tensions).
Setup
Animated transitions, minimum viable:
import React from 'react';
import {
ScrollMenu,
VisibilityContext,
type publicApiType,
} from 'react-horizontal-scrolling-menu';
import 'react-horizontal-scrolling-menu/dist/styles.css';
function LeftArrow() {
const api = React.useContext<publicApiType>(VisibilityContext);
const disabled = api.useLeftArrowVisible();
return (
<button disabled={disabled} => api.scrollPrev()}>
Left
</button>
);
}
function RightArrow() {
const api = React.useContext<publicApiType>(VisibilityContext);
const disabled = api.useRightArrowVisible();
return (
<button disabled={disabled} => api.scrollNext()}>
Right
</button>
);
}
// itemId must stay on the component's props (ScrollMenu reads it);
// do not spread it onto the DOM node.
function Card({ title }: { itemId: string; title: string }) {
return <div style={{ width: '160px', margin: '0 10px' }}>{title}</div>;
}
const items = Array.from({ length: 10 }, (_, i) => ({ id: `item-${i}` }));
export function AnimatedMenu() {
return (
<ScrollMenu
LeftArrow={LeftArrow}
RightArrow={RightArrow}
noPolyfill={false} // REQUIRED — transition props are no-ops without it
transitionDuration={1200} // ms, default 500
transitionBehavior="smooth"
>
{items.map(({ id }) => (
<Card itemId={id} key={id} title={id} />
))}
</ScrollMenu>
);
}
Patterns below reuse LeftArrow, RightArrow, Card, items, and the
import block from this Setup.
Core Patterns
The noPolyfill gate — which engine scrolls
noPolyfill |
Engine | Transition controls | RTL |
|---|---|---|---|
true (default) |
native Element.scrollIntoView |
duration/boundary/function behavior ignored; string behavior still applies |
correct |
false |
smooth-scroll-into-view-if-needed polyfill |
all honored | buggy — never combine |
Resolution chains in polyfill mode (src/createApi.ts:120-160,316-336,
src/helpers.tsx:60):
- behavior: positional argument →
transitionBehaviorprop →'smooth' - duration:
ScrollOptions.duration→transitionDurationprop →500 - boundary:
ScrollOptions.boundary→ the menu's own scroll container (src/index.tsx:250)
Custom easing function via transitionBehavior
A function transitionBehavior receives the computed scroll targets and
drives scrollLeft itself — any curve or animation library works from there.
Polyfill mode only.
// What scroll-into-view-if-needed hands to a custom behavior: one action per
// scrollable ancestor that must move — here always just the scroll container,
// because the menu passes it as `boundary`.
type ScrollAction = { el: Element; top: number; left: number };
const easeInOutCubic = (t: number) =>
t < 0.5 ? 4 * t * t * t : 1 - Math.pow(-2 * t + 2, 3) / 2;
// A second arrow click can land mid-animation; remembering the pending frame
// per element lets the new animation cancel the old one instead of both
// fighting over scrollLeft.
const pendingFrames = new WeakMap<Element, number>();
function animateScroll(el: Element, target: number, duration: number) {
const prevFrame = pendingFrames.get(el);
if (prevFrame !== undefined) cancelAnimationFrame(prevFrame);
const from = el.scrollLeft;
const startTime = performance.now();
const step = (now: number) => {
const progress = Math.min((now - startTime) / duration, 1);
el.scrollLeft = from + (target - from) * easeInOutCubic(progress);
if (progress < 1) {
pendingFrames.set(el, requestAnimationFrame(step));
} else {
pendingFrames.delete(el);
}
};
pendingFrames.set(el, requestAnimationFrame(step));
}
const transition = (instructions: ScrollAction[]) =>
instructions.forEach(({ el, left }) => animateScroll(el, left, 1200));
export function CustomEasingMenu() {
return (
<ScrollMenu
LeftArrow={LeftArrow}
RightArrow={RightArrow}
noPolyfill={false} // custom easing only runs through the polyfill
// The typings describe the options-object form, but the menu passes this
// value straight to scroll-into-view-if-needed as its behavior callback.
transitionBehavior={transition as unknown as ScrollBehavior}
>
{items.map(({ id }) => (
<Card itemId={id} key={id} title={id} />
))}
</ScrollMenu>
);
}
Live-editable version: the CustomTransition Storybook story.
Per-call override with ScrollOptions
ScrollOptions is the last argument of scrollToItem, scrollNext, and
scrollPrev; its duration/boundary override the menu-level transition
props for that one call (polyfill mode only):
function CenteringCard({ title, itemId }: { itemId: string; title: string }) {
const api = React.useContext<publicApiType>(VisibilityContext);
const center = () =>
// behavior inside the options object is required by the type but the
// positional 'smooth' always wins — only duration/boundary take effect.
api.scrollToItem(api.getItemById(itemId), 'smooth', 'center', 'nearest', {
behavior: 'smooth',
duration: 800, // overrides transitionDuration for this call only
});
return (
<div style={{ width: '160px', margin: '0 10px' }}>
{title}
</div>
);
}
scrollNext/scrollPrev type their options as
Omit<scrollToItemOptions, 'behavior'> (src/createApi.ts:18), so there
{ duration: 800 } alone compiles:
function SlowNextArrow() {
const api = React.useContext<publicApiType>(VisibilityContext);
const disabled = api.useRightArrowVisible();
return (
<button
disabled={disabled}
=>
api.scrollNext('smooth', 'start', 'nearest', { duration: 800 })
}
>
Right
</button>
);
}
RTL menu
The RTL prop does exactly one thing: it appends the rtl class to the
scroll container (src/index.tsx:306-307), which styles.css maps to
direction: rtl (src/styles.css:9-11). Item order and scrolling are native
browser RTL behavior. Keep the noPolyfill default and pass no transition
props. Swap the arrow slots so the advancing arrow sits visually left (in RTL
the row starts at the right edge and later items extend leftwards):
export function RTLMenu() {
return (
// Visual left = logical end in RTL, so the slots swap components.
// Each arrow keeps its own hook/handler pair, so disabling stays correct.
<ScrollMenu RTL LeftArrow={RightArrow} RightArrow={LeftArrow}>
{items.map(({ id }) => (
<Card itemId={id} key={id} title={id} />
))}
</ScrollMenu>
);
}
Common Mistakes
CRITICAL Transition props ignored under default noPolyfill
Wrong:
<ScrollMenu transitionDuration={1200}>
{items.map(({ id }) => (
<Card itemId={id} key={id} title={id} />
))}
</ScrollMenu>
Correct:
<ScrollMenu noPolyfill={false} transitionDuration={1200}>
{items.map(({ id }) => (
<Card itemId={id} key={id} title={id} />
))}
</ScrollMenu>
noPolyfill defaults to true (native scrollIntoView) since v8.0.0, so
duration, boundary and custom-function behavior are silently discarded
unless noPolyfill={false} pulls in the smooth-scroll polyfill. (Shared with
menu-migration: code written for v5–v7 relied on the polyfill being the
default.)
Source: src/helpers.tsx:72-77; src/index.tsx:183; CHANGELOG v8.0.0
HIGH Custom transitionBehavior function without noPolyfill={false}
Wrong:
<ScrollMenu transitionBehavior={transition as unknown as ScrollBehavior}>
{items.map(({ id }) => (
<Card itemId={id} key={id} title={id} />
))}
</ScrollMenu>
Correct:
<ScrollMenu
noPolyfill={false}
transitionBehavior={transition as unknown as ScrollBehavior}
>
{items.map(({ id }) => (
<Card itemId={id} key={id} title={id} />
))}
</ScrollMenu>
With noPolyfill true the function is cast to a native ScrollBehavior
string and handed to scrollIntoView, which ignores or rejects it — custom
easing only works through the polyfill.
Source: src/helpers.tsx:67; stories/CustomTransition/CustomTransition.source.tsx
HIGH Combining transition props with RTL
Wrong:
<ScrollMenu RTL noPolyfill={false} transitionDuration={800}>
{items.map(({ id }) => (
<Card itemId={id} key={id} title={id} />
))}
</ScrollMenu>
Correct:
<ScrollMenu RTL LeftArrow={RightArrow} RightArrow={LeftArrow}>
{items.map(({ id }) => (
<Card itemId={id} key={id} title={id} />
))}
</ScrollMenu>
The polyfill has RTL bugs (page-level horizontal scrolling); transitions and
the RTL prop are documented as not combining — RTL menus keep the
noPolyfill default and native scrolling.
Source: README.md "Transitions and animation"; https://github.com/asmyshlyaev177/react-horizontal-scrolling-menu/issues/230 (#241, #216)
MEDIUM behavior field in ScrollOptions treated as effective
Wrong:
api.scrollToItem(api.getItemById('item-3'), undefined, 'center', 'nearest', {
behavior: 'smooth', // never reaches the scroll call
});
Correct:
api.scrollToItem(api.getItemById('item-3'), 'smooth', 'center', 'nearest', {
behavior: 'smooth', // required by the type, but only satisfies TS
duration: 800, // duration/boundary are the fields that take effect
});
scrollToItemOptions types behavior as required, but the implementation
spreads the positional behavior after the options object, so options.behavior
is always overridden (falling back through transitionBehavior to
'smooth') — only duration and boundary in the options object matter, and
only in polyfill mode.
Source: src/types.ts:55-59 vs src/helpers.tsx:66-77; src/createApi.ts:316-336
Tensions
HIGH Tension: native scroll correctness vs animation control
noPolyfill={true} (the default) avoids the polyfill's elusive edge bugs but
makes every transition prop a no-op; noPolyfill={false} restores animation
control (duration, easing, per-call ScrollOptions) and re-imports those
bugs — RTL breakage and page-level scrolling. Agents adding
transitionDuration for polish silently get nothing; agents flipping
noPolyfill for animation break RTL menus. Pick one side per menu: animated
LTR with noPolyfill={false}, or RTL/maximum-correctness with the default.
The scroll methods these props modify are covered in
menu-scrolling.
See also
- menu-scrolling —
scrollToItem,scrollNext/scrollPrev,apiRef, and paging: transition props andScrollOptionsmodify how those scroll methods animate.