mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
Compare commits
3 commits
8ab668dcd6
...
68a7117a97
Author | SHA1 | Date | |
---|---|---|---|
68a7117a97 | |||
9e4bf1ac71 | |||
66721c6d6a |
5 changed files with 1103 additions and 291 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={
|
||||||
|
|
|
@ -433,7 +433,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
: <iframe src={playerProps.src} className="w-full aspect-video" />}
|
: <iframe src={playerProps.src} className="w-full aspect-video" allowFullScreen={true} />}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
|
1376
package-lock.json
generated
1376
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -16,7 +16,7 @@
|
||||||
"hls-video-element": "^1.5.0",
|
"hls-video-element": "^1.5.0",
|
||||||
"markdown-to-jsx": "^7.4.7",
|
"markdown-to-jsx": "^7.4.7",
|
||||||
"media-chrome": "^4.8.0",
|
"media-chrome": "^4.8.0",
|
||||||
"next": "^14.2.13",
|
"next": "^14.2.26",
|
||||||
"next-plausible": "^3.12.1",
|
"next-plausible": "^3.12.1",
|
||||||
"react": "^18",
|
"react": "^18",
|
||||||
"react-cropper": "^2.3.3",
|
"react-cropper": "^2.3.3",
|
||||||
|
|
Loading…
Add table
Reference in a new issue