讓我們深入研究以下範例,您可以在其中了解更多有關HTML屬性的資訊。範例1在以下範例中,我們使用元素和海報屬性。
<"/> 讓我們深入研究以下範例,您可以在其中了解更多有關HTML屬性的資訊。範例1在以下範例中,我們使用元素和海報屬性。 <">在本文中,我們將了解如何設定在以 HTML 格式下載影片時顯示的圖片。
HTML
以下是 HTML
<video poster="URL">
讓我們深入研究以下範例,您可以在其中了解有關 HTML
在以下範例中,我們使用
<!DOCTYPE html> <html> <body> <center> <video width="340" height="220" controls poster="https://www.tutorialspoint.com/static/images/logo-color.png"> <source src="https://samplelib.com/lib/preview/mp4/sample-5s.mp4" type="video/mp4"> </video> </center> </body> </html>
執行上述腳本時,它將產生一個輸出,其中包含上傳的影片以及使用
考慮以下範例,其中我們使用兩個視頻,其中一個帶有
<!DOCTYPE html> <html> <body> <center> <video width="340" height="220" controls poster="https://www.tutorialspoint.com/images/logo.png"> <source src="https://samplelib.com/lib/preview/mp4/sample-5s.mp4"> </video> <video width="320" height="240" controls> <source src="https://samplelib.com/lib/preview/mp4/sample-30s.mp4"> </video> </center> </body> </html>
當腳本執行時,它會產生一個由上傳到網頁的兩個影片組成的輸出,其中一個添加了 HTML
以上是在HTML中,我們如何設定在影片下載時顯示影像?的詳細內容。更多資訊請關注PHP中文網其他相關文章!