BaranovRoman
BaranovRoman
> This is a (multiple allowed): > > * [x] bug > * [ ] enhancement > * [ ] feature-discussion (RFC) > * Swiper Version: 6.4.1 > * Platform/Target...
> the problem persists. negative or 0, does not remove the slowdown and speed up between > transitions. which as it approaches 0 (the speed) is perceived as delay. >...
> > > the problem persists. negative or 0, does not remove the slowdown and speed up between > > > transitions. which as it approaches 0 (the speed) is...
> Hi, I found this, words are not transferred if there is a sign `-` > > [Example](https://codesandbox.io/s/react-split-text-o507fe) > >  I'm facing the same problem, for me help to...
I'm clone this repo, and edit SplitText.ts useDebounce hook ` import { useState, useEffect } from 'react'; export function useDebounce(value: T, delay: number) { const [debouncedValue, setDebouncedValue] = useState(value); useEffect(...