📅  最后修改于: 2023-12-03 14:48:41.485000             🧑  作者: Mango
In YouTube videos, it's common to see an animation or image play before the main content starts, and to see a call-to-action at the end of the video. In HTML, we can use the <iframe>
and <a>
tags to achieve this.
We can embed a YouTube video in an HTML page by using the <iframe>
tag. First, we need to obtain the embedded video code from YouTube by clicking the Share button, then the Embed button, and copying the code provided.
Here's an example HTML code to embed a YouTube video with an opening animation:
<iframe width="560" height="315" src="https://www.youtube.com/embed/VIDEO_ID?autoplay=1&start=10" frameborder="0" allowfullscreen></iframe>
In this code, we set the width and height of the video player, set the video ID and enable autoplay, and set a start time for the video to begin playing from 10 seconds. We can also add an image or animation before the <iframe>
tag to show before the video starts playing.
To add a call-to-action or ending animation to our YouTube video, we can use the <a>
tag to link to a webpage, another video, or a social media account.
Here's an example HTML code to include an ending animation and call-to-action:
<iframe width="560" height="315" src="https://www.youtube.com/embed/VIDEO_ID" frameborder="0" allowfullscreen></iframe>
<div id="end-screen">
<img src="ending-animation.gif" alt="Thanks for watching!">
<a href="https://example.com">Visit our website</a>
</div>
In this code, we include an <iframe>
tag to display the video, and add a <div>
element with an ending animation and link to our website using an <a>
tag. We can style the <div>
element with CSS to make it look more attractive.
By using the <iframe>
tag to embed the YouTube video, and the <a>
tag to link to an ending animation or call-to-action, we can create engaging and interactive YouTube videos with HTML.