mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: allow to drag slider in episode selector
This commit is contained in:
parent
66721c6d6a
commit
9e4bf1ac71
2 changed files with 11 additions and 3 deletions
|
@ -67,7 +67,10 @@ export const EpisodeSelector = (props: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
sensitivity: 4,
|
sensitivity: 4,
|
||||||
}}
|
}}
|
||||||
scrollbar={true}
|
scrollbar={{
|
||||||
|
enabled: true,
|
||||||
|
draggable: true,
|
||||||
|
}}
|
||||||
allowTouchMove={true}
|
allowTouchMove={true}
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
|
@ -79,6 +82,7 @@ export const EpisodeSelector = (props: {
|
||||||
<SwiperSlide
|
<SwiperSlide
|
||||||
key={`episode_${episode.position}`}
|
key={`episode_${episode.position}`}
|
||||||
style={{ maxWidth: "fit-content" }}
|
style={{ maxWidth: "fit-content" }}
|
||||||
|
className="pb-2"
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
color={
|
color={
|
||||||
|
|
|
@ -314,9 +314,12 @@ export const ReleasePlayer = (props: { id: number }) => {
|
||||||
direction={"horizontal"}
|
direction={"horizontal"}
|
||||||
mousewheel={{
|
mousewheel={{
|
||||||
enabled: true,
|
enabled: true,
|
||||||
sensitivity: 2,
|
sensitivity: 4,
|
||||||
|
}}
|
||||||
|
scrollbar={{
|
||||||
|
enabled: true,
|
||||||
|
draggable: true,
|
||||||
}}
|
}}
|
||||||
scrollbar={true}
|
|
||||||
allowTouchMove={true}
|
allowTouchMove={true}
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
|
@ -328,6 +331,7 @@ export const ReleasePlayer = (props: { id: number }) => {
|
||||||
<SwiperSlide
|
<SwiperSlide
|
||||||
key={`episode_${episode.position}`}
|
key={`episode_${episode.position}`}
|
||||||
style={{ maxWidth: "fit-content" }}
|
style={{ maxWidth: "fit-content" }}
|
||||||
|
className="pb-2"
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
color={
|
color={
|
||||||
|
|
Loading…
Add table
Reference in a new issue