Compare commits
2 commits
10b5890972
...
38b4f49264
Author | SHA1 | Date | |
---|---|---|---|
|
38b4f49264 | ||
|
769df09ee4 |
8 changed files with 109 additions and 21 deletions
|
@ -18,7 +18,11 @@ import './Styles/Iconoir.css'
|
||||||
<div class="vc-top">
|
<div class="vc-top">
|
||||||
<p>{Title}</p>
|
<p>{Title}</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="vc-gestures"></div>
|
<div id="vc-gestures">
|
||||||
|
<span id="vc-gesture-left"></span>
|
||||||
|
<span id="vc-gesture-middle"></span>
|
||||||
|
<span id="vc-gesture-right"></span>
|
||||||
|
</div>
|
||||||
<div class="vc-bottom">
|
<div class="vc-bottom">
|
||||||
<button style="display: none" id="vc-playagain"><i class="iconoir-refresh"></i></button>
|
<button style="display: none" id="vc-playagain"><i class="iconoir-refresh"></i></button>
|
||||||
<div class="vc-start">
|
<div class="vc-start">
|
||||||
|
|
|
@ -162,25 +162,68 @@ function SkipAround() {
|
||||||
|
|
||||||
// Gestures (Click / Double-click)
|
// Gestures (Click / Double-click)
|
||||||
function Gestures() {
|
function Gestures() {
|
||||||
var GestureCanvas = document.querySelector('#zorn-player-' + PlayerName + ' #vc-gestures')
|
var GesturesCanvas = document.querySelector('#zorn-player-' + PlayerName + ' #vc-gestures')
|
||||||
|
var GestureCanvas_Left = document.querySelector('#zorn-player-' + PlayerName + ' #vc-gesture-left')
|
||||||
|
var GestureCanvas_Middle = document.querySelector('#zorn-player-' + PlayerName + ' #vc-gesture-middle')
|
||||||
|
var GestureCanvas_Right = document.querySelector('#zorn-player-' + PlayerName + ' #vc-gesture-right')
|
||||||
|
|
||||||
GestureCanvas.addEventListener("click", (event) => {
|
// Middle Gesture (Single: Play/Pause - Double: Fullscreen)
|
||||||
if(!event) {
|
GestureCanvas_Middle.addEventListener("click", (event) => {
|
||||||
event = true
|
if(!event) {event = true; setTimeout( function() { event = false; }, 300 ); return false}
|
||||||
setTimeout( function() { event = false; }, 300 )
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' #vc-playpause').click()
|
document.querySelector('#zorn-player-' + PlayerName + ' #vc-playpause').click()
|
||||||
})
|
})
|
||||||
|
|
||||||
GestureCanvas.addEventListener("dblclick", (event) => {
|
GestureCanvas_Middle.addEventListener("dblclick", (event) => {
|
||||||
if(!event) {
|
if(!event) {event = true; setTimeout( function() { event = false; }, 300 ); return false}
|
||||||
event = true
|
|
||||||
setTimeout( function() { event = false; }, 300 )
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' #vc-fullscreen').click()
|
document.querySelector('#zorn-player-' + PlayerName + ' #vc-fullscreen').click()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// For Left and Right Gesture - Skip Around
|
||||||
|
function Skip(value) {Player.currentTime += value}
|
||||||
|
|
||||||
|
// Only show Left and Right Gesture for touch screen end-users
|
||||||
|
if(window.matchMedia("(pointer: coarse)").matches) {
|
||||||
|
GesturesCanvas.style.gridTemplateColumns = 'auto auto auto'
|
||||||
|
GestureCanvas_Left.style.display = 'inherit'
|
||||||
|
GestureCanvas_Right.style.display = 'inherit'
|
||||||
|
}
|
||||||
|
|
||||||
|
// Left Gesture (Single: Play/Pause - Double: Skip)
|
||||||
|
GestureCanvas_Left.addEventListener("click", (event) => {
|
||||||
|
if(!event) {event = true; setTimeout( function() { event = false; }, 300 ); return false}
|
||||||
|
document.querySelector('#zorn-player-' + PlayerName + ' #vc-playpause').click()
|
||||||
|
})
|
||||||
|
|
||||||
|
GestureCanvas_Left.addEventListener("dblclick", (event) => {
|
||||||
|
if(!event) {event = true; setTimeout( function() { event = false; }, 300 ); return false}
|
||||||
|
Skip(-10);
|
||||||
|
|
||||||
|
GestureCanvas_Left.style.background = 'rgba(255,255,255,0.25)'
|
||||||
|
GestureCanvas_Left.style.boxShadow = '0px 0px 200px 100px #ffffff14'
|
||||||
|
setTimeout(() => {
|
||||||
|
GestureCanvas_Left.style.background = 'transparent'
|
||||||
|
GestureCanvas_Left.style.boxShadow = '0px 0px 0px 0px transparent'
|
||||||
|
}, 0o500);
|
||||||
|
})
|
||||||
|
|
||||||
|
// Right Gesture (Single: Play/Pause - Double: Skip)
|
||||||
|
GestureCanvas_Right.addEventListener("click", (event) => {
|
||||||
|
if(!event) {event = true; setTimeout( function() { event = false; }, 300 ); return false}
|
||||||
|
document.querySelector('#zorn-player-' + PlayerName + ' #vc-playpause').click()
|
||||||
|
})
|
||||||
|
|
||||||
|
GestureCanvas_Right.addEventListener("dblclick", (event) => {
|
||||||
|
if(!event) {event = true; setTimeout( function() { event = false; }, 300 ); return false}
|
||||||
|
Skip(10);
|
||||||
|
|
||||||
|
GestureCanvas_Right.style.background = 'rgba(255,255,255,0.25)'
|
||||||
|
GestureCanvas_Right.style.boxShadow = '0px 0px 200px 100px #ffffff14'
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
GestureCanvas_Right.style.background = 'transparent'
|
||||||
|
GestureCanvas_Right.style.boxShadow = '0px 0px 0px 0px transparent'
|
||||||
|
}, 0o500);
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hide Controls
|
// Hide Controls
|
||||||
|
|
|
@ -69,7 +69,21 @@
|
||||||
}
|
}
|
||||||
#vc-gestures {
|
#vc-gestures {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
opacity: 0;
|
display: grid;
|
||||||
|
grid-template-columns: auto;
|
||||||
|
span {
|
||||||
|
background: transparent;
|
||||||
|
transition: 0.25s background, 0.25s box-shadow;
|
||||||
|
box-shadow: none;
|
||||||
|
&#vc-gesture-left {
|
||||||
|
border-radius: 12px 16rem 16rem 12px;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
&#vc-gesture-right {
|
||||||
|
border-radius: 16rem 12px 12px 16rem;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.vc-bottom {
|
.vc-bottom {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -9,7 +9,8 @@ import Switcher from './Switcher.astro'
|
||||||
<a href="/about">About Demo</a>
|
<a href="/about">About Demo</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="header-end">
|
<div class="header-end">
|
||||||
<Switcher/>
|
<a href="https://studio.sudovanilla.org/" target="_blank">MinPluto</a>
|
||||||
|
<a href="https://ark.sudovanilla.org/MinPluto/Zorn" target="_blank">Source Code</a>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
@ -22,12 +23,14 @@ header {
|
||||||
margin-top: -8px;
|
margin-top: -8px;
|
||||||
max-width: 1200px;
|
max-width: 1200px;
|
||||||
height: 64px;
|
height: 64px;
|
||||||
.header-start {
|
color: white;
|
||||||
|
.header-start, .header-end {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ const { Title, Description } = Astro.props
|
||||||
<slot />
|
<slot />
|
||||||
<hr/>
|
<hr/>
|
||||||
<center>
|
<center>
|
||||||
<p style="display: flex; gap: 12px;justify-content: center;">
|
<p style="display: flex; gap: 12px; justify-content: center; color: black;">
|
||||||
<a href="https://ark.sudovanilla.org/MinPluto/Zorn#installation">Documentation</a>
|
<a href="https://ark.sudovanilla.org/MinPluto/Zorn#installation">Documentation</a>
|
||||||
<a href="https://npm.sudovanilla.org/-/web/detail/@minpluto/zorn">Package</a>
|
<a href="https://npm.sudovanilla.org/-/web/detail/@minpluto/zorn">Package</a>
|
||||||
<a href="https://ark.sudovanilla.org/MinPluto/Zorn">Source Code</a>
|
<a href="https://ark.sudovanilla.org/MinPluto/Zorn">Source Code</a>
|
||||||
|
|
|
@ -9,6 +9,7 @@ const {
|
||||||
// Components
|
// Components
|
||||||
import Header from '@components/Header.astro'
|
import Header from '@components/Header.astro'
|
||||||
import Info from '@components/Info.astro'
|
import Info from '@components/Info.astro'
|
||||||
|
import Switcher from '@components/Switcher.astro'
|
||||||
---
|
---
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
@ -17,6 +18,10 @@ import Info from '@components/Info.astro'
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<Header/>
|
<Header/>
|
||||||
|
<br/>
|
||||||
|
<Switcher/>
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
<slot/>
|
<slot/>
|
||||||
<Info Title={Title} Description={Description}>
|
<Info Title={Title} Description={Description}>
|
||||||
<div class="info-section"><slot name="info"></slot></div>
|
<div class="info-section"><slot name="info"></slot></div>
|
||||||
|
@ -27,13 +32,23 @@ import Info from '@components/Info.astro'
|
||||||
|
|
||||||
<style is:global is:inline>
|
<style is:global is:inline>
|
||||||
body {
|
body {
|
||||||
background: #010101;
|
background: white;
|
||||||
color: white;
|
color: black;
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
max-width: 1200px;
|
max-width: 1200px;
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
background: #010101;
|
||||||
|
width: 100%;
|
||||||
|
height: 600px;
|
||||||
|
position: absolute;
|
||||||
|
top: 0px;
|
||||||
|
left: 0px;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
a {
|
a {
|
||||||
color: white;
|
color: black;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.video-container {
|
.video-container {
|
||||||
|
|
|
@ -2,6 +2,12 @@
|
||||||
layout: src/layouts/Default.astro
|
layout: src/layouts/Default.astro
|
||||||
---
|
---
|
||||||
|
|
||||||
|
<style>
|
||||||
|
body::before {
|
||||||
|
height: 146px !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
## Data Streams
|
## Data Streams
|
||||||
All sources used in Zorn player, in this demo, are pulled directly from the SudoVanilla Ocean. The upload speed on SudoVanilla's internet connection is 10/Mpbs, which is slow for video and audio streaming. So while viewing the demo, expect buffering and some videos to lag a bit.
|
All sources used in Zorn player, in this demo, are pulled directly from the SudoVanilla Ocean. The upload speed on SudoVanilla's internet connection is 10/Mpbs, which is slow for video and audio streaming. So while viewing the demo, expect buffering and some videos to lag a bit.
|
||||||
|
|
||||||
|
|
|
@ -65,6 +65,9 @@ import Info from '@components/Info.astro'
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
body::before {
|
||||||
|
height: 370px !important;
|
||||||
|
}
|
||||||
.video-container {
|
.video-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 40px;
|
margin: 40px;
|
||||||
|
|
Loading…
Reference in a new issue