mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 21:58:03 +00:00
feat: updates
This commit is contained in:
parent
9a52681687
commit
840a5b8e9b
104 changed files with 1645 additions and 13494 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { css, cx } from '@emotion/css'
|
||||
import { css, cx, keyframes } from '@emotion/css'
|
||||
import Icon from '../Icon'
|
||||
import { breakpoint as bp } from '@/web/utils/const'
|
||||
import { useNavigate } from 'react-router-dom'
|
||||
|
|
@ -10,6 +10,20 @@ import { useClickAway, useDebounce } from 'react-use'
|
|||
import { AnimatePresence, motion } from 'framer-motion'
|
||||
import { useTranslation } from 'react-i18next'
|
||||
|
||||
const bounce = keyframes`
|
||||
from { transform: rotate(0deg) translateX(1px) rotate(0deg) }
|
||||
to { transform: rotate(360deg) translateX(1px) rotate(-360deg) }
|
||||
`
|
||||
function SearchIcon({ isSearching }: { isSearching: boolean }) {
|
||||
return (
|
||||
<div
|
||||
// style={{ animation: `${bounce} 1.2s linear infinite` }}
|
||||
>
|
||||
<Icon name='search' className='mr-2.5 h-7 w-7' />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
const SearchSuggestions = ({
|
||||
searchText,
|
||||
isInputFocused,
|
||||
|
|
@ -144,7 +158,7 @@ const SearchBox = () => {
|
|||
`
|
||||
)}
|
||||
>
|
||||
<Icon name='search' className='mr-2.5 h-7 w-7' />
|
||||
<SearchIcon />
|
||||
<input
|
||||
ref={inputRef}
|
||||
placeholder={t`search.search`}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue