forked from nuxt/nuxt.com
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main'
# Conflicts: # composables/useNavigation.ts # content/0.index.yml # pages/index.vue
- Loading branch information
Showing
27 changed files
with
3,913 additions
and
3,582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<script setup lang="ts"> | ||
const isLoaded = ref(false) | ||
const isPlaying = ref(false) | ||
const video = ref() | ||
function play() { | ||
video.value.player.playVideo() | ||
} | ||
function stateChange(event) { | ||
isPlaying.value = event.data === 1 | ||
} | ||
</script> | ||
|
||
<template> | ||
<div class="not-prose"> | ||
<div class="flex items-center justify-center p-5"> | ||
<ScriptYouTubePlayer | ||
ref="video" | ||
above-the-fold | ||
video-id="d_IFKP1Ofq0" | ||
class="group" | ||
@ready="isLoaded = true" | ||
@state-change="stateChange" | ||
> | ||
<template #awaitingLoad> | ||
<div class="absolute left-1/2 top-1/2 transform -translate-x-1/2 -translate-y-1/2 h-[48px] w-[68px]"> | ||
<svg height="100%" version="1.1" viewBox="0 0 68 48" width="100%"><path d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z" fill="#f00" /><path d="M 45,24 27,14 27,34" fill="#fff" /></svg> | ||
</div> | ||
</template> | ||
</ScriptYouTubePlayer> | ||
</div> | ||
<div class="text-center"> | ||
<UAlert | ||
v-if="!isLoaded" | ||
class="mb-5" | ||
size="sm" | ||
color="blue" | ||
variant="soft" | ||
title="Click to load" | ||
description="Clicking the video will load the YouTube iframe and start the video." | ||
/> | ||
<UButton v-if="isLoaded && !isPlaying" @click="play"> | ||
Play Video | ||
</UButton> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
0c8ab82
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
nuxt-com – ./
nuxt-com-git-main-nuxt-ru.vercel.app
nuxt-com-nuxt-ru.vercel.app