BaranovRoman

Results 5 comments of 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) > > ![image](https://user-images.githubusercontent.com/14764134/201263236-e303503c-cbe2-4983-a867-a02c20ace5ca.png) 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(...