mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-22 11:15:14 +00:00
phancy non-shift bottom nav animation
This commit is contained in:
parent
1f4cda1933
commit
63ac26a320
1 changed files with 47 additions and 8 deletions
|
@ -6,15 +6,20 @@
|
||||||
<v-divider v-if="!$store.state.tweaks.roundTweak" />
|
<v-divider v-if="!$store.state.tweaks.roundTweak" />
|
||||||
<v-bottom-navigation
|
<v-bottom-navigation
|
||||||
v-model="tabSelection"
|
v-model="tabSelection"
|
||||||
style="padding: 0 !important; box-shadow: none !important"
|
style="
|
||||||
class="transparent"
|
box-shadow: none !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
position: relative;
|
||||||
|
"
|
||||||
|
class="transparent nav"
|
||||||
:shift="$store.state.tweaks.navigationShift"
|
:shift="$store.state.tweaks.navigationShift"
|
||||||
>
|
>
|
||||||
<v-btn
|
<v-btn
|
||||||
v-for="(item, i) in tabs"
|
v-for="(item, i) in tabs"
|
||||||
:key="i"
|
:key="i"
|
||||||
v-ripple="false"
|
v-ripple="false"
|
||||||
class="navButton"
|
active-class="link-active"
|
||||||
|
class="navButton link"
|
||||||
:to="item.link"
|
:to="item.link"
|
||||||
plain
|
plain
|
||||||
>
|
>
|
||||||
|
@ -31,7 +36,7 @@
|
||||||
: 'var(--v-background-darken4)',
|
: 'var(--v-background-darken4)',
|
||||||
}"
|
}"
|
||||||
:class="
|
:class="
|
||||||
tabSelection == i
|
tabSelection == i && $store.state.tweaks.navigationShift
|
||||||
? $vuetify.theme.dark
|
? $vuetify.theme.dark
|
||||||
? 'tab primary darken-4'
|
? 'tab primary darken-4'
|
||||||
: 'tab primary lighten-4'
|
: 'tab primary lighten-4'
|
||||||
|
@ -53,7 +58,7 @@
|
||||||
v-if="$store.state.tweaks.navigationIcons === 2"
|
v-if="$store.state.tweaks.navigationIcons === 2"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 21 21"
|
||||||
height="1.5rem"
|
height="1.5rem"
|
||||||
width="1.5rem"
|
width="1.5rem"
|
||||||
class="mt-1"
|
class="mt-1"
|
||||||
|
@ -64,7 +69,7 @@
|
||||||
v-if="$store.state.tweaks.navigationIcons === 3"
|
v-if="$store.state.tweaks.navigationIcons === 3"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
viewBox="0 0 32 32"
|
viewBox="0 0 33 33"
|
||||||
height="1.5rem"
|
height="1.5rem"
|
||||||
width="1.5rem"
|
width="1.5rem"
|
||||||
class="mt-1"
|
class="mt-1"
|
||||||
|
@ -74,6 +79,7 @@
|
||||||
</div>
|
</div>
|
||||||
<v-icon
|
<v-icon
|
||||||
v-if="$store.state.tweaks.navigationIcons === 0"
|
v-if="$store.state.tweaks.navigationIcons === 0"
|
||||||
|
class="my-1"
|
||||||
:color="
|
:color="
|
||||||
tabSelection == i
|
tabSelection == i
|
||||||
? 'primary'
|
? 'primary'
|
||||||
|
@ -82,7 +88,7 @@
|
||||||
: 'background darken-4'
|
: 'background darken-4'
|
||||||
"
|
"
|
||||||
:class="
|
:class="
|
||||||
tabSelection == i
|
tabSelection == i && $store.state.tweaks.navigationShift
|
||||||
? $vuetify.theme.dark
|
? $vuetify.theme.dark
|
||||||
? 'tab primary darken-4'
|
? 'tab primary darken-4'
|
||||||
: 'tab primary lighten-4'
|
: 'tab primary lighten-4'
|
||||||
|
@ -92,6 +98,13 @@
|
||||||
/>
|
/>
|
||||||
<!-- + (tabSelection == i ? '' : '-outline') -->
|
<!-- + (tabSelection == i ? '' : '-outline') -->
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
<div
|
||||||
|
v-if="!$store.state.tweaks.navigationShift"
|
||||||
|
:style="{
|
||||||
|
top: $store.state.tweaks.navigationText ? '0.35rem' : '0.75rem',
|
||||||
|
}"
|
||||||
|
class="link-anime"
|
||||||
|
></div>
|
||||||
<!-- <v-btn
|
<!-- <v-btn
|
||||||
text
|
text
|
||||||
class="navButton mr-2 fill-height"
|
class="navButton mr-2 fill-height"
|
||||||
|
@ -151,15 +164,41 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.link-anime {
|
||||||
|
right: 0;
|
||||||
|
height: 2rem;
|
||||||
|
width: 3.25rem;
|
||||||
|
position: absolute;
|
||||||
|
transition: transform 0.15s ease-in-out, scale 0.1s ease;
|
||||||
|
background-color: var(--v-primary-base);
|
||||||
|
padding: 0.1em 0.5em 0.1em 0.5em;
|
||||||
|
border-radius: 2rem;
|
||||||
|
opacity: 0.25;
|
||||||
|
z-index: -1;
|
||||||
|
scale: 0;
|
||||||
|
}
|
||||||
|
/* TODO: calculate inside <template></template> based on tabs.length */
|
||||||
|
.nav .link:first-child.link-active ~ .link-anime {
|
||||||
|
transform: translateX(calc(-75vw + 50%));
|
||||||
|
scale: 1;
|
||||||
|
}
|
||||||
|
.nav .link:nth-child(2).link-active ~ .link-anime {
|
||||||
|
transform: translateX(calc(-50vw + 50%));
|
||||||
|
scale: 1;
|
||||||
|
}
|
||||||
|
.nav .link:nth-child(3).link-active ~ .link-anime {
|
||||||
|
transform: translateX(calc(-25vw + 50%));
|
||||||
|
scale: 1;
|
||||||
|
}
|
||||||
.bottomNav {
|
.bottomNav {
|
||||||
/* box-shadow: inset 0 0 10rem var(--v-background-base) !important; */
|
/* box-shadow: inset 0 0 10rem var(--v-background-base) !important; */
|
||||||
height: calc(4rem + env(safe-area-inset-bottom)) !important;
|
height: calc(4rem + env(safe-area-inset-bottom)) !important;
|
||||||
padding-bottom: env(safe-area-inset-bottom) !important;
|
padding-bottom: env(safe-area-inset-bottom) !important;
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
z-index: 100;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 100;
|
|
||||||
}
|
}
|
||||||
.navButton {
|
.navButton {
|
||||||
width: 25vw !important;
|
width: 25vw !important;
|
||||||
|
|
Loading…
Reference in a new issue